linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] cpufreq: Specify the default governor on command line
@ 2020-06-15 16:55 Quentin Perret
  2020-06-15 16:55 ` [PATCH 1/2] cpufreq: Register governors at core_initcall Quentin Perret
  2020-06-15 16:55 ` [PATCH 2/2] cpufreq: Specify default governor on command line Quentin Perret
  0 siblings, 2 replies; 14+ messages in thread
From: Quentin Perret @ 2020-06-15 16:55 UTC (permalink / raw)
  To: rjw, rafael, viresh.kumar
  Cc: arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, qperret, tkjos, adharmap

This series enables users of prebuilt kernels (e.g. distro kernels) to
specify their CPUfreq governor of choice using the kernel command line,
instead of having to wait for the system to fully boot to userspace to
switch using the sysfs interface. This is helpful for 2 reasons:
  1. users get to choose the governor that runs during the actual boot;
  2. it simplifies the userspace boot procedure a bit (one less thing to
     worry about).

To enable this, the first patch moves all governor init calls to
core_initcall, to make sure they are registered by the time the drivers
probe. This should be relatively low impact as registering a governor
is a simple procedure (it gets added to a llist), and all governors
already load at core_initcall anyway when they're set as the default
in Kconfig. This also allows to clean-up the governors' init/exit code,
and reduces boilerplate.

The second patch introduces the new command line parameter, inspired by
its cpuidle counterpart. More details can be found in the respective
patch headers.

Feedback is very much welcome :-)

Thanks,
Quentin

Quentin Perret (2):
  cpufreq: Register governors at core_initcall
  cpufreq: Specify default governor on command line

 .../admin-guide/kernel-parameters.txt         |  5 +++
 Documentation/admin-guide/pm/cpufreq.rst      |  6 ++--
 .../platforms/cell/cpufreq_spudemand.c        | 26 ++------------
 drivers/cpufreq/cpufreq.c                     | 34 ++++++++++++++++---
 drivers/cpufreq/cpufreq_conservative.c        | 22 +++---------
 drivers/cpufreq/cpufreq_ondemand.c            | 24 ++++---------
 drivers/cpufreq/cpufreq_performance.c         | 14 ++------
 drivers/cpufreq/cpufreq_powersave.c           | 18 ++--------
 drivers/cpufreq/cpufreq_userspace.c           | 18 ++--------
 include/linux/cpufreq.h                       | 14 ++++++++
 kernel/sched/cpufreq_schedutil.c              |  6 +---
 11 files changed, 73 insertions(+), 114 deletions(-)

-- 
2.27.0.290.gba653c62da-goog


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

* [PATCH 1/2] cpufreq: Register governors at core_initcall
  2020-06-15 16:55 [PATCH 0/2] cpufreq: Specify the default governor on command line Quentin Perret
@ 2020-06-15 16:55 ` Quentin Perret
  2020-06-16  4:28   ` Viresh Kumar
  2020-06-15 16:55 ` [PATCH 2/2] cpufreq: Specify default governor on command line Quentin Perret
  1 sibling, 1 reply; 14+ messages in thread
From: Quentin Perret @ 2020-06-15 16:55 UTC (permalink / raw)
  To: rjw, rafael, viresh.kumar
  Cc: arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, qperret, tkjos, adharmap

Currently, most CPUFreq governors are registered at core_initcall time
when used as default, and module_init otherwise. In preparation for
letting users specify the default governor on the kernel command line,
change all of them to use core_initcall unconditionally, as is already
the case for schedutil and performance. This will enable us to assume
builtin governors have been registered before the builtin CPUFreq
drivers probe.

And since all governors now have similar init/exit patterns, introduce
two new macros cpufreq_governor_{init,exit}() to factorize the code.

Signed-off-by: Quentin Perret <qperret@google.com>
---
Note: I couldn't boot-test the change to spudemand, by lack of hardware.
But I can confirm cell_defconfig compiles just fine.
---
 .../platforms/cell/cpufreq_spudemand.c        | 26 ++-----------------
 drivers/cpufreq/cpufreq_conservative.c        | 22 ++++------------
 drivers/cpufreq/cpufreq_ondemand.c            | 24 +++++------------
 drivers/cpufreq/cpufreq_performance.c         | 14 ++--------
 drivers/cpufreq/cpufreq_powersave.c           | 18 +++----------
 drivers/cpufreq/cpufreq_userspace.c           | 18 +++----------
 include/linux/cpufreq.h                       | 14 ++++++++++
 kernel/sched/cpufreq_schedutil.c              |  6 +----
 8 files changed, 36 insertions(+), 106 deletions(-)

diff --git a/arch/powerpc/platforms/cell/cpufreq_spudemand.c b/arch/powerpc/platforms/cell/cpufreq_spudemand.c
index 55b31eadb3c8..ca7849e113d7 100644
--- a/arch/powerpc/platforms/cell/cpufreq_spudemand.c
+++ b/arch/powerpc/platforms/cell/cpufreq_spudemand.c
@@ -126,30 +126,8 @@ static struct cpufreq_governor spu_governor = {
 	.stop = spu_gov_stop,
 	.owner = THIS_MODULE,
 };
-
-/*
- * module init and destoy
- */
-
-static int __init spu_gov_init(void)
-{
-	int ret;
-
-	ret = cpufreq_register_governor(&spu_governor);
-	if (ret)
-		printk(KERN_ERR "registration of governor failed\n");
-	return ret;
-}
-
-static void __exit spu_gov_exit(void)
-{
-	cpufreq_unregister_governor(&spu_governor);
-}
-
-
-module_init(spu_gov_init);
-module_exit(spu_gov_exit);
+cpufreq_governor_init(spu_governor);
+cpufreq_governor_exit(spu_governor);
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Christian Krafft <krafft@de.ibm.com>");
-
diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c
index 737ff3b9c2c0..aa39ff31ec9f 100644
--- a/drivers/cpufreq/cpufreq_conservative.c
+++ b/drivers/cpufreq/cpufreq_conservative.c
@@ -322,17 +322,7 @@ static struct dbs_governor cs_governor = {
 	.start = cs_start,
 };
 
-#define CPU_FREQ_GOV_CONSERVATIVE	(&cs_governor.gov)
-
-static int __init cpufreq_gov_dbs_init(void)
-{
-	return cpufreq_register_governor(CPU_FREQ_GOV_CONSERVATIVE);
-}
-
-static void __exit cpufreq_gov_dbs_exit(void)
-{
-	cpufreq_unregister_governor(CPU_FREQ_GOV_CONSERVATIVE);
-}
+#define CPU_FREQ_GOV_CONSERVATIVE	(cs_governor.gov)
 
 MODULE_AUTHOR("Alexander Clouter <alex@digriz.org.uk>");
 MODULE_DESCRIPTION("'cpufreq_conservative' - A dynamic cpufreq governor for "
@@ -343,11 +333,9 @@ MODULE_LICENSE("GPL");
 #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE
 struct cpufreq_governor *cpufreq_default_governor(void)
 {
-	return CPU_FREQ_GOV_CONSERVATIVE;
+	return &CPU_FREQ_GOV_CONSERVATIVE;
 }
-
-core_initcall(cpufreq_gov_dbs_init);
-#else
-module_init(cpufreq_gov_dbs_init);
 #endif
-module_exit(cpufreq_gov_dbs_exit);
+
+cpufreq_governor_init(CPU_FREQ_GOV_CONSERVATIVE);
+cpufreq_governor_exit(CPU_FREQ_GOV_CONSERVATIVE);
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c
index 82a4d37ddecb..ac361a8b1d3b 100644
--- a/drivers/cpufreq/cpufreq_ondemand.c
+++ b/drivers/cpufreq/cpufreq_ondemand.c
@@ -408,7 +408,7 @@ static struct dbs_governor od_dbs_gov = {
 	.start = od_start,
 };
 
-#define CPU_FREQ_GOV_ONDEMAND	(&od_dbs_gov.gov)
+#define CPU_FREQ_GOV_ONDEMAND	(od_dbs_gov.gov)
 
 static void od_set_powersave_bias(unsigned int powersave_bias)
 {
@@ -429,7 +429,7 @@ static void od_set_powersave_bias(unsigned int powersave_bias)
 			continue;
 
 		policy = cpufreq_cpu_get_raw(cpu);
-		if (!policy || policy->governor != CPU_FREQ_GOV_ONDEMAND)
+		if (!policy || policy->governor != &CPU_FREQ_GOV_ONDEMAND)
 			continue;
 
 		policy_dbs = policy->governor_data;
@@ -461,16 +461,6 @@ void od_unregister_powersave_bias_handler(void)
 }
 EXPORT_SYMBOL_GPL(od_unregister_powersave_bias_handler);
 
-static int __init cpufreq_gov_dbs_init(void)
-{
-	return cpufreq_register_governor(CPU_FREQ_GOV_ONDEMAND);
-}
-
-static void __exit cpufreq_gov_dbs_exit(void)
-{
-	cpufreq_unregister_governor(CPU_FREQ_GOV_ONDEMAND);
-}
-
 MODULE_AUTHOR("Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>");
 MODULE_AUTHOR("Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>");
 MODULE_DESCRIPTION("'cpufreq_ondemand' - A dynamic cpufreq governor for "
@@ -480,11 +470,9 @@ MODULE_LICENSE("GPL");
 #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND
 struct cpufreq_governor *cpufreq_default_governor(void)
 {
-	return CPU_FREQ_GOV_ONDEMAND;
+	return &CPU_FREQ_GOV_ONDEMAND;
 }
-
-core_initcall(cpufreq_gov_dbs_init);
-#else
-module_init(cpufreq_gov_dbs_init);
 #endif
-module_exit(cpufreq_gov_dbs_exit);
+
+cpufreq_governor_init(CPU_FREQ_GOV_ONDEMAND);
+cpufreq_governor_exit(CPU_FREQ_GOV_ONDEMAND);
diff --git a/drivers/cpufreq/cpufreq_performance.c b/drivers/cpufreq/cpufreq_performance.c
index def9afe0f5b8..71c1d9aba772 100644
--- a/drivers/cpufreq/cpufreq_performance.c
+++ b/drivers/cpufreq/cpufreq_performance.c
@@ -23,16 +23,6 @@ static struct cpufreq_governor cpufreq_gov_performance = {
 	.limits		= cpufreq_gov_performance_limits,
 };
 
-static int __init cpufreq_gov_performance_init(void)
-{
-	return cpufreq_register_governor(&cpufreq_gov_performance);
-}
-
-static void __exit cpufreq_gov_performance_exit(void)
-{
-	cpufreq_unregister_governor(&cpufreq_gov_performance);
-}
-
 #ifdef CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE
 struct cpufreq_governor *cpufreq_default_governor(void)
 {
@@ -50,5 +40,5 @@ MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>");
 MODULE_DESCRIPTION("CPUfreq policy governor 'performance'");
 MODULE_LICENSE("GPL");
 
-core_initcall(cpufreq_gov_performance_init);
-module_exit(cpufreq_gov_performance_exit);
+cpufreq_governor_init(cpufreq_gov_performance);
+cpufreq_governor_exit(cpufreq_gov_performance);
diff --git a/drivers/cpufreq/cpufreq_powersave.c b/drivers/cpufreq/cpufreq_powersave.c
index 1ae66019eb83..7749522355b5 100644
--- a/drivers/cpufreq/cpufreq_powersave.c
+++ b/drivers/cpufreq/cpufreq_powersave.c
@@ -23,16 +23,6 @@ static struct cpufreq_governor cpufreq_gov_powersave = {
 	.owner		= THIS_MODULE,
 };
 
-static int __init cpufreq_gov_powersave_init(void)
-{
-	return cpufreq_register_governor(&cpufreq_gov_powersave);
-}
-
-static void __exit cpufreq_gov_powersave_exit(void)
-{
-	cpufreq_unregister_governor(&cpufreq_gov_powersave);
-}
-
 MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>");
 MODULE_DESCRIPTION("CPUfreq policy governor 'powersave'");
 MODULE_LICENSE("GPL");
@@ -42,9 +32,7 @@ struct cpufreq_governor *cpufreq_default_governor(void)
 {
 	return &cpufreq_gov_powersave;
 }
-
-core_initcall(cpufreq_gov_powersave_init);
-#else
-module_init(cpufreq_gov_powersave_init);
 #endif
-module_exit(cpufreq_gov_powersave_exit);
+
+cpufreq_governor_init(cpufreq_gov_powersave);
+cpufreq_governor_exit(cpufreq_gov_powersave);
diff --git a/drivers/cpufreq/cpufreq_userspace.c b/drivers/cpufreq/cpufreq_userspace.c
index b43e7cd502c5..50a4d7846580 100644
--- a/drivers/cpufreq/cpufreq_userspace.c
+++ b/drivers/cpufreq/cpufreq_userspace.c
@@ -126,16 +126,6 @@ static struct cpufreq_governor cpufreq_gov_userspace = {
 	.owner		= THIS_MODULE,
 };
 
-static int __init cpufreq_gov_userspace_init(void)
-{
-	return cpufreq_register_governor(&cpufreq_gov_userspace);
-}
-
-static void __exit cpufreq_gov_userspace_exit(void)
-{
-	cpufreq_unregister_governor(&cpufreq_gov_userspace);
-}
-
 MODULE_AUTHOR("Dominik Brodowski <linux@brodo.de>, "
 		"Russell King <rmk@arm.linux.org.uk>");
 MODULE_DESCRIPTION("CPUfreq policy governor 'userspace'");
@@ -146,9 +136,7 @@ struct cpufreq_governor *cpufreq_default_governor(void)
 {
 	return &cpufreq_gov_userspace;
 }
-
-core_initcall(cpufreq_gov_userspace_init);
-#else
-module_init(cpufreq_gov_userspace_init);
 #endif
-module_exit(cpufreq_gov_userspace_exit);
+
+cpufreq_governor_init(cpufreq_gov_userspace);
+cpufreq_governor_exit(cpufreq_gov_userspace);
diff --git a/include/linux/cpufreq.h b/include/linux/cpufreq.h
index 3494f6763597..e62b022cb07e 100644
--- a/include/linux/cpufreq.h
+++ b/include/linux/cpufreq.h
@@ -577,6 +577,20 @@ unsigned int cpufreq_policy_transition_delay_us(struct cpufreq_policy *policy);
 int cpufreq_register_governor(struct cpufreq_governor *governor);
 void cpufreq_unregister_governor(struct cpufreq_governor *governor);
 
+#define cpufreq_governor_init(__governor)			\
+static int __init __governor##_init(void)			\
+{								\
+	return cpufreq_register_governor(&__governor);	\
+}								\
+core_initcall(__governor##_init)
+
+#define cpufreq_governor_exit(__governor)			\
+static void __exit __governor##_exit(void)			\
+{								\
+	return cpufreq_unregister_governor(&__governor);	\
+}								\
+module_exit(__governor##_exit)
+
 struct cpufreq_governor *cpufreq_default_governor(void);
 struct cpufreq_governor *cpufreq_fallback_governor(void);
 
diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
index 7fbaee24c824..402a09af9f43 100644
--- a/kernel/sched/cpufreq_schedutil.c
+++ b/kernel/sched/cpufreq_schedutil.c
@@ -909,11 +909,7 @@ struct cpufreq_governor *cpufreq_default_governor(void)
 }
 #endif
 
-static int __init sugov_register(void)
-{
-	return cpufreq_register_governor(&schedutil_gov);
-}
-core_initcall(sugov_register);
+cpufreq_governor_init(schedutil_gov);
 
 #ifdef CONFIG_ENERGY_MODEL
 extern bool sched_energy_update;
-- 
2.27.0.290.gba653c62da-goog


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

* [PATCH 2/2] cpufreq: Specify default governor on command line
  2020-06-15 16:55 [PATCH 0/2] cpufreq: Specify the default governor on command line Quentin Perret
  2020-06-15 16:55 ` [PATCH 1/2] cpufreq: Register governors at core_initcall Quentin Perret
@ 2020-06-15 16:55 ` Quentin Perret
  2020-06-15 17:41   ` Quentin Perret
                     ` (2 more replies)
  1 sibling, 3 replies; 14+ messages in thread
From: Quentin Perret @ 2020-06-15 16:55 UTC (permalink / raw)
  To: rjw, rafael, viresh.kumar
  Cc: arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, qperret, tkjos, adharmap

Currently, the only way to specify the default CPUfreq governor is via
Kconfig options, which suits users who can build the kernel themselves
perfectly.

However, for those who use a distro-like kernel (such as Android, with
the Generic Kernel Image project), the only way to use a different
default is to boot to userspace, and to then switch using the sysfs
interface. Being able to specify the default governor on the command
line, like is the case for cpuidle, would enable those users to specify
their governor of choice earlier on, and to simplify slighlty the
userspace boot procedure.

To support this use-case, add a kernel command line parameter enabling
to specify a default governor for CPUfreq, which takes precedence over
the builtin default.

This implementation has one notable limitation: the default governor
must be registered before the driver. This is solved for builtin
governors and drivers using appropriate *_initcall() functions. And in
the modular case, this must be reflected as a constraint on the module
loading order.

Signed-off-by: Quentin Perret <qperret@google.com>
---
 .../admin-guide/kernel-parameters.txt         |  5 +++
 Documentation/admin-guide/pm/cpufreq.rst      |  6 ++--
 drivers/cpufreq/cpufreq.c                     | 34 ++++++++++++++++---
 3 files changed, 37 insertions(+), 8 deletions(-)

diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt
index fb95fad81c79..5fd3c9f187eb 100644
--- a/Documentation/admin-guide/kernel-parameters.txt
+++ b/Documentation/admin-guide/kernel-parameters.txt
@@ -703,6 +703,11 @@
 	cpufreq.off=1	[CPU_FREQ]
 			disable the cpufreq sub-system
 
+	cpufreq.default_governor=
+			[CPU_FREQ] Name of the default cpufreq governor to use.
+			This governor must be registered in the kernel before
+			the cpufreq driver probes.
+
 	cpu_init_udelay=N
 			[X86] Delay for N microsec between assert and de-assert
 			of APIC INIT to start processors.  This delay occurs
diff --git a/Documentation/admin-guide/pm/cpufreq.rst b/Documentation/admin-guide/pm/cpufreq.rst
index 0c74a7784964..368e612145d2 100644
--- a/Documentation/admin-guide/pm/cpufreq.rst
+++ b/Documentation/admin-guide/pm/cpufreq.rst
@@ -147,9 +147,9 @@ CPUs in it.
 
 The next major initialization step for a new policy object is to attach a
 scaling governor to it (to begin with, that is the default scaling governor
-determined by the kernel configuration, but it may be changed later
-via ``sysfs``).  First, a pointer to the new policy object is passed to the
-governor's ``->init()`` callback which is expected to initialize all of the
+determined by the kernel command line or configuration, but it may be changed
+later via ``sysfs``).  First, a pointer to the new policy object is passed to
+the governor's ``->init()`` callback which is expected to initialize all of the
 data structures necessary to handle the given policy and, possibly, to add
 a governor ``sysfs`` interface to it.  Next, the governor is started by
 invoking its ``->start()`` callback.
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
index 0128de3603df..0f05caedc320 100644
--- a/drivers/cpufreq/cpufreq.c
+++ b/drivers/cpufreq/cpufreq.c
@@ -50,6 +50,9 @@ static LIST_HEAD(cpufreq_governor_list);
 #define for_each_governor(__governor)				\
 	list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)
 
+static char cpufreq_param_governor[CPUFREQ_NAME_LEN];
+static struct cpufreq_governor *default_governor;
+
 /**
  * The "cpufreq driver" - the arch- or hardware-dependent low
  * level driver of CPUFreq support, and its spinlock. This lock
@@ -1055,7 +1058,6 @@ __weak struct cpufreq_governor *cpufreq_default_governor(void)
 
 static int cpufreq_init_policy(struct cpufreq_policy *policy)
 {
-	struct cpufreq_governor *def_gov = cpufreq_default_governor();
 	struct cpufreq_governor *gov = NULL;
 	unsigned int pol = CPUFREQ_POLICY_UNKNOWN;
 
@@ -1065,8 +1067,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)
 		if (gov) {
 			pr_debug("Restoring governor %s for cpu %d\n",
 				 policy->governor->name, policy->cpu);
-		} else if (def_gov) {
-			gov = def_gov;
+		} else if (default_governor) {
+			gov = default_governor;
 		} else {
 			return -ENODATA;
 		}
@@ -1074,8 +1076,8 @@ static int cpufreq_init_policy(struct cpufreq_policy *policy)
 		/* Use the default policy if there is no last_policy. */
 		if (policy->last_policy) {
 			pol = policy->last_policy;
-		} else if (def_gov) {
-			pol = cpufreq_parse_policy(def_gov->name);
+		} else if (default_governor) {
+			pol = cpufreq_parse_policy(default_governor->name);
 			/*
 			 * In case the default governor is neiter "performance"
 			 * nor "powersave", fall back to the initial policy
@@ -2196,6 +2198,24 @@ __weak struct cpufreq_governor *cpufreq_fallback_governor(void)
 	return NULL;
 }
 
+static void cpufreq_get_default_governor(void)
+{
+	default_governor = cpufreq_parse_governor(cpufreq_param_governor);
+	if (!default_governor) {
+		if (*cpufreq_param_governor)
+			pr_warn("Failed to find %s\n", cpufreq_param_governor);
+		default_governor = cpufreq_default_governor();
+	}
+}
+
+static void cpufreq_put_default_governor(void)
+{
+	if (!default_governor)
+		return;
+	module_put(default_governor->owner);
+	default_governor = NULL;
+}
+
 static int cpufreq_init_governor(struct cpufreq_policy *policy)
 {
 	int ret;
@@ -2701,6 +2721,8 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data)
 
 	if (driver_data->setpolicy)
 		driver_data->flags |= CPUFREQ_CONST_LOOPS;
+	else
+		cpufreq_get_default_governor();
 
 	if (cpufreq_boost_supported()) {
 		ret = create_boost_sysfs_file();
@@ -2769,6 +2791,7 @@ int cpufreq_unregister_driver(struct cpufreq_driver *driver)
 	subsys_interface_unregister(&cpufreq_interface);
 	remove_boost_sysfs_file();
 	cpuhp_remove_state_nocalls_cpuslocked(hp_online);
+	cpufreq_put_default_governor();
 
 	write_lock_irqsave(&cpufreq_driver_lock, flags);
 
@@ -2792,4 +2815,5 @@ static int __init cpufreq_core_init(void)
 	return 0;
 }
 module_param(off, int, 0444);
+module_param_string(default_governor, cpufreq_param_governor, CPUFREQ_NAME_LEN, 0444);
 core_initcall(cpufreq_core_init);
-- 
2.27.0.290.gba653c62da-goog


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

* Re: [PATCH 2/2] cpufreq: Specify default governor on command line
  2020-06-15 16:55 ` [PATCH 2/2] cpufreq: Specify default governor on command line Quentin Perret
@ 2020-06-15 17:41   ` Quentin Perret
  2020-06-16  4:31   ` Viresh Kumar
  2020-06-22  0:54   ` [cpufreq] d83f959b5e: kmsg.cpufreq:cpufreq_online:Failed_to_initialize_policy_for_cpu:#(-#) kernel test robot
  2 siblings, 0 replies; 14+ messages in thread
From: Quentin Perret @ 2020-06-15 17:41 UTC (permalink / raw)
  To: rjw, rafael, viresh.kumar
  Cc: arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, tkjos, adharmap

On Monday 15 Jun 2020 at 17:55:54 (+0100), Quentin Perret wrote:
>  static int cpufreq_init_governor(struct cpufreq_policy *policy)
>  {
>  	int ret;
> @@ -2701,6 +2721,8 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data)
>  
>  	if (driver_data->setpolicy)
>  		driver_data->flags |= CPUFREQ_CONST_LOOPS;
> +	else
> +		cpufreq_get_default_governor();

Looking at this again, it appears that the comment above
cpufreq_parse_governor() confused me a bit -- this needs doing
unconditionally I think.

I'll fix it in v2.

Thanks,
Quentin

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

* Re: [PATCH 1/2] cpufreq: Register governors at core_initcall
  2020-06-15 16:55 ` [PATCH 1/2] cpufreq: Register governors at core_initcall Quentin Perret
@ 2020-06-16  4:28   ` Viresh Kumar
  2020-06-16  8:31     ` Quentin Perret
  0 siblings, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2020-06-16  4:28 UTC (permalink / raw)
  To: Quentin Perret
  Cc: rjw, rafael, arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, tkjos, adharmap

On 15-06-20, 17:55, Quentin Perret wrote:
> Currently, most CPUFreq governors are registered at core_initcall time
> when used as default, and module_init otherwise. In preparation for
> letting users specify the default governor on the kernel command line,
> change all of them to use core_initcall unconditionally, as is already
> the case for schedutil and performance. This will enable us to assume
> builtin governors have been registered before the builtin CPUFreq
> drivers probe.
> 
> And since all governors now have similar init/exit patterns, introduce
> two new macros cpufreq_governor_{init,exit}() to factorize the code.
> 
> Signed-off-by: Quentin Perret <qperret@google.com>
> ---
> Note: I couldn't boot-test the change to spudemand, by lack of hardware.
> But I can confirm cell_defconfig compiles just fine.
> ---
>  .../platforms/cell/cpufreq_spudemand.c        | 26 ++-----------------
>  drivers/cpufreq/cpufreq_conservative.c        | 22 ++++------------
>  drivers/cpufreq/cpufreq_ondemand.c            | 24 +++++------------
>  drivers/cpufreq/cpufreq_performance.c         | 14 ++--------
>  drivers/cpufreq/cpufreq_powersave.c           | 18 +++----------
>  drivers/cpufreq/cpufreq_userspace.c           | 18 +++----------
>  include/linux/cpufreq.h                       | 14 ++++++++++
>  kernel/sched/cpufreq_schedutil.c              |  6 +----
>  8 files changed, 36 insertions(+), 106 deletions(-)

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

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

* Re: [PATCH 2/2] cpufreq: Specify default governor on command line
  2020-06-15 16:55 ` [PATCH 2/2] cpufreq: Specify default governor on command line Quentin Perret
  2020-06-15 17:41   ` Quentin Perret
@ 2020-06-16  4:31   ` Viresh Kumar
  2020-06-16  8:31     ` Quentin Perret
  2020-06-22  0:54   ` [cpufreq] d83f959b5e: kmsg.cpufreq:cpufreq_online:Failed_to_initialize_policy_for_cpu:#(-#) kernel test robot
  2 siblings, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2020-06-16  4:31 UTC (permalink / raw)
  To: Quentin Perret
  Cc: rjw, rafael, arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, tkjos, adharmap

On 15-06-20, 17:55, Quentin Perret wrote:
> +static void cpufreq_get_default_governor(void)
> +{
> +	default_governor = cpufreq_parse_governor(cpufreq_param_governor);
> +	if (!default_governor) {
> +		if (*cpufreq_param_governor)
> +			pr_warn("Failed to find %s\n", cpufreq_param_governor);
> +		default_governor = cpufreq_default_governor();

A module_get() never happened for this case and so maybe a
module_put() should never get called.

> +	}
> +}
> +
> +static void cpufreq_put_default_governor(void)
> +{
> +	if (!default_governor)
> +		return;
> +	module_put(default_governor->owner);
> +	default_governor = NULL;
> +}
> +
>  static int cpufreq_init_governor(struct cpufreq_policy *policy)
>  {
>  	int ret;
> @@ -2701,6 +2721,8 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data)
>  
>  	if (driver_data->setpolicy)
>  		driver_data->flags |= CPUFREQ_CONST_LOOPS;
> +	else
> +		cpufreq_get_default_governor();
>  
>  	if (cpufreq_boost_supported()) {
>  		ret = create_boost_sysfs_file();
> @@ -2769,6 +2791,7 @@ int cpufreq_unregister_driver(struct cpufreq_driver *driver)
>  	subsys_interface_unregister(&cpufreq_interface);
>  	remove_boost_sysfs_file();
>  	cpuhp_remove_state_nocalls_cpuslocked(hp_online);
> +	cpufreq_put_default_governor();
>  
>  	write_lock_irqsave(&cpufreq_driver_lock, flags);
>  
> @@ -2792,4 +2815,5 @@ static int __init cpufreq_core_init(void)
>  	return 0;
>  }

And since this is a per boot thing, there is perhaps no need of doing
these at driver register/unregister, I would rather do it at:
cpufreq_core_init() time itself and so we will never need to run
cpufreq_put_default_governor() and so can be removed.

And another thing I am not able to understand (despite you commenting
about that in the commit log) is what happens if the default governor
chosen is built as a module ?

-- 
viresh

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

* Re: [PATCH 2/2] cpufreq: Specify default governor on command line
  2020-06-16  4:31   ` Viresh Kumar
@ 2020-06-16  8:31     ` Quentin Perret
  2020-06-16  9:27       ` Viresh Kumar
  0 siblings, 1 reply; 14+ messages in thread
From: Quentin Perret @ 2020-06-16  8:31 UTC (permalink / raw)
  To: Viresh Kumar
  Cc: rjw, rafael, arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, tkjos, adharmap

Hey Viresh,

On Tuesday 16 Jun 2020 at 10:01:43 (+0530), Viresh Kumar wrote:
> On 15-06-20, 17:55, Quentin Perret wrote:
> > +static void cpufreq_get_default_governor(void)
> > +{
> > +	default_governor = cpufreq_parse_governor(cpufreq_param_governor);
> > +	if (!default_governor) {
> > +		if (*cpufreq_param_governor)
> > +			pr_warn("Failed to find %s\n", cpufreq_param_governor);
> > +		default_governor = cpufreq_default_governor();
> 
> A module_get() never happened for this case and so maybe a
> module_put() should never get called.

Correct, however cpufreq_default_governor() being a weak function, we're
basically guaranteed the governor we get from there is builtin, so
gov->owner is NULL. That is, module_put() is not actively useful, but it
doesn't harm. So I figured that should be fine. That could definitely
use a comment, though :)

> > +	}
> > +}
> > +
> > +static void cpufreq_put_default_governor(void)
> > +{
> > +	if (!default_governor)
> > +		return;
> > +	module_put(default_governor->owner);
> > +	default_governor = NULL;
> > +}
> > +
> >  static int cpufreq_init_governor(struct cpufreq_policy *policy)
> >  {
> >  	int ret;
> > @@ -2701,6 +2721,8 @@ int cpufreq_register_driver(struct cpufreq_driver *driver_data)
> >  
> >  	if (driver_data->setpolicy)
> >  		driver_data->flags |= CPUFREQ_CONST_LOOPS;
> > +	else
> > +		cpufreq_get_default_governor();
> >  
> >  	if (cpufreq_boost_supported()) {
> >  		ret = create_boost_sysfs_file();
> > @@ -2769,6 +2791,7 @@ int cpufreq_unregister_driver(struct cpufreq_driver *driver)
> >  	subsys_interface_unregister(&cpufreq_interface);
> >  	remove_boost_sysfs_file();
> >  	cpuhp_remove_state_nocalls_cpuslocked(hp_online);
> > +	cpufreq_put_default_governor();
> >  
> >  	write_lock_irqsave(&cpufreq_driver_lock, flags);
> >  
> > @@ -2792,4 +2815,5 @@ static int __init cpufreq_core_init(void)
> >  	return 0;
> >  }
> 
> And since this is a per boot thing, there is perhaps no need of doing
> these at driver register/unregister, I would rather do it at:
> cpufreq_core_init() time itself and so we will never need to run
> cpufreq_put_default_governor() and so can be removed.

Right, so the reason I avoided cpufreq_core_init() was because it is
called at core_initcall() time, which means I can't really assume the
governors have been loaded by that time. By waiting for the driver to
probe before detecting the default gov, we get that nice ordering. But
yes, it feels odd to have it here :/

Thinking about it more, the natural fit for this would rather be the
register/unregister path for governors directly. If that sounds good to
you (?) I'll try to move it there in v2.

> And another thing I am not able to understand (despite you commenting
> about that in the commit log) is what happens if the default governor
> chosen is built as a module ?

So the answer is 'it depends'. If the driver is built as a module too,
then you should load the governor module first, and then the driver
module, and everything will work just fine.

But in the case where the governor is loaded _after_ the driver (either
because we got the module ordering wrong, or because the driver is
builtin), then the policies will be initialized with the builtin
default, and nothing special will happen when the governor module is
loaded.

That behaviour very much is open for discussion, though. A possible
alternative would be to automatically switch all policies to the default
governor upon loading. That would have the nice benefit or removing the
ordering dependency, but that is more involved and I didn't have a
use-case for it, so I went for the simpler option ('the-default
governor-needs-to-be-registered-before-the-policies-are-created').

Thoughts?

Thanks,
Quentin

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

* Re: [PATCH 1/2] cpufreq: Register governors at core_initcall
  2020-06-16  4:28   ` Viresh Kumar
@ 2020-06-16  8:31     ` Quentin Perret
  0 siblings, 0 replies; 14+ messages in thread
From: Quentin Perret @ 2020-06-16  8:31 UTC (permalink / raw)
  To: Viresh Kumar
  Cc: rjw, rafael, arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, tkjos, adharmap

On Tuesday 16 Jun 2020 at 09:58:31 (+0530), Viresh Kumar wrote:
> On 15-06-20, 17:55, Quentin Perret wrote:
> > Currently, most CPUFreq governors are registered at core_initcall time
> > when used as default, and module_init otherwise. In preparation for
> > letting users specify the default governor on the kernel command line,
> > change all of them to use core_initcall unconditionally, as is already
> > the case for schedutil and performance. This will enable us to assume
> > builtin governors have been registered before the builtin CPUFreq
> > drivers probe.
> > 
> > And since all governors now have similar init/exit patterns, introduce
> > two new macros cpufreq_governor_{init,exit}() to factorize the code.
> > 
> > Signed-off-by: Quentin Perret <qperret@google.com>
> > ---
> > Note: I couldn't boot-test the change to spudemand, by lack of hardware.
> > But I can confirm cell_defconfig compiles just fine.
> > ---
> >  .../platforms/cell/cpufreq_spudemand.c        | 26 ++-----------------
> >  drivers/cpufreq/cpufreq_conservative.c        | 22 ++++------------
> >  drivers/cpufreq/cpufreq_ondemand.c            | 24 +++++------------
> >  drivers/cpufreq/cpufreq_performance.c         | 14 ++--------
> >  drivers/cpufreq/cpufreq_powersave.c           | 18 +++----------
> >  drivers/cpufreq/cpufreq_userspace.c           | 18 +++----------
> >  include/linux/cpufreq.h                       | 14 ++++++++++
> >  kernel/sched/cpufreq_schedutil.c              |  6 +----
> >  8 files changed, 36 insertions(+), 106 deletions(-)
> 
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

Thanks!
Quentin

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

* Re: [PATCH 2/2] cpufreq: Specify default governor on command line
  2020-06-16  8:31     ` Quentin Perret
@ 2020-06-16  9:27       ` Viresh Kumar
  2020-06-16  9:48         ` Quentin Perret
  0 siblings, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2020-06-16  9:27 UTC (permalink / raw)
  To: Quentin Perret
  Cc: rjw, rafael, arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, tkjos, adharmap

On 16-06-20, 09:31, Quentin Perret wrote:
> Right, so the reason I avoided cpufreq_core_init() was because it is
> called at core_initcall() time, which means I can't really assume the
> governors have been loaded by that time. By waiting for the driver to
> probe before detecting the default gov, we get that nice ordering. But
> yes, it feels odd to have it here :/
> 
> Thinking about it more, the natural fit for this would rather be the
> register/unregister path for governors directly. If that sounds good to
> you (?) I'll try to move it there in v2.

There is another problem here which we need to look at. Any governor
which is built as a module and isn't currently used, should be allowed
to unload. And this needs to be tested by you as well, should be easy
enough.

With the current implementation, you take a reference to the default
governor when the driver is registered and drop it only when the
driver goes away. Which means we won't be able to unload the module of
the governor even if it isn't used. Which is wrong. The solution I
proposed had the same issue as well.

You need to figure out a way where we don't need to keep holding the
module hostage even when it isn't used. I see two ways at least for
the same:

- Do that from the existing place: cpufreq_init_policy().

- And I think this can be done from governor-register/unregister as
  well.

Second one sounds good, if it is feasible to do that.

-- 
viresh

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

* Re: [PATCH 2/2] cpufreq: Specify default governor on command line
  2020-06-16  9:27       ` Viresh Kumar
@ 2020-06-16  9:48         ` Quentin Perret
  2020-06-16  9:54           ` Viresh Kumar
  0 siblings, 1 reply; 14+ messages in thread
From: Quentin Perret @ 2020-06-16  9:48 UTC (permalink / raw)
  To: Viresh Kumar
  Cc: rjw, rafael, arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, tkjos, adharmap

On Tuesday 16 Jun 2020 at 14:57:59 (+0530), Viresh Kumar wrote:
> There is another problem here which we need to look at. Any governor
> which is built as a module and isn't currently used, should be allowed
> to unload. And this needs to be tested by you as well, should be easy
> enough.
> 
> With the current implementation, you take a reference to the default
> governor when the driver is registered and drop it only when the
> driver goes away. Which means we won't be able to unload the module of
> the governor even if it isn't used. Which is wrong. The solution I
> proposed had the same issue as well.
> 
> You need to figure out a way where we don't need to keep holding the
> module hostage even when it isn't used. I see two ways at least for
> the same:
> 
> - Do that from the existing place: cpufreq_init_policy().
> 
> - And I think this can be done from governor-register/unregister as
>   well.
> 
> Second one sounds good, if it is feasible to do that.

Good point.

I'm thinking something along the lines of:

---8<---
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
index 0f05caedc320..a9219404e07f 100644
--- a/drivers/cpufreq/cpufreq.c
+++ b/drivers/cpufreq/cpufreq.c
@@ -2340,6 +2340,11 @@ int cpufreq_register_governor(struct cpufreq_governor *governor)
 		list_add(&governor->governor_list, &cpufreq_governor_list);
 	}
 
+	if (!strncasecmp(cpufreq_param_governor, governor->name, CPUFREQ_NAME_LEN))
+		default_governor = governor;
+	else if (!default_governor && cpufreq_default_governor() == governor)
+		default_governor = cpufreq_default_governor();
+
 	mutex_unlock(&cpufreq_governor_mutex);
 	return err;
 }
@@ -2368,6 +2373,8 @@ void cpufreq_unregister_governor(struct cpufreq_governor *governor)
 
 	mutex_lock(&cpufreq_governor_mutex);
 	list_del(&governor->governor_list);
+	if (governor == default_governor)
+		default_governor = cpufreq_default_governor();
 	mutex_unlock(&cpufreq_governor_mutex);
 }
 EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
--->8---

should do the trick. That removes the unnecessary reference count, and
feels like a good place to hook things -- that is how cpuidle does it
too IIRC.

I'll double check the locking/synchronization, but that shouldn't be too
bad (famous last words).

Cheers,
Quentin

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

* Re: [PATCH 2/2] cpufreq: Specify default governor on command line
  2020-06-16  9:48         ` Quentin Perret
@ 2020-06-16  9:54           ` Viresh Kumar
  2020-06-16  9:56             ` Quentin Perret
  0 siblings, 1 reply; 14+ messages in thread
From: Viresh Kumar @ 2020-06-16  9:54 UTC (permalink / raw)
  To: Quentin Perret
  Cc: rjw, rafael, arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, tkjos, adharmap

On 16-06-20, 10:48, Quentin Perret wrote:
> ---8<---
> diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> index 0f05caedc320..a9219404e07f 100644
> --- a/drivers/cpufreq/cpufreq.c
> +++ b/drivers/cpufreq/cpufreq.c
> @@ -2340,6 +2340,11 @@ int cpufreq_register_governor(struct cpufreq_governor *governor)
>  		list_add(&governor->governor_list, &cpufreq_governor_list);
>  	}
>  
> +	if (!strncasecmp(cpufreq_param_governor, governor->name, CPUFREQ_NAME_LEN))
> +		default_governor = governor;
> +	else if (!default_governor && cpufreq_default_governor() == governor)
> +		default_governor = cpufreq_default_governor();

Instead of the else part here, maybe just do this from
cpufreq_core_init() only once, and so we will always have
default_governor set.

> +
>  	mutex_unlock(&cpufreq_governor_mutex);
>  	return err;
>  }
> @@ -2368,6 +2373,8 @@ void cpufreq_unregister_governor(struct cpufreq_governor *governor)
>  
>  	mutex_lock(&cpufreq_governor_mutex);
>  	list_del(&governor->governor_list);
> +	if (governor == default_governor)
> +		default_governor = cpufreq_default_governor();
>  	mutex_unlock(&cpufreq_governor_mutex);
>  }
>  EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
> --->8---
> 
> should do the trick. That removes the unnecessary reference count, and
> feels like a good place to hook things -- that is how cpuidle does it
> too IIRC.
> 
> I'll double check the locking/synchronization, but that shouldn't be too
> bad (famous last words).
> 
> Cheers,
> Quentin

-- 
viresh

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

* Re: [PATCH 2/2] cpufreq: Specify default governor on command line
  2020-06-16  9:54           ` Viresh Kumar
@ 2020-06-16  9:56             ` Quentin Perret
  0 siblings, 0 replies; 14+ messages in thread
From: Quentin Perret @ 2020-06-16  9:56 UTC (permalink / raw)
  To: Viresh Kumar
  Cc: rjw, rafael, arnd, mpe, benh, paulus, mingo, peterz, juri.lelli,
	vincent.guittot, linuxppc-dev, linux-kernel, linux-pm,
	kernel-team, tkjos, adharmap

On Tuesday 16 Jun 2020 at 15:24:38 (+0530), Viresh Kumar wrote:
> On 16-06-20, 10:48, Quentin Perret wrote:
> > ---8<---
> > diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> > index 0f05caedc320..a9219404e07f 100644
> > --- a/drivers/cpufreq/cpufreq.c
> > +++ b/drivers/cpufreq/cpufreq.c
> > @@ -2340,6 +2340,11 @@ int cpufreq_register_governor(struct cpufreq_governor *governor)
> >  		list_add(&governor->governor_list, &cpufreq_governor_list);
> >  	}
> >  
> > +	if (!strncasecmp(cpufreq_param_governor, governor->name, CPUFREQ_NAME_LEN))
> > +		default_governor = governor;
> > +	else if (!default_governor && cpufreq_default_governor() == governor)
> > +		default_governor = cpufreq_default_governor();
> 
> Instead of the else part here, maybe just do this from
> cpufreq_core_init() only once, and so we will always have
> default_governor set.

Sounds good.

Thanks!
Quentin

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

* [cpufreq] d83f959b5e: kmsg.cpufreq:cpufreq_online:Failed_to_initialize_policy_for_cpu:#(-#)
  2020-06-15 16:55 ` [PATCH 2/2] cpufreq: Specify default governor on command line Quentin Perret
  2020-06-15 17:41   ` Quentin Perret
  2020-06-16  4:31   ` Viresh Kumar
@ 2020-06-22  0:54   ` kernel test robot
  2020-06-23  9:25     ` Quentin Perret
  2 siblings, 1 reply; 14+ messages in thread
From: kernel test robot @ 2020-06-22  0:54 UTC (permalink / raw)
  To: Quentin Perret
  Cc: rjw, rafael, viresh.kumar, arnd, mpe, benh, paulus, mingo,
	peterz, juri.lelli, vincent.guittot, linuxppc-dev, linux-kernel,
	linux-pm, kernel-team, qperret, tkjos, adharmap, lkp

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

Greeting,

FYI, we noticed the following commit (built with gcc-9):

commit: d83f959b5e7a6378a4afbff23de2a2d064d95749 ("[PATCH 2/2] cpufreq: Specify default governor on command line")
url: https://github.com/0day-ci/linux/commits/Quentin-Perret/cpufreq-Specify-the-default-governor-on-command-line/20200616-005920
base: https://git.kernel.org/cgit/linux/kernel/git/rafael/linux-pm.git linux-next

in testcase: kernel-selftests
with following parameters:

	group: kselftests-x86
	ucode: 0xdc

test-description: The kernel contains a set of "self tests" under the tools/testing/selftests/ directory. These are intended to be small unit tests to exercise individual code paths in the kernel.
test-url: https://www.kernel.org/doc/Documentation/kselftest.txt


on test machine: 8 threads Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz with 16G memory

caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):




If you fix the issue, kindly add following tag
Reported-by: kernel test robot <rong.a.chen@intel.com>



[    8.715369] intel_pstate: Intel P-state driver initializing
[    8.721146] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 0 (-61)
[    8.728900] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 1 (-61)
[    8.736615] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 2 (-61)
[    8.744400] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 3 (-61)
[    8.752222] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 4 (-61)
[    8.760010] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 5 (-61)
[    8.768077] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 6 (-61)
[    8.775891] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 7 (-61)
[    8.783861] hid: raw HID events driver (C) Jiri Kosina
[    8.789211] usbcore: registered new interface driver usbhid
[    8.794908] usbhid: USB HID core driver
[    8.798902] drop_monitor: Initializing network drop monitor service
[    8.805365] Initializing XFRM netlink socket
[    8.809817] NET: Registered protocol family 10
[    8.814586] Segment Routing with IPv6
[    8.818389] NET: Registered protocol family 17
[    8.822969] 9pnet: Installing 9P2000 support
[    8.827367] mpls_gso: MPLS GSO support
[    8.832204] microcode: sig=0x506e3, pf=0x2, revision=0xdc
[    8.837953] microcode: Microcode Update Driver: v2.2.
[    8.837955] IPI shorthand broadcast: enabled
[    8.847612] ... APIC ID:      00000000 (0)
[    8.848610] ... APIC VERSION: 01060015
[    8.848610] 0000000000000000000000000000000000000000000000000000000000000000
[    8.862620] 0000000000000000000000000000000000000000000000000000000000000000
[    8.865617] usb 1-4: new low-speed USB device number 2 using xhci_hcd
[    8.862620] 0000000000000000000000000000000000000000000000000000000000000000
[    8.870017] number of MP IRQ sources: 15.
[    8.870017] number of IO-APIC #2 registers: 120.
[    8.870018] testing the IO APIC.......................
[    8.897877] IO APIC #2......
[    8.900891] .... register #00: 02000000
[    8.904855] .......    : physical APIC id: 02
[    8.909336] .......    : Delivery Type: 0
[    8.913472] .......    : LTS          : 0
[    8.917609] .... register #01: 00770020
[    8.921571] .......     : max redirection entries: 77
[    8.926768] .......     : PRQ implemented: 0
[    8.931161] .......     : IO APIC version: 20
[    8.935641] .... register #02: 00000000
[    8.939603] .......     : arbitration: 00
[    8.943738] .... IRQ redirection table:
[    8.947702] IOAPIC 0:
[    8.950123]  pin00, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.958130]  pin01, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.966138]  pin02, enabled , edge , high, V(02), IRR(0), S(0), remapped, I(0001),  Z(0)
[    8.974404]  pin03, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.982411]  pin04, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.990419]  pin05, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.998425]  pin06, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.006463]  pin07, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)



To reproduce:

        git clone https://github.com/intel/lkp-tests.git
        cd lkp-tests
        bin/lkp install job.yaml  # job file is attached in this email
        bin/lkp run     job.yaml



Thanks,
Rong Chen


[-- Attachment #2: config-5.7.0-01787-gd83f959b5e7a6 --]
[-- Type: text/plain, Size: 203087 bytes --]

#
# Automatically generated file; DO NOT EDIT.
# Linux/x86_64 5.7.0 Kernel Configuration
#

#
# Compiler: gcc-9 (Debian 9.3.0-13) 9.3.0
#
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=90300
CONFIG_LD_VERSION=234000000
CONFIG_CLANG_VERSION=0
CONFIG_CC_CAN_LINK=y
CONFIG_CC_HAS_ASM_GOTO=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_TABLE_SORT=y
CONFIG_THREAD_INFO_IN_TASK=y

#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
# CONFIG_COMPILE_TEST is not set
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
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_KERNEL_GZIP=y
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_CROSS_MEMORY_ATTACH=y
CONFIG_USELIB=y
CONFIG_AUDIT=y
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
CONFIG_AUDITSYSCALL=y

#
# IRQ subsystem
#
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_IRQ_DOMAIN=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_MSI_IRQ=y
CONFIG_GENERIC_MSI_IRQ_DOMAIN=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 is not set
# end of IRQ subsystem

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_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y

#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
# CONFIG_NO_HZ_IDLE is not set
CONFIG_NO_HZ_FULL=y
CONFIG_CONTEXT_TRACKING=y
# CONFIG_CONTEXT_TRACKING_FORCE is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
# end of Timers subsystem

# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_COUNT=y

#
# CPU/Task time and stats accounting
#
CONFIG_VIRT_CPU_ACCOUNTING=y
CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_HAVE_SCHED_AVG_IRQ=y
# CONFIG_SCHED_THERMAL_PRESSURE is 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 is not set
# end of CPU/Task time and stats accounting

CONFIG_CPU_ISOLATION=y

#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_RCU_EXPERT is not set
CONFIG_SRCU=y
CONFIG_TREE_SRCU=y
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
# end of RCU Subsystem

CONFIG_BUILD_BIN2C=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_IKHEADERS is not set
CONFIG_LOG_BUF_SHIFT=20
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y

#
# Scheduler features
#
# CONFIG_UCLAMP_TASK is not set
# end of Scheduler features

CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
CONFIG_CC_HAS_INT128=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_NUMA_BALANCING=y
CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
CONFIG_MEMCG_SWAP_ENABLED=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=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 is not set
# CONFIG_CGROUP_DEBUG is 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=y
# CONFIG_SYSFS_DEPRECATED is 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_BOOT_CONFIG is not set
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_BPF=y
# CONFIG_EXPERT is 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_PRINTK_NMI=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_HAVE_ARCH_USERFAULTFD_WP=y
CONFIG_MEMBARRIER=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
# CONFIG_BPF_LSM is not set
CONFIG_BPF_SYSCALL=y
CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y
CONFIG_BPF_JIT_ALWAYS_ON=y
CONFIG_BPF_JIT_DEFAULT_ON=y
CONFIG_USERFAULTFD=y
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
CONFIG_RSEQ=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y

#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
# end of Kernel Performance Events And Counters

CONFIG_VM_EVENT_COUNTERS=y
CONFIG_SLUB_DEBUG=y
# CONFIG_COMPAT_BRK is not set
# CONFIG_SLAB is not set
CONFIG_SLUB=y
CONFIG_SLAB_MERGE_DEFAULT=y
# CONFIG_SLAB_FREELIST_RANDOM is not set
# CONFIG_SLAB_FREELIST_HARDENED is not set
# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set
CONFIG_SLUB_CPU_PARTIAL=y
CONFIG_SYSTEM_DATA_VERIFICATION=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
# end of General setup

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_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_HAS_FILTER_PGPROT=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=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

#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
CONFIG_X86_FEATURE_NAMES=y
CONFIG_X86_X2APIC=y
CONFIG_X86_MPPARSE=y
# CONFIG_GOLDFISH is not set
CONFIG_RETPOLINE=y
CONFIG_X86_CPU_RESCTRL=y
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_NUMACHIP is not set
# CONFIG_X86_VSMP is not set
CONFIG_X86_UV=y
# CONFIG_X86_GOLDFISH is not set
# CONFIG_X86_INTEL_MID is not set
CONFIG_X86_INTEL_LPSS=y
CONFIG_X86_AMD_PLATFORM_DEVICE=y
CONFIG_IOSF_MBI=y
# CONFIG_IOSF_MBI_DEBUG is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
# CONFIG_SCHED_OMIT_FRAME_POINTER is not set
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
CONFIG_PARAVIRT_XXL=y
# CONFIG_PARAVIRT_DEBUG is not set
CONFIG_PARAVIRT_SPINLOCKS=y
CONFIG_X86_HV_CALLBACK_VECTOR=y
CONFIG_XEN=y
CONFIG_XEN_PV=y
CONFIG_XEN_PV_SMP=y
# CONFIG_XEN_DOM0 is not set
CONFIG_XEN_PVHVM=y
CONFIG_XEN_PVHVM_SMP=y
CONFIG_XEN_512GB=y
CONFIG_XEN_SAVE_RESTORE=y
# CONFIG_XEN_DEBUG_FS is not set
# CONFIG_XEN_PVH is not set
CONFIG_KVM_GUEST=y
CONFIG_ARCH_CPUIDLE_HALTPOLL=y
# CONFIG_PVH is not set
# CONFIG_KVM_DEBUG_FS is not set
CONFIG_PARAVIRT_TIME_ACCOUNTING=y
CONFIG_PARAVIRT_CLOCK=y
# CONFIG_JAILHOUSE_GUEST is not set
# CONFIG_ACRN_GUEST is not set
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is 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_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_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_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_X86_THERMAL_VECTOR=y

#
# Performance monitoring
#
CONFIG_PERF_EVENTS_INTEL_UNCORE=y
CONFIG_PERF_EVENTS_INTEL_RAPL=y
CONFIG_PERF_EVENTS_INTEL_CSTATE=y
# CONFIG_PERF_EVENTS_AMD_POWER is not set
# end of Performance monitoring

CONFIG_X86_16BIT=y
CONFIG_X86_ESPFIX64=y
CONFIG_X86_VSYSCALL_EMULATION=y
CONFIG_X86_IOPL_IOPERM=y
CONFIG_I8K=m
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
CONFIG_X86_5LEVEL=y
CONFIG_X86_DIRECT_GBPAGES=y
# CONFIG_X86_CPA_STATISTICS is not set
CONFIG_AMD_MEM_ENCRYPT=y
# CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT is not set
CONFIG_NUMA=y
CONFIG_AMD_NUMA=y
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NODES_SPAN_OTHER_NODES=y
CONFIG_NUMA_EMU=y
CONFIG_NODES_SHIFT=10
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=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 is not set
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
CONFIG_X86_UMIP=y
CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
CONFIG_X86_INTEL_TSX_MODE_OFF=y
# CONFIG_X86_INTEL_TSX_MODE_ON is not set
# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set
CONFIG_EFI=y
CONFIG_EFI_STUB=y
CONFIG_EFI_MIXED=y
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
CONFIG_KEXEC_FILE=y
CONFIG_ARCH_HAS_KEXEC_PURGATORY=y
# CONFIG_KEXEC_SIG is not set
CONFIG_CRASH_DUMP=y
CONFIG_KEXEC_JUMP=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_HOTPLUG_CPU=y
CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
# CONFIG_COMPAT_VDSO is not set
CONFIG_LEGACY_VSYSCALL_EMULATE=y
# CONFIG_LEGACY_VSYSCALL_XONLY is not set
# CONFIG_LEGACY_VSYSCALL_NONE is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_MODIFY_LDT_SYSCALL=y
CONFIG_HAVE_LIVEPATCH=y
CONFIG_LIVEPATCH=y
# end of Processor type and features

CONFIG_ARCH_HAS_ADD_PAGES=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
CONFIG_ARCH_ENABLE_THP_MIGRATION=y

#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
CONFIG_HIBERNATE_CALLBACKS=y
CONFIG_HIBERNATION=y
CONFIG_HIBERNATION_SNAPSHOT_DEV=y
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM=y
CONFIG_PM_DEBUG=y
CONFIG_PM_ADVANCED_DEBUG=y
# CONFIG_PM_TEST_SUSPEND is not set
CONFIG_PM_SLEEP_DEBUG=y
CONFIG_PM_TRACE=y
CONFIG_PM_TRACE_RTC=y
CONFIG_PM_CLK=y
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
# CONFIG_ENERGY_MODEL is 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_DEBUGGER is not set
CONFIG_ACPI_SPCR_TABLE=y
CONFIG_ACPI_LPIT=y
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_PROCFS_POWER is not set
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
CONFIG_ACPI_EC_DEBUGFS=m
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=y
# CONFIG_ACPI_TAD is not set
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=y
CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
CONFIG_ACPI_TABLE_UPGRADE=y
# CONFIG_ACPI_DEBUG is not set
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=m
CONFIG_ACPI_BGRT=y
CONFIG_ACPI_NFIT=m
# CONFIG_NFIT_SECURITY_DEBUG is not set
CONFIG_ACPI_NUMA=y
# CONFIG_ACPI_HMAT is not set
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=y
# CONFIG_DPTF_POWER is not set
CONFIG_ACPI_WATCHDOG=y
CONFIG_ACPI_EXTLOG=m
CONFIG_ACPI_ADXL=y
# CONFIG_PMIC_OPREGION is not set
# CONFIG_ACPI_CONFIGFS is not set
CONFIG_X86_PM_TIMER=y
CONFIG_SFI=y

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_ATTR_SET=y
CONFIG_CPU_FREQ_GOV_COMMON=y
# CONFIG_CPU_FREQ_STAT is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y

#
# CPU frequency scaling drivers
#
CONFIG_X86_INTEL_PSTATE=y
CONFIG_X86_PCC_CPUFREQ=m
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 is not set
CONFIG_X86_P4_CLOCKMOD=m

#
# shared options
#
CONFIG_X86_SPEEDSTEP_LIB=m
# end of CPU Frequency scaling

#
# CPU Idle
#
CONFIG_CPU_IDLE=y
# CONFIG_CPU_IDLE_GOV_LADDER is not set
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_CPU_IDLE_GOV_TEO is not set
# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set
CONFIG_HALTPOLL_CPUIDLE=y
# end of CPU Idle

CONFIG_INTEL_IDLE=y
# end of Power management and ACPI options

#
# Bus options (PCI etc.)
#
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_XEN=y
CONFIG_MMCONF_FAM10H=y
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
# CONFIG_X86_SYSFB is not set
# end of Bus options (PCI etc.)

#
# Binary Emulations
#
CONFIG_IA32_EMULATION=y
# CONFIG_X86_X32 is not set
CONFIG_COMPAT_32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
# end of Binary Emulations

#
# Firmware Drivers
#
CONFIG_EDD=m
# CONFIG_EDD_OFF is not set
CONFIG_FIRMWARE_MEMMAP=y
CONFIG_DMIID=y
CONFIG_DMI_SYSFS=y
CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
CONFIG_ISCSI_IBFT_FIND=y
CONFIG_ISCSI_IBFT=m
CONFIG_FW_CFG_SYSFS=y
# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
# CONFIG_GOOGLE_FIRMWARE is not set

#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_VARS=y
CONFIG_EFI_ESRT=y
CONFIG_EFI_VARS_PSTORE=y
CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=y
CONFIG_EFI_RUNTIME_MAP=y
# CONFIG_EFI_FAKE_MEMMAP is not set
CONFIG_EFI_RUNTIME_WRAPPERS=y
CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y
# CONFIG_EFI_BOOTLOADER_CONTROL is not set
# CONFIG_EFI_CAPSULE_LOADER is not set
# CONFIG_EFI_TEST is not set
CONFIG_APPLE_PROPERTIES=y
# CONFIG_RESET_ATTACK_MITIGATION is not set
# CONFIG_EFI_RCI2_TABLE is not set
# CONFIG_EFI_DISABLE_PCI_DMA is not set
# end of EFI (Extensible Firmware Interface) Support

CONFIG_UEFI_CPER=y
CONFIG_UEFI_CPER_X86=y
CONFIG_EFI_DEV_PATH_PARSER=y
CONFIG_EFI_EARLYCON=y

#
# Tegra firmware driver
#
# end of Tegra firmware driver
# end of Firmware Drivers

CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_IRQFD=y
CONFIG_HAVE_KVM_IRQ_ROUTING=y
CONFIG_HAVE_KVM_EVENTFD=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_VIRTUALIZATION=y
CONFIG_KVM=m
CONFIG_KVM_INTEL=m
CONFIG_KVM_AMD=m
CONFIG_KVM_AMD_SEV=y
CONFIG_KVM_MMU_AUDIT=y
CONFIG_AS_AVX512=y
CONFIG_AS_SHA1_NI=y
CONFIG_AS_SHA256_NI=y

#
# General architecture-dependent options
#
CONFIG_CRASH_CORE=y
CONFIG_KEXEC_CORE=y
CONFIG_HOTPLUG_SMT=y
CONFIG_OPROFILE=m
CONFIG_OPROFILE_EVENT_MULTIPLEX=y
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
CONFIG_KPROBES=y
CONFIG_JUMP_LABEL=y
# CONFIG_STATIC_KEYS_SELFTEST is 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_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_HAVE_FUNCTION_ERROR_INJECTION=y
CONFIG_HAVE_NMI=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_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
CONFIG_HAVE_ASM_MODVERSIONS=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_RSEQ=y
CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y
CONFIG_HAVE_CLK=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_ARCH_HAVE_NMI_SAFE_CMPXCHG=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_FILTER=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_ARCH_STACKLEAK=y
CONFIG_HAVE_STACKPROTECTOR=y
CONFIG_CC_HAS_STACKPROTECTOR_NONE=y
CONFIG_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR_STRONG=y
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=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_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_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_COPY_THREAD_TLS=y
CONFIG_HAVE_STACK_VALIDATION=y
CONFIG_HAVE_RELIABLE_STACKTRACE=y
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
CONFIG_COMPAT_32BIT_TIME=y
CONFIG_HAVE_ARCH_VMAP_STACK=y
CONFIG_VMAP_STACK=y
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 is not set
CONFIG_ARCH_HAS_MEM_ENCRYPT=y

#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# end of GCOV-based kernel profiling

CONFIG_HAVE_GCC_PLUGINS=y
# end of General architecture-dependent options

CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULE_SIG_FORMAT=y
CONFIG_MODULES=y
CONFIG_MODULE_FORCE_LOAD=y
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_MODULE_SIG=y
# CONFIG_MODULE_SIG_FORCE is not set
CONFIG_MODULE_SIG_ALL=y
# CONFIG_MODULE_SIG_SHA1 is not set
# CONFIG_MODULE_SIG_SHA224 is not set
CONFIG_MODULE_SIG_SHA256=y
# CONFIG_MODULE_SIG_SHA384 is not set
# CONFIG_MODULE_SIG_SHA512 is not set
CONFIG_MODULE_SIG_HASH="sha256"
# CONFIG_MODULE_COMPRESS is not set
# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
# CONFIG_UNUSED_SYMBOLS is not set
# CONFIG_TRIM_UNUSED_KSYMS is not set
CONFIG_MODULES_TREE_LOOKUP=y
CONFIG_BLOCK=y
CONFIG_BLK_SCSI_REQUEST=y
CONFIG_BLK_CGROUP_RWSTAT=y
CONFIG_BLK_DEV_BSG=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 is not set
# CONFIG_BLK_CMDLINE_PARSER is not set
# CONFIG_BLK_WBT is not set
# CONFIG_BLK_CGROUP_IOLATENCY is not set
# CONFIG_BLK_CGROUP_IOCOST is not set
CONFIG_BLK_DEBUG_FS=y
CONFIG_BLK_DEBUG_FS_ZONED=y
# CONFIG_BLK_SED_OPAL is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_AIX_PARTITION is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
# CONFIG_ATARI_PARTITION is not set
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
# CONFIG_LDM_PARTITION is not set
CONFIG_SGI_PARTITION=y
# CONFIG_ULTRIX_PARTITION is not set
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
# CONFIG_SYSV68_PARTITION is not set
# CONFIG_CMDLINE_PARTITION is not set
# end of Partition Types

CONFIG_BLOCK_COMPAT=y
CONFIG_BLK_MQ_PCI=y
CONFIG_BLK_MQ_VIRTIO=y
CONFIG_BLK_MQ_RDMA=y
CONFIG_BLK_PM=y

#
# IO Schedulers
#
CONFIG_MQ_IOSCHED_DEADLINE=y
CONFIG_MQ_IOSCHED_KYBER=y
# CONFIG_IOSCHED_BFQ is not set
# end of IO Schedulers

CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_PADATA=y
CONFIG_ASN1=y
CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
CONFIG_INLINE_READ_UNLOCK=y
CONFIG_INLINE_READ_UNLOCK_IRQ=y
CONFIG_INLINE_WRITE_UNLOCK=y
CONFIG_INLINE_WRITE_UNLOCK_IRQ=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

#
# Executable file formats
#
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
# end of Executable file formats

#
# Memory Management options
#
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_HAVE_FAST_GUP=y
CONFIG_NUMA_KEEP_MEMINFO=y
CONFIG_MEMORY_ISOLATION=y
CONFIG_HAVE_BOOTMEM_INFO_NODE=y
CONFIG_MEMORY_HOTPLUG=y
CONFIG_MEMORY_HOTPLUG_SPARSE=y
# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
CONFIG_MEMORY_HOTREMOVE=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_MEMORY_BALLOON=y
CONFIG_BALLOON_COMPACTION=y
CONFIG_COMPACTION=y
CONFIG_PAGE_REPORTING=y
CONFIG_MIGRATION=y
CONFIG_CONTIG_ALLOC=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
CONFIG_MEMORY_FAILURE=y
CONFIG_HWPOISON_INJECT=m
CONFIG_TRANSPARENT_HUGEPAGE=y
CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
CONFIG_ARCH_WANTS_THP_SWAP=y
CONFIG_THP_SWAP=y
CONFIG_CLEANCACHE=y
CONFIG_FRONTSWAP=y
CONFIG_CMA=y
# CONFIG_CMA_DEBUG is not set
# CONFIG_CMA_DEBUGFS is not set
CONFIG_CMA_AREAS=7
CONFIG_MEM_SOFT_DIRTY=y
CONFIG_ZSWAP=y
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set
CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO=y
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set
# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD is not set
CONFIG_ZSWAP_COMPRESSOR_DEFAULT="lzo"
CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y
# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set
# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set
CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud"
# CONFIG_ZSWAP_DEFAULT_ON is not set
CONFIG_ZPOOL=y
CONFIG_ZBUD=y
# CONFIG_Z3FOLD is not set
CONFIG_ZSMALLOC=y
# CONFIG_ZSMALLOC_PGTABLE_MAPPING is not set
# CONFIG_ZSMALLOC_STAT is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
CONFIG_DEFERRED_STRUCT_PAGE_INIT=y
CONFIG_IDLE_PAGE_TRACKING=y
CONFIG_ARCH_HAS_PTE_DEVMAP=y
CONFIG_ZONE_DEVICE=y
CONFIG_DEV_PAGEMAP_OPS=y
# CONFIG_DEVICE_PRIVATE is not set
CONFIG_FRAME_VECTOR=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
CONFIG_ARCH_HAS_PKEYS=y
# CONFIG_PERCPU_STATS is not set
# CONFIG_GUP_BENCHMARK is not set
# CONFIG_READ_ONLY_THP_FOR_FS is not set
CONFIG_ARCH_HAS_PTE_SPECIAL=y
CONFIG_MAPPING_DIRTY_HELPERS=y
# end of Memory Management options

CONFIG_NET=y
CONFIG_COMPAT_NETLINK_MESSAGES=y
CONFIG_NET_INGRESS=y
CONFIG_NET_EGRESS=y
CONFIG_NET_REDIRECT=y
CONFIG_SKB_EXTENSIONS=y

#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_DIAG=m
CONFIG_UNIX=y
CONFIG_UNIX_SCM=y
CONFIG_UNIX_DIAG=m
# CONFIG_TLS is not set
CONFIG_XFRM=y
CONFIG_XFRM_ALGO=y
CONFIG_XFRM_USER=y
# CONFIG_XFRM_INTERFACE is not set
CONFIG_XFRM_SUB_POLICY=y
CONFIG_XFRM_MIGRATE=y
CONFIG_XFRM_STATISTICS=y
CONFIG_XFRM_IPCOMP=m
CONFIG_NET_KEY=m
CONFIG_NET_KEY_MIGRATE=y
# CONFIG_SMC is not set
# CONFIG_XDP_SOCKETS is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_FIB_TRIE_STATS=y
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 is not set
# CONFIG_IP_PNP_RARP is 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 is not set
# CONFIG_NET_FOU_IP_TUNNELS is not set
CONFIG_INET_AH=m
CONFIG_INET_ESP=m
# CONFIG_INET_ESP_OFFLOAD is not set
# CONFIG_INET_ESPINTCP is not set
CONFIG_INET_IPCOMP=m
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 is not set
# CONFIG_INET_DIAG_DESTROY is not set
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 is not set
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 is not set
# CONFIG_TCP_CONG_BBR is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_RENO is 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=y
CONFIG_INET6_AH=m
CONFIG_INET6_ESP=m
# CONFIG_INET6_ESP_OFFLOAD is not set
CONFIG_INET6_IPCOMP=m
CONFIG_IPV6_MIP6=m
# CONFIG_IPV6_ILA is not set
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_MULTIPLE_TABLES=y
# CONFIG_IPV6_SUBTREES is not set
CONFIG_IPV6_MROUTE=y
CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
CONFIG_IPV6_PIMSM_V2=y
# CONFIG_IPV6_SEG6_LWTUNNEL is not set
# CONFIG_IPV6_SEG6_HMAC is not set
# CONFIG_IPV6_RPL_LWTUNNEL is not set
CONFIG_NETLABEL=y
# CONFIG_MPTCP is not set
CONFIG_NETWORK_SECMARK=y
CONFIG_NET_PTP_CLASSIFY=y
CONFIG_NETWORK_PHY_TIMESTAMPING=y
CONFIG_NETFILTER=y
CONFIG_NETFILTER_ADVANCED=y
CONFIG_BRIDGE_NETFILTER=m

#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_INGRESS=y
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_FAMILY_BRIDGE=y
CONFIG_NETFILTER_FAMILY_ARP=y
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_COMMON=m
# CONFIG_NF_LOG_NETDEV is not set
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_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_NETFILTER_NETLINK_GLUE_CT is 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_NETFILTER_SYNPROXY=m
CONFIG_NF_TABLES=m
# CONFIG_NF_TABLES_INET is not set
# CONFIG_NF_TABLES_NETDEV is not set
# CONFIG_NFT_NUMGEN is not set
CONFIG_NFT_CT=m
CONFIG_NFT_COUNTER=m
# CONFIG_NFT_CONNLIMIT is not set
CONFIG_NFT_LOG=m
CONFIG_NFT_LIMIT=m
CONFIG_NFT_MASQ=m
CONFIG_NFT_REDIR=m
# CONFIG_NFT_TUNNEL is not set
# CONFIG_NFT_OBJREF is not set
CONFIG_NFT_QUEUE=m
# CONFIG_NFT_QUOTA is not set
CONFIG_NFT_REJECT=m
CONFIG_NFT_COMPAT=m
CONFIG_NFT_HASH=m
# CONFIG_NFT_XFRM is not set
# CONFIG_NFT_SOCKET is not set
# CONFIG_NFT_OSF is not set
# CONFIG_NFT_TPROXY is not set
# CONFIG_NFT_SYNPROXY is not set
# CONFIG_NF_FLOW_TABLE is not set
CONFIG_NETFILTER_XTABLES=y

#
# Xtables combined modules
#
CONFIG_NETFILTER_XT_MARK=m
CONFIG_NETFILTER_XT_CONNMARK=m
CONFIG_NETFILTER_XT_SET=m

#
# Xtables targets
#
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

#
# Xtables matches
#
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 is not set
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
# end of Core Netfilter Configuration

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 is not set
CONFIG_IP_VS_TAB_BITS=12

#
# IPVS transport protocol load balancing support
#
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

#
# IPVS scheduler
#
CONFIG_IP_VS_RR=m
CONFIG_IP_VS_WRR=m
CONFIG_IP_VS_LC=m
CONFIG_IP_VS_WLC=m
# CONFIG_IP_VS_FO is not set
# CONFIG_IP_VS_OVF is not set
CONFIG_IP_VS_LBLC=m
CONFIG_IP_VS_LBLCR=m
CONFIG_IP_VS_DH=m
CONFIG_IP_VS_SH=m
# CONFIG_IP_VS_MH is not set
CONFIG_IP_VS_SED=m
CONFIG_IP_VS_NQ=m

#
# IPVS SH scheduler
#
CONFIG_IP_VS_SH_TAB_BITS=8

#
# IPVS MH scheduler
#
CONFIG_IP_VS_MH_TAB_INDEX=12

#
# IPVS application helper
#
CONFIG_IP_VS_FTP=m
CONFIG_IP_VS_NFCT=y
CONFIG_IP_VS_PE_SIP=m

#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=m
CONFIG_NF_SOCKET_IPV4=m
CONFIG_NF_TPROXY_IPV4=m
# CONFIG_NF_TABLES_IPV4 is not set
# CONFIG_NF_TABLES_ARP is not set
CONFIG_NF_DUP_IPV4=m
# CONFIG_NF_LOG_ARP is not set
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_CLUSTERIP=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
# end of IP: Netfilter Configuration

#
# IPv6: Netfilter Configuration
#
CONFIG_NF_SOCKET_IPV6=m
CONFIG_NF_TPROXY_IPV6=m
# CONFIG_NF_TABLES_IPV6 is not set
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 is not set
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
# end of IPv6: Netfilter Configuration

CONFIG_NF_DEFRAG_IPV6=m
# CONFIG_NF_TABLES_BRIDGE is not set
# CONFIG_NF_CONNTRACK_BRIDGE is not set
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 is not set
CONFIG_IP_DCCP=m
CONFIG_INET_DCCP_DIAG=m

#
# DCCP CCIDs Configuration
#
# CONFIG_IP_DCCP_CCID2_DEBUG is not set
CONFIG_IP_DCCP_CCID3=y
# CONFIG_IP_DCCP_CCID3_DEBUG is not set
CONFIG_IP_DCCP_TFRC_LIB=y
# end of DCCP CCIDs Configuration

#
# DCCP Kernel Hacking
#
# CONFIG_IP_DCCP_DEBUG is not set
# end of DCCP Kernel Hacking

CONFIG_IP_SCTP=m
# CONFIG_SCTP_DBG_OBJCNT is not set
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
CONFIG_SCTP_COOKIE_HMAC_MD5=y
CONFIG_SCTP_COOKIE_HMAC_SHA1=y
CONFIG_INET_SCTP_DIAG=m
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
CONFIG_ATM=m
CONFIG_ATM_CLIP=m
# CONFIG_ATM_CLIP_NO_ICMP is not set
CONFIG_ATM_LANE=m
# CONFIG_ATM_MPOA is not set
CONFIG_ATM_BR2684=m
# CONFIG_ATM_BR2684_IPFILTER is 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_HAVE_NET_DSA=y
# CONFIG_NET_DSA is not set
CONFIG_VLAN_8021Q=m
CONFIG_VLAN_8021Q_GVRP=y
CONFIG_VLAN_8021Q_MVRP=y
# CONFIG_DECNET is not set
CONFIG_LLC=m
# CONFIG_LLC2 is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
CONFIG_6LOWPAN=m
# CONFIG_6LOWPAN_DEBUGFS is 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 is not set
# CONFIG_6LOWPAN_GHC_UDP is not set
# CONFIG_6LOWPAN_GHC_ICMPV6 is not set
# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set
# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set
# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set
CONFIG_IEEE802154=m
# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set
CONFIG_IEEE802154_SOCKET=m
CONFIG_IEEE802154_6LOWPAN=m
CONFIG_MAC802154=m
CONFIG_NET_SCHED=y

#
# Queueing/Scheduling
#
CONFIG_NET_SCH_CBQ=m
CONFIG_NET_SCH_HTB=m
CONFIG_NET_SCH_HFSC=m
CONFIG_NET_SCH_ATM=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 is not set
# CONFIG_NET_SCH_ETF is not set
# CONFIG_NET_SCH_TAPRIO is not set
CONFIG_NET_SCH_GRED=m
CONFIG_NET_SCH_DSMARK=m
CONFIG_NET_SCH_NETEM=m
CONFIG_NET_SCH_DRR=m
CONFIG_NET_SCH_MQPRIO=m
# CONFIG_NET_SCH_SKBPRIO is not set
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 is not set
CONFIG_NET_SCH_FQ=m
# CONFIG_NET_SCH_HHF is not set
# CONFIG_NET_SCH_PIE is not set
CONFIG_NET_SCH_INGRESS=m
CONFIG_NET_SCH_PLUG=m
# CONFIG_NET_SCH_ETS is not set
# CONFIG_NET_SCH_DEFAULT is not set

#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=m
CONFIG_NET_CLS_TCINDEX=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_RSVP=m
CONFIG_NET_CLS_RSVP6=m
CONFIG_NET_CLS_FLOW=m
CONFIG_NET_CLS_CGROUP=y
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 is not set
CONFIG_NET_EMATCH_IPSET=m
# CONFIG_NET_EMATCH_IPT is not set
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 is not set
CONFIG_NET_ACT_VLAN=m
# CONFIG_NET_ACT_BPF is not set
CONFIG_NET_ACT_CONNMARK=m
# CONFIG_NET_ACT_CTINFO is not set
CONFIG_NET_ACT_SKBMOD=m
# CONFIG_NET_ACT_IFE is not set
CONFIG_NET_ACT_TUNNEL_KEY=m
# CONFIG_NET_TC_SKB_EXT is not set
CONFIG_NET_SCH_FIFO=y
CONFIG_DCB=y
CONFIG_DNS_RESOLVER=m
# CONFIG_BATMAN_ADV is 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=y
# CONFIG_MPLS_ROUTING is not set
CONFIG_NET_NSH=m
# CONFIG_HSR is not set
CONFIG_NET_SWITCHDEV=y
# CONFIG_NET_L3_MASTER_DEV is not set
# CONFIG_NET_NCSI is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_CGROUP_NET_PRIO is not set
CONFIG_CGROUP_NET_CLASSID=y
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
CONFIG_BPF_JIT=y
CONFIG_NET_FLOW_LIMIT=y

#
# Network testing
#
CONFIG_NET_PKTGEN=m
CONFIG_NET_DROP_MONITOR=y
# end of Network testing
# end of Networking options

# CONFIG_HAMRADIO is not set
CONFIG_CAN=m
CONFIG_CAN_RAW=m
CONFIG_CAN_BCM=m
CONFIG_CAN_GW=m
# CONFIG_CAN_J1939 is not set

#
# CAN Device Drivers
#
CONFIG_CAN_VCAN=m
# CONFIG_CAN_VXCAN is not set
CONFIG_CAN_SLCAN=m
CONFIG_CAN_DEV=m
CONFIG_CAN_CALC_BITTIMING=y
# CONFIG_CAN_KVASER_PCIEFD is not set
CONFIG_CAN_C_CAN=m
CONFIG_CAN_C_CAN_PLATFORM=m
CONFIG_CAN_C_CAN_PCI=m
CONFIG_CAN_CC770=m
# CONFIG_CAN_CC770_ISA is not set
CONFIG_CAN_CC770_PLATFORM=m
# CONFIG_CAN_IFI_CANFD is not set
# CONFIG_CAN_M_CAN is not set
# CONFIG_CAN_PEAK_PCIEFD is not set
CONFIG_CAN_SJA1000=m
CONFIG_CAN_EMS_PCI=m
# CONFIG_CAN_F81601 is not set
CONFIG_CAN_KVASER_PCI=m
CONFIG_CAN_PEAK_PCI=m
CONFIG_CAN_PEAK_PCIEC=y
CONFIG_CAN_PLX_PCI=m
# CONFIG_CAN_SJA1000_ISA is not set
CONFIG_CAN_SJA1000_PLATFORM=m
CONFIG_CAN_SOFTING=m

#
# CAN SPI interfaces
#
# CONFIG_CAN_HI311X is not set
# CONFIG_CAN_MCP251X is not set
# end of CAN SPI interfaces

#
# CAN USB interfaces
#
CONFIG_CAN_8DEV_USB=m
CONFIG_CAN_EMS_USB=m
CONFIG_CAN_ESD_USB2=m
# CONFIG_CAN_GS_USB is not set
CONFIG_CAN_KVASER_USB=m
# CONFIG_CAN_MCBA_USB is not set
CONFIG_CAN_PEAK_USB=m
# CONFIG_CAN_UCAN is not set
# end of CAN USB interfaces

# CONFIG_CAN_DEBUG_DEVICES is not set
# end of CAN Device Drivers

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_CMTP=m
CONFIG_BT_HIDP=m
CONFIG_BT_HS=y
CONFIG_BT_LE=y
# CONFIG_BT_6LOWPAN is not set
# CONFIG_BT_LEDS is not set
# CONFIG_BT_SELFTEST is not set
CONFIG_BT_DEBUGFS=y

#
# Bluetooth device drivers
#
CONFIG_BT_INTEL=m
CONFIG_BT_BCM=m
CONFIG_BT_RTL=m
CONFIG_BT_HCIBTUSB=m
# CONFIG_BT_HCIBTUSB_AUTOSUSPEND is not set
CONFIG_BT_HCIBTUSB_BCM=y
# CONFIG_BT_HCIBTUSB_MTK is not set
CONFIG_BT_HCIBTUSB_RTL=y
CONFIG_BT_HCIBTSDIO=m
CONFIG_BT_HCIUART=m
CONFIG_BT_HCIUART_H4=y
CONFIG_BT_HCIUART_BCSP=y
CONFIG_BT_HCIUART_ATH3K=y
# CONFIG_BT_HCIUART_INTEL is not set
# CONFIG_BT_HCIUART_AG6XX is not set
CONFIG_BT_HCIBCM203X=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 is not set
# end of Bluetooth device drivers

# CONFIG_AF_RXRPC is not set
# CONFIG_AF_KCM is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_WIRELESS_EXT=y
CONFIG_WEXT_CORE=y
CONFIG_WEXT_PROC=y
CONFIG_WEXT_PRIV=y
CONFIG_CFG80211=m
# CONFIG_NL80211_TESTMODE is not set
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y
CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y
CONFIG_CFG80211_DEFAULT_PS=y
# CONFIG_CFG80211_DEBUGFS is not set
CONFIG_CFG80211_CRDA_SUPPORT=y
CONFIG_CFG80211_WEXT=y
CONFIG_LIB80211=m
# CONFIG_LIB80211_DEBUG is 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 is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
# CONFIG_WIMAX is not set
CONFIG_RFKILL=m
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
# CONFIG_RFKILL_GPIO is not set
CONFIG_NET_9P=y
CONFIG_NET_9P_VIRTIO=y
# CONFIG_NET_9P_XEN is not set
# CONFIG_NET_9P_RDMA is not set
# CONFIG_NET_9P_DEBUG is not set
# CONFIG_CAIF is not set
CONFIG_CEPH_LIB=m
# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y
# CONFIG_NFC is not set
CONFIG_PSAMPLE=m
# CONFIG_NET_IFE is not set
CONFIG_LWTUNNEL=y
CONFIG_LWTUNNEL_BPF=y
CONFIG_DST_CACHE=y
CONFIG_GRO_CELLS=y
CONFIG_NET_DEVLINK=y
CONFIG_PAGE_POOL=y
CONFIG_FAILOVER=m
CONFIG_ETHTOOL_NETLINK=y
CONFIG_HAVE_EBPF_JIT=y

#
# Device Drivers
#
CONFIG_HAVE_EISA=y
# CONFIG_EISA is 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=y
CONFIG_PCIEASPM=y
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
# CONFIG_PCIE_DPC is not set
# CONFIG_PCIE_PTM is not set
# CONFIG_PCIE_BW is not set
CONFIG_PCI_MSI=y
CONFIG_PCI_MSI_IRQ_DOMAIN=y
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
CONFIG_PCI_STUB=y
# CONFIG_PCI_PF_STUB is not set
# CONFIG_XEN_PCIDEV_FRONTEND is not set
CONFIG_PCI_ATS=y
CONFIG_PCI_LOCKLESS_CONFIG=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
CONFIG_PCI_PASID=y
# CONFIG_PCI_P2PDMA is not set
CONFIG_PCI_LABEL=y
CONFIG_PCI_HYPERV=m
CONFIG_HOTPLUG_PCI=y
CONFIG_HOTPLUG_PCI_ACPI=y
CONFIG_HOTPLUG_PCI_ACPI_IBM=m
# CONFIG_HOTPLUG_PCI_CPCI is not set
CONFIG_HOTPLUG_PCI_SHPC=y

#
# PCI controller drivers
#
CONFIG_VMD=y
CONFIG_PCI_HYPERV_INTERFACE=m

#
# DesignWare PCI Core Support
#
# CONFIG_PCIE_DW_PLAT_HOST is not set
# CONFIG_PCI_MESON is not set
# end of DesignWare PCI Core Support

#
# Mobiveil PCIe Core Support
#
# end of Mobiveil PCIe Core Support

#
# Cadence PCIe controllers support
#
# end of Cadence PCIe controllers support
# end of PCI controller drivers

#
# PCI Endpoint
#
# CONFIG_PCI_ENDPOINT is not set
# end of PCI Endpoint

#
# PCI switch controller drivers
#
# CONFIG_PCI_SW_SWITCHTEC is not set
# end of PCI switch controller drivers

CONFIG_PCCARD=y
# CONFIG_PCMCIA is not set
CONFIG_CARDBUS=y

#
# PC-card bridges
#
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 is not set

#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER=y
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y

#
# Firmware loader
#
CONFIG_FW_LOADER=y
CONFIG_FW_LOADER_PAGED_BUF=y
CONFIG_EXTRA_FIRMWARE=""
CONFIG_FW_LOADER_USER_HELPER=y
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
# CONFIG_FW_LOADER_COMPRESS is not set
CONFIG_FW_CACHE=y
# end of Firmware loader

CONFIG_WANT_DEV_COREDUMP=y
CONFIG_ALLOW_DEV_COREDUMP=y
CONFIG_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
# CONFIG_PM_QOS_KUNIT_TEST is not set
# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
# CONFIG_KUNIT_DRIVER_PE_TEST is not set
CONFIG_SYS_HYPERVISOR=y
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_GENERIC_CPU_VULNERABILITIES=y
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=m
CONFIG_REGMAP_SPI=m
CONFIG_REGMAP_IRQ=y
CONFIG_DMA_SHARED_BUFFER=y
# CONFIG_DMA_FENCE_TRACE is not set
# end of Generic Driver Options

#
# Bus devices
#
# CONFIG_MHI_BUS is not set
# end of Bus devices

CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_GNSS is not set
CONFIG_MTD=m
# CONFIG_MTD_TESTS is not set

#
# Partition parsers
#
# CONFIG_MTD_AR7_PARTS is not set
# CONFIG_MTD_CMDLINE_PARTS is not set
# CONFIG_MTD_REDBOOT_PARTS is not set
# end of Partition parsers

#
# User Modules And Translation Layers
#
CONFIG_MTD_BLKDEVS=m
CONFIG_MTD_BLOCK=m
# CONFIG_MTD_BLOCK_RO is not set
# CONFIG_FTL is not set
# CONFIG_NFTL is not set
# CONFIG_INFTL is not set
# CONFIG_RFD_FTL is not set
# CONFIG_SSFDC is not set
# CONFIG_SM_FTL is not set
# CONFIG_MTD_OOPS is not set
# CONFIG_MTD_SWAP is not set
# CONFIG_MTD_PARTITIONED_MASTER is not set

#
# RAM/ROM/Flash chip drivers
#
# CONFIG_MTD_CFI is not set
# CONFIG_MTD_JEDECPROBE is not set
CONFIG_MTD_MAP_BANK_WIDTH_1=y
CONFIG_MTD_MAP_BANK_WIDTH_2=y
CONFIG_MTD_MAP_BANK_WIDTH_4=y
CONFIG_MTD_CFI_I1=y
CONFIG_MTD_CFI_I2=y
# CONFIG_MTD_RAM is not set
# CONFIG_MTD_ROM is not set
# CONFIG_MTD_ABSENT is not set
# end of RAM/ROM/Flash chip drivers

#
# Mapping drivers for chip access
#
# CONFIG_MTD_COMPLEX_MAPPINGS is not set
# CONFIG_MTD_INTEL_VR_NOR is not set
# CONFIG_MTD_PLATRAM is not set
# end of Mapping drivers for chip access

#
# Self-contained MTD device drivers
#
# CONFIG_MTD_PMC551 is not set
# CONFIG_MTD_DATAFLASH is not set
# CONFIG_MTD_MCHP23K256 is not set
# CONFIG_MTD_SST25L is not set
# CONFIG_MTD_SLRAM is not set
# CONFIG_MTD_PHRAM is not set
# CONFIG_MTD_MTDRAM is not set
# CONFIG_MTD_BLOCK2MTD is not set

#
# Disk-On-Chip Device Drivers
#
# CONFIG_MTD_DOCG3 is not set
# end of Self-contained MTD device drivers

# CONFIG_MTD_ONENAND is not set
# CONFIG_MTD_RAW_NAND is not set
# CONFIG_MTD_SPI_NAND is not set

#
# LPDDR & LPDDR2 PCM memory drivers
#
# CONFIG_MTD_LPDDR is not set
# end of LPDDR & LPDDR2 PCM memory drivers

# CONFIG_MTD_SPI_NOR is not set
CONFIG_MTD_UBI=m
CONFIG_MTD_UBI_WL_THRESHOLD=4096
CONFIG_MTD_UBI_BEB_LIMIT=20
# CONFIG_MTD_UBI_FASTMAP is not set
# CONFIG_MTD_UBI_GLUEBI is not set
# CONFIG_MTD_UBI_BLOCK is not set
# CONFIG_MTD_HYPERBUS is not set
# CONFIG_OF is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_SERIAL=m
# CONFIG_PARPORT_PC_FIFO is not set
# CONFIG_PARPORT_PC_SUPERIO is not set
# CONFIG_PARPORT_AX88796 is not set
CONFIG_PARPORT_1284=y
CONFIG_PARPORT_NOT_PC=y
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
CONFIG_BLK_DEV_NULL_BLK=m
CONFIG_BLK_DEV_NULL_BLK_FAULT_INJECTION=y
CONFIG_BLK_DEV_FD=m
CONFIG_CDROM=m
# CONFIG_PARIDE is not set
CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m
# CONFIG_ZRAM is not set
# CONFIG_BLK_DEV_UMEM is not set
CONFIG_BLK_DEV_LOOP=m
CONFIG_BLK_DEV_LOOP_MIN_COUNT=0
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
CONFIG_BLK_DEV_NBD=m
# CONFIG_BLK_DEV_SKD is not set
CONFIG_BLK_DEV_SX8=m
CONFIG_BLK_DEV_RAM=m
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=16384
CONFIG_CDROM_PKTCDVD=m
CONFIG_CDROM_PKTCDVD_BUFFERS=8
# CONFIG_CDROM_PKTCDVD_WCACHE is not set
CONFIG_ATA_OVER_ETH=m
CONFIG_XEN_BLKDEV_FRONTEND=m
CONFIG_VIRTIO_BLK=y
CONFIG_BLK_DEV_RBD=m
# CONFIG_BLK_DEV_RSXX is not set

#
# NVME Support
#
CONFIG_NVME_CORE=m
CONFIG_BLK_DEV_NVME=m
CONFIG_NVME_MULTIPATH=y
# CONFIG_NVME_HWMON is not set
CONFIG_NVME_FABRICS=m
# CONFIG_NVME_RDMA is not set
CONFIG_NVME_FC=m
# CONFIG_NVME_TCP is not set
CONFIG_NVME_TARGET=m
CONFIG_NVME_TARGET_LOOP=m
# CONFIG_NVME_TARGET_RDMA is not set
CONFIG_NVME_TARGET_FC=m
CONFIG_NVME_TARGET_FCLOOP=m
# CONFIG_NVME_TARGET_TCP is not set
# end of NVME Support

#
# Misc devices
#
CONFIG_SENSORS_LIS3LV02D=m
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
CONFIG_TIFM_CORE=m
CONFIG_TIFM_7XX1=m
# CONFIG_ICS932S401 is not set
CONFIG_ENCLOSURE_SERVICES=m
CONFIG_SGI_XP=m
CONFIG_HP_ILO=m
CONFIG_SGI_GRU=m
# CONFIG_SGI_GRU_DEBUG is not set
CONFIG_APDS9802ALS=m
CONFIG_ISL29003=m
CONFIG_ISL29020=m
CONFIG_SENSORS_TSL2550=m
CONFIG_SENSORS_BH1770=m
CONFIG_SENSORS_APDS990X=m
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
CONFIG_VMWARE_BALLOON=m
# CONFIG_LATTICE_ECP3_CONFIG is not set
# CONFIG_SRAM is not set
# CONFIG_PCI_ENDPOINT_TEST is not set
# CONFIG_XILINX_SDFEC is not set
CONFIG_PVPANIC=y
# CONFIG_C2PORT is not set

#
# EEPROM support
#
CONFIG_EEPROM_AT24=m
# CONFIG_EEPROM_AT25 is not set
CONFIG_EEPROM_LEGACY=m
CONFIG_EEPROM_MAX6875=m
CONFIG_EEPROM_93CX6=m
# CONFIG_EEPROM_93XX46 is not set
# CONFIG_EEPROM_IDT_89HPESX is not set
# CONFIG_EEPROM_EE1004 is not set
# end of EEPROM support

CONFIG_CB710_CORE=m
# CONFIG_CB710_DEBUG is not set
CONFIG_CB710_DEBUG_ASSUMPTIONS=y

#
# Texas Instruments shared transport line discipline
#
# CONFIG_TI_ST is not set
# end of Texas Instruments shared transport line discipline

CONFIG_SENSORS_LIS3_I2C=m
CONFIG_ALTERA_STAPL=m
CONFIG_INTEL_MEI=m
CONFIG_INTEL_MEI_ME=m
# CONFIG_INTEL_MEI_TXE is not set
# CONFIG_INTEL_MEI_HDCP is not set
CONFIG_VMWARE_VMCI=m

#
# Intel MIC & related support
#
# CONFIG_INTEL_MIC_BUS is not set
# CONFIG_SCIF_BUS is not set
# CONFIG_VOP_BUS is not set
# end of Intel MIC & related support

# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
# CONFIG_MISC_ALCOR_PCI is not set
# CONFIG_MISC_RTSX_PCI is not set
# CONFIG_MISC_RTSX_USB is not set
# CONFIG_HABANA_AI is not set
# CONFIG_UACCE is not set
# end of Misc devices

CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set

#
# SCSI device support
#
CONFIG_SCSI_MOD=y
CONFIG_RAID_ATTRS=m
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
CONFIG_SCSI_NETLINK=y
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=m
CONFIG_CHR_DEV_ST=m
CONFIG_BLK_DEV_SR=m
CONFIG_CHR_DEV_SG=m
CONFIG_CHR_DEV_SCH=m
CONFIG_SCSI_ENCLOSURE=m
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
CONFIG_SCSI_SCAN_ASYNC=y

#
# SCSI Transports
#
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
# end of SCSI Transports

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 is not set
CONFIG_SCSI_HPSA=m
CONFIG_SCSI_3W_9XXX=m
CONFIG_SCSI_3W_SAS=m
# CONFIG_SCSI_ACARD is not set
CONFIG_SCSI_AACRAID=m
# CONFIG_SCSI_AIC7XXX is not set
CONFIG_SCSI_AIC79XX=m
CONFIG_AIC79XX_CMDS_PER_DEVICE=4
CONFIG_AIC79XX_RESET_DELAY_MS=15000
# CONFIG_AIC79XX_DEBUG_ENABLE is not set
CONFIG_AIC79XX_DEBUG_MASK=0
# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set
# CONFIG_SCSI_AIC94XX is not set
CONFIG_SCSI_MVSAS=m
# CONFIG_SCSI_MVSAS_DEBUG is not set
CONFIG_SCSI_MVSAS_TASKLET=y
CONFIG_SCSI_MVUMI=m
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
CONFIG_SCSI_ARCMSR=m
# CONFIG_SCSI_ESAS2R is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
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_SMARTPQI is not set
CONFIG_SCSI_UFSHCD=m
CONFIG_SCSI_UFSHCD_PCI=m
# CONFIG_SCSI_UFS_DWC_TC_PCI is not set
# CONFIG_SCSI_UFSHCD_PLATFORM is not set
# CONFIG_SCSI_UFS_BSG is not set
CONFIG_SCSI_HPTIOP=m
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_MYRB is not set
# CONFIG_SCSI_MYRS is not set
CONFIG_VMWARE_PVSCSI=m
# CONFIG_XEN_SCSI_FRONTEND is not set
CONFIG_HYPERV_STORAGE=m
CONFIG_LIBFC=m
CONFIG_LIBFCOE=m
CONFIG_FCOE=m
CONFIG_FCOE_FNIC=m
# CONFIG_SCSI_SNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_FDOMAIN_PCI is not set
# CONFIG_SCSI_GDTH is not set
CONFIG_SCSI_ISCI=m
# CONFIG_SCSI_IPS is not set
CONFIG_SCSI_INITIO=m
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
CONFIG_SCSI_STEX=m
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
CONFIG_SCSI_QLA_FC=m
CONFIG_TCM_QLA2XXX=m
# CONFIG_TCM_QLA2XXX_DEBUG is not set
CONFIG_SCSI_QLA_ISCSI=m
# CONFIG_QEDI is not set
# CONFIG_QEDF is not set
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_WD719X is not set
CONFIG_SCSI_DEBUG=m
CONFIG_SCSI_PMCRAID=m
CONFIG_SCSI_PM8001=m
# CONFIG_SCSI_BFA_FC is not set
CONFIG_SCSI_VIRTIO=m
# CONFIG_SCSI_CHELSIO_FCOE is not set
CONFIG_SCSI_DH=y
CONFIG_SCSI_DH_RDAC=y
CONFIG_SCSI_DH_HP_SW=y
CONFIG_SCSI_DH_EMC=y
CONFIG_SCSI_DH_ALUA=y
# end of SCSI device support

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 is not set
CONFIG_SATA_PMP=y

#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=m
CONFIG_SATA_MOBILE_LPM_POLICY=0
CONFIG_SATA_AHCI_PLATFORM=m
# CONFIG_SATA_INIC162X is not set
CONFIG_SATA_ACARD_AHCI=m
CONFIG_SATA_SIL24=m
CONFIG_ATA_SFF=y

#
# SFF controllers with custom DMA interface
#
CONFIG_PDC_ADMA=m
CONFIG_SATA_QSTOR=m
CONFIG_SATA_SX4=m
CONFIG_ATA_BMDMA=y

#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=m
# CONFIG_SATA_DWC is 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

#
# PATA SFF controllers with BMDMA
#
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 is not set
# CONFIG_PATA_EFAR is not set
CONFIG_PATA_HPT366=m
CONFIG_PATA_HPT37X=m
CONFIG_PATA_HPT3X2N=m
CONFIG_PATA_HPT3X3=m
# CONFIG_PATA_HPT3X3_DMA is 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 is not set
CONFIG_PATA_OLDPIIX=m
# CONFIG_PATA_OPTIDMA is not set
CONFIG_PATA_PDC2027X=m
CONFIG_PATA_PDC_OLD=m
# CONFIG_PATA_RADISYS is not set
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 is not set
CONFIG_PATA_VIA=m
# CONFIG_PATA_WINBOND is not set

#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_RZ1000 is not set

#
# Generic fallback / legacy drivers
#
CONFIG_PATA_ACPI=m
CONFIG_ATA_GENERIC=m
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
CONFIG_MD_LINEAR=m
CONFIG_MD_RAID0=m
CONFIG_MD_RAID1=m
CONFIG_MD_RAID10=m
CONFIG_MD_RAID456=m
CONFIG_MD_MULTIPATH=m
CONFIG_MD_FAULTY=m
# CONFIG_MD_CLUSTER is not set
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=m
CONFIG_DM_DEBUG=y
CONFIG_DM_BUFIO=m
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
CONFIG_DM_BIO_PRISON=m
CONFIG_DM_PERSISTENT_DATA=m
# CONFIG_DM_UNSTRIPED is not set
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 is not set
CONFIG_DM_ERA=m
# CONFIG_DM_CLONE is not set
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_DELAY=m
# CONFIG_DM_DUST is not set
CONFIG_DM_UEVENT=y
CONFIG_DM_FLAKEY=m
CONFIG_DM_VERITY=m
# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG is not set
# CONFIG_DM_VERITY_FEC is not set
CONFIG_DM_SWITCH=m
CONFIG_DM_LOG_WRITES=m
# CONFIG_DM_INTEGRITY is not set
# CONFIG_DM_ZONED is not set
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 is not set
CONFIG_FUSION=y
CONFIG_FUSION_SPI=m
# CONFIG_FUSION_FC is not set
CONFIG_FUSION_SAS=m
CONFIG_FUSION_MAX_SGE=128
CONFIG_FUSION_CTL=m
CONFIG_FUSION_LOGGING=y

#
# IEEE 1394 (FireWire) support
#
CONFIG_FIREWIRE=m
CONFIG_FIREWIRE_OHCI=m
CONFIG_FIREWIRE_SBP2=m
CONFIG_FIREWIRE_NET=m
# CONFIG_FIREWIRE_NOSY is not set
# end of IEEE 1394 (FireWire) support

CONFIG_MACINTOSH_DRIVERS=y
CONFIG_MAC_EMUMOUSEBTN=y
CONFIG_NETDEVICES=y
CONFIG_MII=y
CONFIG_NET_CORE=y
CONFIG_BONDING=m
CONFIG_DUMMY=m
# CONFIG_WIREGUARD is not set
# CONFIG_EQUALIZER is not set
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 is not set
CONFIG_VXLAN=m
CONFIG_GENEVE=m
# CONFIG_BAREUDP is not set
# CONFIG_GTP is not set
CONFIG_MACSEC=m
CONFIG_NETCONSOLE=m
CONFIG_NETCONSOLE_DYNAMIC=y
CONFIG_NETPOLL=y
CONFIG_NET_POLL_CONTROLLER=y
CONFIG_NTB_NETDEV=m
CONFIG_TUN=m
CONFIG_TAP=m
# CONFIG_TUN_VNET_CROSS_LE is not set
CONFIG_VETH=m
CONFIG_VIRTIO_NET=m
CONFIG_NLMON=m
CONFIG_VSOCKMON=m
# CONFIG_ARCNET is not set
# CONFIG_ATM_DRIVERS is not set

#
# Distributed Switch Architecture drivers
#
# end of Distributed Switch Architecture drivers

CONFIG_ETHERNET=y
CONFIG_MDIO=y
# CONFIG_NET_VENDOR_3COM is not set
# CONFIG_NET_VENDOR_ADAPTEC is not set
CONFIG_NET_VENDOR_AGERE=y
# CONFIG_ET131X is not set
CONFIG_NET_VENDOR_ALACRITECH=y
# CONFIG_SLICOSS is not set
# CONFIG_NET_VENDOR_ALTEON is not set
# CONFIG_ALTERA_TSE is 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 is not set
CONFIG_AMD_XGBE_HAVE_ECC=y
CONFIG_NET_VENDOR_AQUANTIA=y
CONFIG_AQTION=m
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ATHEROS=y
CONFIG_ATL2=m
CONFIG_ATL1=m
CONFIG_ATL1E=m
CONFIG_ATL1C=m
CONFIG_ALX=m
CONFIG_NET_VENDOR_AURORA=y
# CONFIG_AURORA_NB8800 is not set
CONFIG_NET_VENDOR_BROADCOM=y
CONFIG_B44=m
CONFIG_B44_PCI_AUTOSELECT=y
CONFIG_B44_PCICORE_AUTOSELECT=y
CONFIG_B44_PCI=y
# CONFIG_BCMGENET is not set
CONFIG_BNX2=m
CONFIG_CNIC=m
CONFIG_TIGON3=y
CONFIG_TIGON3_HWMON=y
CONFIG_BNX2X=m
CONFIG_BNX2X_SRIOV=y
# CONFIG_SYSTEMPORT is not set
CONFIG_BNXT=m
CONFIG_BNXT_SRIOV=y
CONFIG_BNXT_FLOWER_OFFLOAD=y
CONFIG_BNXT_DCB=y
CONFIG_BNXT_HWMON=y
CONFIG_NET_VENDOR_BROCADE=y
CONFIG_BNA=m
CONFIG_NET_VENDOR_CADENCE=y
CONFIG_MACB=m
CONFIG_MACB_USE_HWSTAMP=y
# CONFIG_MACB_PCI is not set
CONFIG_NET_VENDOR_CAVIUM=y
# CONFIG_THUNDER_NIC_PF is not set
# CONFIG_THUNDER_NIC_VF is not set
# CONFIG_THUNDER_NIC_BGX is not set
# CONFIG_THUNDER_NIC_RGX is not set
CONFIG_CAVIUM_PTP=y
CONFIG_LIQUIDIO=m
CONFIG_LIQUIDIO_VF=m
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
CONFIG_CHELSIO_T3=m
CONFIG_CHELSIO_T4=m
# CONFIG_CHELSIO_T4_DCB is not set
CONFIG_CHELSIO_T4VF=m
CONFIG_CHELSIO_LIB=m
CONFIG_NET_VENDOR_CISCO=y
CONFIG_ENIC=m
CONFIG_NET_VENDOR_CORTINA=y
# CONFIG_CX_ECAT is not set
CONFIG_DNET=m
CONFIG_NET_VENDOR_DEC=y
CONFIG_NET_TULIP=y
CONFIG_DE2104X=m
CONFIG_DE2104X_DSL=0
CONFIG_TULIP=y
# CONFIG_TULIP_MWI is not set
CONFIG_TULIP_MMIO=y
# CONFIG_TULIP_NAPI is not set
CONFIG_DE4X5=m
CONFIG_WINBOND_840=m
CONFIG_DM9102=m
CONFIG_ULI526X=m
CONFIG_PCMCIA_XIRCOM=m
# CONFIG_NET_VENDOR_DLINK is 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_EZCHIP=y
CONFIG_NET_VENDOR_GOOGLE=y
# CONFIG_GVE is not set
CONFIG_NET_VENDOR_HUAWEI=y
# CONFIG_HINIC is not set
# CONFIG_NET_VENDOR_I825XX is not set
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
CONFIG_E1000=y
CONFIG_E1000E=y
CONFIG_E1000E_HWTS=y
CONFIG_IGB=y
CONFIG_IGB_HWMON=y
CONFIG_IGBVF=m
# CONFIG_IXGB is not set
CONFIG_IXGBE=y
CONFIG_IXGBE_HWMON=y
CONFIG_IXGBE_DCB=y
CONFIG_IXGBEVF=m
CONFIG_I40E=y
CONFIG_I40E_DCB=y
CONFIG_IAVF=m
CONFIG_I40EVF=m
# CONFIG_ICE is not set
CONFIG_FM10K=m
# CONFIG_IGC is not set
CONFIG_JME=m
CONFIG_NET_VENDOR_MARVELL=y
CONFIG_MVMDIO=m
CONFIG_SKGE=y
# CONFIG_SKGE_DEBUG is not set
CONFIG_SKGE_GENESIS=y
CONFIG_SKY2=m
# CONFIG_SKY2_DEBUG is not set
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 is not set
# CONFIG_MLXSW_CORE is not set
# CONFIG_MLXFW is not set
# CONFIG_NET_VENDOR_MICREL is not set
# CONFIG_NET_VENDOR_MICROCHIP is not set
CONFIG_NET_VENDOR_MICROSEMI=y
# CONFIG_MSCC_OCELOT_SWITCH is not set
CONFIG_NET_VENDOR_MYRI=y
CONFIG_MYRI10GE=m
CONFIG_MYRI10GE_DCA=y
# CONFIG_FEALNX is not set
# CONFIG_NET_VENDOR_NATSEMI is not set
CONFIG_NET_VENDOR_NETERION=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
CONFIG_NET_VENDOR_NETRONOME=y
CONFIG_NFP=m
CONFIG_NFP_APP_FLOWER=y
CONFIG_NFP_APP_ABM_NIC=y
# CONFIG_NFP_DEBUG is not set
CONFIG_NET_VENDOR_NI=y
# CONFIG_NI_XGE_MANAGEMENT_ENET is not set
# CONFIG_NET_VENDOR_NVIDIA is not set
CONFIG_NET_VENDOR_OKI=y
CONFIG_ETHOC=m
CONFIG_NET_VENDOR_PACKET_ENGINES=y
# CONFIG_HAMACHI is not set
CONFIG_YELLOWFIN=m
CONFIG_NET_VENDOR_PENSANDO=y
# CONFIG_IONIC is not set
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_SRIOV=y
CONFIG_QEDE=m
CONFIG_NET_VENDOR_QUALCOMM=y
# CONFIG_QCOM_EMAC is not set
# CONFIG_RMNET is not set
# CONFIG_NET_VENDOR_RDC is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_ATP is not set
CONFIG_8139CP=y
CONFIG_8139TOO=y
# CONFIG_8139TOO_PIO is not set
# CONFIG_8139TOO_TUNE_TWISTER is not set
CONFIG_8139TOO_8129=y
# CONFIG_8139_OLD_RX_RESET is not set
CONFIG_R8169=y
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_ROCKER=y
CONFIG_ROCKER=m
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
# CONFIG_NET_VENDOR_SEEQ is not set
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_NET_VENDOR_SILAN is not set
# CONFIG_NET_VENDOR_SIS is not set
CONFIG_NET_VENDOR_SMSC=y
CONFIG_EPIC100=m
# CONFIG_SMSC911X is not set
CONFIG_SMSC9420=m
CONFIG_NET_VENDOR_SOCIONEXT=y
# CONFIG_NET_VENDOR_STMICRO is not set
# CONFIG_NET_VENDOR_SUN is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
# CONFIG_DWC_XLGMAC is not set
# CONFIG_NET_VENDOR_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TI_CPSW_PHY_SEL is not set
CONFIG_TLAN=m
# CONFIG_NET_VENDOR_VIA is not set
# CONFIG_NET_VENDOR_WIZNET is not set
CONFIG_NET_VENDOR_XILINX=y
# CONFIG_XILINX_AXI_EMAC is not set
# CONFIG_XILINX_LL_TEMAC is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_MDIO_DEVICE=y
CONFIG_MDIO_BUS=y
# CONFIG_MDIO_BCM_UNIMAC is not set
CONFIG_MDIO_BITBANG=m
# CONFIG_MDIO_GPIO is not set
# CONFIG_MDIO_MSCC_MIIM is not set
# CONFIG_MDIO_MVUSB is not set
# CONFIG_MDIO_THUNDER is not set
# CONFIG_MDIO_XPCS is not set
CONFIG_PHYLINK=m
CONFIG_PHYLIB=y
CONFIG_SWPHY=y
# CONFIG_LED_TRIGGER_PHY is not set

#
# MII PHY device drivers
#
# CONFIG_SFP is not set
# CONFIG_ADIN_PHY is not set
CONFIG_AMD_PHY=m
# CONFIG_AQUANTIA_PHY is not set
# CONFIG_AX88796B_PHY is not set
# CONFIG_BCM7XXX_PHY is not set
CONFIG_BCM87XX_PHY=m
CONFIG_BCM_NET_PHYLIB=m
CONFIG_BROADCOM_PHY=m
# CONFIG_BCM84881_PHY is not set
CONFIG_CICADA_PHY=m
# CONFIG_CORTINA_PHY is not set
CONFIG_DAVICOM_PHY=m
# CONFIG_DP83822_PHY is not set
# CONFIG_DP83TC811_PHY is not set
# CONFIG_DP83848_PHY is not set
# CONFIG_DP83867_PHY is not set
# CONFIG_DP83869_PHY is not set
CONFIG_FIXED_PHY=y
CONFIG_ICPLUS_PHY=m
# CONFIG_INTEL_XWAY_PHY is not set
CONFIG_LSI_ET1011C_PHY=m
CONFIG_LXT_PHY=m
CONFIG_MARVELL_PHY=m
# CONFIG_MARVELL_10G_PHY is not set
CONFIG_MICREL_PHY=m
# CONFIG_MICROCHIP_PHY is not set
# CONFIG_MICROCHIP_T1_PHY is not set
# CONFIG_MICROSEMI_PHY is not set
CONFIG_NATIONAL_PHY=m
# CONFIG_NXP_TJA11XX_PHY is not set
CONFIG_QSEMI_PHY=m
CONFIG_REALTEK_PHY=y
# CONFIG_RENESAS_PHY is not set
# CONFIG_ROCKCHIP_PHY is not set
CONFIG_SMSC_PHY=m
CONFIG_STE10XP=m
# CONFIG_TERANETICS_PHY is not set
CONFIG_VITESSE_PHY=m
# CONFIG_XILINX_GMII2RGMII is not set
# CONFIG_MICREL_KS8995MA is not set
# CONFIG_PLIP is not set
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 is not set
CONFIG_USB_NET_DRIVERS=y
CONFIG_USB_CATC=y
CONFIG_USB_KAWETH=y
CONFIG_USB_PEGASUS=y
CONFIG_USB_RTL8150=y
CONFIG_USB_RTL8152=m
# CONFIG_USB_LAN78XX is not set
CONFIG_USB_USBNET=y
CONFIG_USB_NET_AX8817X=y
CONFIG_USB_NET_AX88179_178A=m
CONFIG_USB_NET_CDCETHER=y
CONFIG_USB_NET_CDC_EEM=y
CONFIG_USB_NET_CDC_NCM=m
CONFIG_USB_NET_HUAWEI_CDC_NCM=m
CONFIG_USB_NET_CDC_MBIM=m
CONFIG_USB_NET_DM9601=y
# CONFIG_USB_NET_SR9700 is not set
# CONFIG_USB_NET_SR9800 is not set
CONFIG_USB_NET_SMSC75XX=y
CONFIG_USB_NET_SMSC95XX=y
CONFIG_USB_NET_GL620A=y
CONFIG_USB_NET_NET1080=y
CONFIG_USB_NET_PLUSB=y
CONFIG_USB_NET_MCS7830=y
CONFIG_USB_NET_RNDIS_HOST=y
CONFIG_USB_NET_CDC_SUBSET_ENABLE=y
CONFIG_USB_NET_CDC_SUBSET=y
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=y
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=y
CONFIG_USB_IPHETH=y
CONFIG_USB_SIERRA_NET=y
CONFIG_USB_VL600=m
# CONFIG_USB_NET_CH9200 is not set
# CONFIG_USB_NET_AQC111 is not set
CONFIG_WLAN=y
CONFIG_WLAN_VENDOR_ADMTEK=y
# CONFIG_ADM8211 is not set
CONFIG_ATH_COMMON=m
CONFIG_WLAN_VENDOR_ATH=y
# CONFIG_ATH_DEBUG is not set
# CONFIG_ATH5K is not set
# CONFIG_ATH5K_PCI is not set
CONFIG_ATH9K_HW=m
CONFIG_ATH9K_COMMON=m
CONFIG_ATH9K_BTCOEX_SUPPORT=y
# CONFIG_ATH9K is not set
CONFIG_ATH9K_HTC=m
# CONFIG_ATH9K_HTC_DEBUGFS is not set
# CONFIG_CARL9170 is not set
# CONFIG_ATH6KL is not set
# CONFIG_AR5523 is not set
# CONFIG_WIL6210 is not set
# CONFIG_ATH10K is not set
# CONFIG_WCN36XX is not set
CONFIG_WLAN_VENDOR_ATMEL=y
# CONFIG_ATMEL is not set
# CONFIG_AT76C50X_USB is not set
CONFIG_WLAN_VENDOR_BROADCOM=y
# CONFIG_B43 is not set
# CONFIG_B43LEGACY is not set
# CONFIG_BRCMSMAC is not set
# CONFIG_BRCMFMAC is not set
CONFIG_WLAN_VENDOR_CISCO=y
# CONFIG_AIRO is not set
CONFIG_WLAN_VENDOR_INTEL=y
# CONFIG_IPW2100 is not set
# CONFIG_IPW2200 is not set
CONFIG_IWLEGACY=m
CONFIG_IWL4965=m
CONFIG_IWL3945=m

#
# iwl3945 / iwl4965 Debugging Options
#
CONFIG_IWLEGACY_DEBUG=y
CONFIG_IWLEGACY_DEBUGFS=y
# end of iwl3945 / iwl4965 Debugging Options

CONFIG_IWLWIFI=m
CONFIG_IWLWIFI_LEDS=y
CONFIG_IWLDVM=m
CONFIG_IWLMVM=m
CONFIG_IWLWIFI_OPMODE_MODULAR=y
# CONFIG_IWLWIFI_BCAST_FILTERING is not set

#
# Debugging Options
#
# CONFIG_IWLWIFI_DEBUG is not set
CONFIG_IWLWIFI_DEBUGFS=y
# CONFIG_IWLWIFI_DEVICE_TRACING is not set
# end of Debugging Options

CONFIG_WLAN_VENDOR_INTERSIL=y
# CONFIG_HOSTAP is not set
# CONFIG_HERMES is not set
# CONFIG_P54_COMMON is not set
# CONFIG_PRISM54 is not set
CONFIG_WLAN_VENDOR_MARVELL=y
# CONFIG_LIBERTAS is not set
# CONFIG_LIBERTAS_THINFIRM is not set
# CONFIG_MWIFIEX is not set
# CONFIG_MWL8K is not set
CONFIG_WLAN_VENDOR_MEDIATEK=y
# CONFIG_MT7601U is not set
# CONFIG_MT76x0U is not set
# CONFIG_MT76x0E is not set
# CONFIG_MT76x2E is not set
# CONFIG_MT76x2U is not set
# CONFIG_MT7603E is not set
# CONFIG_MT7615E is not set
CONFIG_WLAN_VENDOR_RALINK=y
# CONFIG_RT2X00 is not set
CONFIG_WLAN_VENDOR_REALTEK=y
# CONFIG_RTL8180 is not set
# CONFIG_RTL8187 is not set
# CONFIG_RTL_CARDS is not set
# CONFIG_RTL8XXXU is not set
# CONFIG_RTW88 is not set
CONFIG_WLAN_VENDOR_RSI=y
# CONFIG_RSI_91X is not set
CONFIG_WLAN_VENDOR_ST=y
# CONFIG_CW1200 is not set
CONFIG_WLAN_VENDOR_TI=y
# CONFIG_WL1251 is not set
# CONFIG_WL12XX is not set
# CONFIG_WL18XX is not set
# CONFIG_WLCORE is not set
CONFIG_WLAN_VENDOR_ZYDAS=y
# CONFIG_USB_ZD1201 is not set
# CONFIG_ZD1211RW is not set
CONFIG_WLAN_VENDOR_QUANTENNA=y
# CONFIG_QTNFMAC_PCIE is not set
CONFIG_MAC80211_HWSIM=m
# CONFIG_USB_NET_RNDIS_WLAN is not set
# CONFIG_VIRT_WIFI is not set

#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
CONFIG_WAN=y
# CONFIG_LANMEDIA is not set
CONFIG_HDLC=m
CONFIG_HDLC_RAW=m
# CONFIG_HDLC_RAW_ETH is not set
CONFIG_HDLC_CISCO=m
CONFIG_HDLC_FR=m
CONFIG_HDLC_PPP=m

#
# X.25/LAPB support is disabled
#
# CONFIG_PCI200SYN is not set
# CONFIG_WANXL is not set
# CONFIG_PC300TOO is not set
# CONFIG_FARSYNC is not set
CONFIG_DLCI=m
CONFIG_DLCI_MAX=8
# CONFIG_SBNI is not set
CONFIG_IEEE802154_DRIVERS=m
CONFIG_IEEE802154_FAKELB=m
# CONFIG_IEEE802154_AT86RF230 is not set
# CONFIG_IEEE802154_MRF24J40 is not set
# CONFIG_IEEE802154_CC2520 is not set
# CONFIG_IEEE802154_ATUSB is not set
# CONFIG_IEEE802154_ADF7242 is not set
# CONFIG_IEEE802154_CA8210 is not set
# CONFIG_IEEE802154_MCR20A is not set
# CONFIG_IEEE802154_HWSIM is not set
CONFIG_XEN_NETDEV_FRONTEND=m
CONFIG_VMXNET3=m
CONFIG_FUJITSU_ES=m
CONFIG_HYPERV_NET=m
CONFIG_NETDEVSIM=m
CONFIG_NET_FAILOVER=m
CONFIG_ISDN=y
CONFIG_ISDN_CAPI=y
CONFIG_CAPI_TRACE=y
CONFIG_ISDN_CAPI_MIDDLEWARE=y
CONFIG_MISDN=m
CONFIG_MISDN_DSP=m
CONFIG_MISDN_L1OIP=m

#
# mISDN hardware drivers
#
CONFIG_MISDN_HFCPCI=m
CONFIG_MISDN_HFCMULTI=m
CONFIG_MISDN_HFCUSB=m
CONFIG_MISDN_AVMFRITZ=m
CONFIG_MISDN_SPEEDFAX=m
CONFIG_MISDN_INFINEON=m
CONFIG_MISDN_W6692=m
CONFIG_MISDN_NETJET=m
CONFIG_MISDN_HDLC=m
CONFIG_MISDN_IPAC=m
CONFIG_MISDN_ISAR=m
CONFIG_NVM=y
# CONFIG_NVM_PBLK is not set

#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_LEDS=y
CONFIG_INPUT_FF_MEMLESS=y
CONFIG_INPUT_POLLDEV=m
CONFIG_INPUT_SPARSEKMAP=m
# CONFIG_INPUT_MATRIXKMAP is not set

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADC is not set
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
# CONFIG_KEYBOARD_APPLESPI is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1050 is not set
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_DLINK_DIR685 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_GPIO_POLLED is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_MATRIX is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_SAMSUNG is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
# CONFIG_KEYBOARD_XTKBD is 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=y
CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y
CONFIG_MOUSE_PS2_SENTELIC=y
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
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 is not set
CONFIG_MOUSE_VSXXXAA=m
# CONFIG_MOUSE_GPIO is not set
CONFIG_MOUSE_SYNAPTICS_I2C=m
CONFIG_MOUSE_SYNAPTICS_USB=m
# CONFIG_INPUT_JOYSTICK is not set
CONFIG_INPUT_TABLET=y
CONFIG_TABLET_USB_ACECAD=m
CONFIG_TABLET_USB_AIPTEK=m
CONFIG_TABLET_USB_GTCO=m
# CONFIG_TABLET_USB_HANWANG is not set
CONFIG_TABLET_USB_KBTAB=m
# CONFIG_TABLET_USB_PEGASUS is not set
# CONFIG_TABLET_SERIAL_WACOM4 is not set
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_PROPERTIES=y
# CONFIG_TOUCHSCREEN_ADS7846 is not set
# CONFIG_TOUCHSCREEN_AD7877 is not set
# CONFIG_TOUCHSCREEN_AD7879 is not set
# CONFIG_TOUCHSCREEN_ADC is not set
# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
# CONFIG_TOUCHSCREEN_BU21013 is not set
# CONFIG_TOUCHSCREEN_BU21029 is not set
# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
# CONFIG_TOUCHSCREEN_DYNAPRO is not set
# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
# CONFIG_TOUCHSCREEN_EETI is not set
# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
# CONFIG_TOUCHSCREEN_EXC3000 is not set
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_GOODIX is not set
# CONFIG_TOUCHSCREEN_HIDEEP is not set
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_S6SY761 is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_EKTF2127 is not set
# CONFIG_TOUCHSCREEN_ELAN is not set
CONFIG_TOUCHSCREEN_ELO=m
CONFIG_TOUCHSCREEN_WACOM_W8001=m
CONFIG_TOUCHSCREEN_WACOM_I2C=m
# CONFIG_TOUCHSCREEN_MAX11801 is not set
# CONFIG_TOUCHSCREEN_MCS5000 is not set
# CONFIG_TOUCHSCREEN_MMS114 is not set
# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_MK712 is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_PIXCIR is not set
# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
# CONFIG_TOUCHSCREEN_WM97XX is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
# CONFIG_TOUCHSCREEN_TSC2004 is not set
# CONFIG_TOUCHSCREEN_TSC2005 is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
# CONFIG_TOUCHSCREEN_RM_TS is not set
# CONFIG_TOUCHSCREEN_SILEAD is not set
# CONFIG_TOUCHSCREEN_SIS_I2C is not set
# CONFIG_TOUCHSCREEN_ST1232 is not set
# CONFIG_TOUCHSCREEN_STMFTS is not set
# CONFIG_TOUCHSCREEN_SUR40 is not set
# CONFIG_TOUCHSCREEN_SURFACE3_SPI is not set
# CONFIG_TOUCHSCREEN_SX8654 is not set
# CONFIG_TOUCHSCREEN_TPS6507X is not set
# CONFIG_TOUCHSCREEN_ZET6223 is not set
# CONFIG_TOUCHSCREEN_ZFORCE is not set
# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
# CONFIG_TOUCHSCREEN_IQS5XX is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_E3X0_BUTTON is not set
# CONFIG_INPUT_MSM_VIBRATOR is not set
CONFIG_INPUT_PCSPKR=m
# CONFIG_INPUT_MMA8450 is not set
CONFIG_INPUT_APANEL=m
CONFIG_INPUT_GP2A=m
# CONFIG_INPUT_GPIO_BEEPER is not set
# CONFIG_INPUT_GPIO_DECODER is not set
# CONFIG_INPUT_GPIO_VIBRA is not set
CONFIG_INPUT_ATLAS_BTNS=m
CONFIG_INPUT_ATI_REMOTE2=m
CONFIG_INPUT_KEYSPAN_REMOTE=m
# CONFIG_INPUT_KXTJ9 is not set
CONFIG_INPUT_POWERMATE=m
CONFIG_INPUT_YEALINK=m
CONFIG_INPUT_CM109=m
CONFIG_INPUT_UINPUT=m
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_PWM_BEEPER is not set
# CONFIG_INPUT_PWM_VIBRA is not set
CONFIG_INPUT_GPIO_ROTARY_ENCODER=m
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IMS_PCU is not set
# CONFIG_INPUT_CMA3000 is not set
CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m
# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
# CONFIG_INPUT_DRV260X_HAPTICS is not set
# CONFIG_INPUT_DRV2665_HAPTICS is not set
# CONFIG_INPUT_DRV2667_HAPTICS is not set
CONFIG_RMI4_CORE=m
# CONFIG_RMI4_I2C is not set
# CONFIG_RMI4_SPI is not set
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 is not set
# CONFIG_RMI4_F54 is not set
# CONFIG_RMI4_F55 is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=m
CONFIG_SERIO_ALTERA_PS2=m
# CONFIG_SERIO_PS2MULT is not set
CONFIG_SERIO_ARC_PS2=m
CONFIG_HYPERV_KEYBOARD=m
# CONFIG_SERIO_GPIO_PS2 is not set
# CONFIG_USERIO is not set
# CONFIG_GAMEPORT is not set
# end of Hardware I/O ports
# end of Input device support

#
# Character devices
#
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 is not set
CONFIG_LDISC_AUTOLOAD=y

#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
CONFIG_SERIAL_8250_PNP=y
# CONFIG_SERIAL_8250_16550A_VARIANTS is not set
# CONFIG_SERIAL_8250_FINTEK is not set
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_DMA=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_EXAR=y
CONFIG_SERIAL_8250_NR_UARTS=32
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y
CONFIG_SERIAL_8250_DWLIB=y
CONFIG_SERIAL_8250_DW=y
# CONFIG_SERIAL_8250_RT288X is not set
CONFIG_SERIAL_8250_LPSS=y
CONFIG_SERIAL_8250_MID=y

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_MAX3100 is not set
# CONFIG_SERIAL_MAX310X is not set
# CONFIG_SERIAL_UARTLITE is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_SERIAL_JSM=m
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_IFX6X60 is not set
CONFIG_SERIAL_ARC=m
CONFIG_SERIAL_ARC_NR_PORTS=1
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
# CONFIG_SERIAL_FSL_LINFLEXUART is not set
# CONFIG_SERIAL_SPRD is not set
# end of Serial drivers

CONFIG_SERIAL_MCTRL_GPIO=y
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_ROCKETPORT is not set
CONFIG_CYCLADES=m
# CONFIG_CYZ_INTR is not set
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
CONFIG_SYNCLINK=m
CONFIG_SYNCLINKMP=m
CONFIG_SYNCLINK_GT=m
# CONFIG_ISI is not set
CONFIG_N_HDLC=m
CONFIG_N_GSM=m
CONFIG_NOZOMI=m
# CONFIG_NULL_TTY is not set
# CONFIG_TRACE_SINK is not set
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
CONFIG_HVC_XEN_FRONTEND=y
# CONFIG_SERIAL_DEV_BUS is not set
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is 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 is 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=m
CONFIG_HW_RANDOM_INTEL=m
CONFIG_HW_RANDOM_AMD=m
CONFIG_HW_RANDOM_VIA=m
CONFIG_HW_RANDOM_VIRTIO=y
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
CONFIG_DEVMEM=y
# CONFIG_DEVKMEM is not set
CONFIG_NVRAM=y
CONFIG_RAW_DRIVER=y
CONFIG_MAX_RAW_DEVS=8192
CONFIG_DEVPORT=y
CONFIG_HPET=y
CONFIG_HPET_MMAP=y
# CONFIG_HPET_MMAP_DEFAULT is not set
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 is not set
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 is not set
CONFIG_TCG_CRB=y
# CONFIG_TCG_VTPM_PROXY is not set
CONFIG_TCG_TIS_ST33ZP24=m
CONFIG_TCG_TIS_ST33ZP24_I2C=m
# CONFIG_TCG_TIS_ST33ZP24_SPI is not set
CONFIG_TELCLOCK=m
# CONFIG_XILLYBUS is not set
# end of Character devices

# CONFIG_RANDOM_TRUST_CPU is not set
# CONFIG_RANDOM_TRUST_BOOTLOADER is not set

#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
CONFIG_I2C_CHARDEV=m
CONFIG_I2C_MUX=m

#
# Multiplexer I2C Chip support
#
# CONFIG_I2C_MUX_GPIO is not set
# CONFIG_I2C_MUX_LTC4306 is not set
# CONFIG_I2C_MUX_PCA9541 is not set
# CONFIG_I2C_MUX_PCA954x is not set
# CONFIG_I2C_MUX_REG is not set
# CONFIG_I2C_MUX_MLXCPLD is not set
# end of Multiplexer I2C Chip support

CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_SMBUS=y
CONFIG_I2C_ALGOBIT=y
CONFIG_I2C_ALGOPCA=m

#
# I2C Hardware Bus support
#

#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
CONFIG_I2C_AMD756=m
CONFIG_I2C_AMD756_S4882=m
CONFIG_I2C_AMD8111=m
# CONFIG_I2C_AMD_MP2 is not set
CONFIG_I2C_I801=y
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 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
CONFIG_I2C_SIS96X=m
CONFIG_I2C_VIA=m
CONFIG_I2C_VIAPRO=m

#
# ACPI drivers
#
CONFIG_I2C_SCMI=m

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_CBUS_GPIO is not set
CONFIG_I2C_DESIGNWARE_CORE=m
CONFIG_I2C_DESIGNWARE_PLATFORM=m
# CONFIG_I2C_DESIGNWARE_SLAVE is not set
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_DESIGNWARE_BAYTRAIL is not set
# CONFIG_I2C_EMEV2 is not set
# CONFIG_I2C_GPIO is not set
# CONFIG_I2C_OCORES is not set
CONFIG_I2C_PCA_PLATFORM=m
CONFIG_I2C_SIMTEC=m
# CONFIG_I2C_XILINX is not set

#
# External I2C/SMBus adapter drivers
#
CONFIG_I2C_DIOLAN_U2C=m
CONFIG_I2C_PARPORT=m
# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
# CONFIG_I2C_TAOS_EVM is not set
CONFIG_I2C_TINY_USB=m
CONFIG_I2C_VIPERBOARD=m

#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_MLXCPLD is not set
# end of I2C Hardware Bus support

CONFIG_I2C_STUB=m
# CONFIG_I2C_SLAVE is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# end of I2C support

# CONFIG_I3C is not set
CONFIG_SPI=y
# CONFIG_SPI_DEBUG is not set
CONFIG_SPI_MASTER=y
# CONFIG_SPI_MEM is not set

#
# SPI Master Controller Drivers
#
# CONFIG_SPI_ALTERA is not set
# CONFIG_SPI_AXI_SPI_ENGINE is not set
# CONFIG_SPI_BITBANG is not set
# CONFIG_SPI_BUTTERFLY is not set
# CONFIG_SPI_CADENCE is not set
# CONFIG_SPI_DESIGNWARE is not set
# CONFIG_SPI_NXP_FLEXSPI is not set
# CONFIG_SPI_GPIO is not set
# CONFIG_SPI_LM70_LLP is not set
# CONFIG_SPI_OC_TINY is not set
CONFIG_SPI_PXA2XX=m
CONFIG_SPI_PXA2XX_PCI=m
# CONFIG_SPI_ROCKCHIP is not set
# CONFIG_SPI_SC18IS602 is not set
# CONFIG_SPI_SIFIVE is not set
# CONFIG_SPI_MXIC is not set
# CONFIG_SPI_XCOMM is not set
# CONFIG_SPI_XILINX is not set
# CONFIG_SPI_ZYNQMP_GQSPI is not set
# CONFIG_SPI_AMD is not set

#
# SPI Multiplexer support
#
# CONFIG_SPI_MUX is not set

#
# SPI Protocol Masters
#
# CONFIG_SPI_SPIDEV is not set
# CONFIG_SPI_LOOPBACK_TEST is not set
# CONFIG_SPI_TLE62X0 is not set
# CONFIG_SPI_SLAVE is not set
# CONFIG_SPMI is not set
# CONFIG_HSI is not set
CONFIG_PPS=y
# CONFIG_PPS_DEBUG is not set

#
# PPS clients support
#
# CONFIG_PPS_CLIENT_KTIMER is not set
CONFIG_PPS_CLIENT_LDISC=m
CONFIG_PPS_CLIENT_PARPORT=m
CONFIG_PPS_CLIENT_GPIO=m

#
# PPS generators support
#

#
# PTP clock support
#
CONFIG_PTP_1588_CLOCK=y
CONFIG_DP83640_PHY=m
# CONFIG_PTP_1588_CLOCK_INES is not set
CONFIG_PTP_1588_CLOCK_KVM=m
# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set
# CONFIG_PTP_1588_CLOCK_IDTCM is not set
# CONFIG_PTP_1588_CLOCK_VMW is not set
# end of PTP clock support

CONFIG_PINCTRL=y
CONFIG_PINMUX=y
CONFIG_PINCONF=y
CONFIG_GENERIC_PINCONF=y
# CONFIG_DEBUG_PINCTRL is not set
CONFIG_PINCTRL_AMD=m
# CONFIG_PINCTRL_MCP23S08 is not set
# CONFIG_PINCTRL_SX150X is not set
CONFIG_PINCTRL_BAYTRAIL=y
# CONFIG_PINCTRL_CHERRYVIEW is not set
# CONFIG_PINCTRL_LYNXPOINT is not set
CONFIG_PINCTRL_INTEL=m
# CONFIG_PINCTRL_BROXTON is not set
CONFIG_PINCTRL_CANNONLAKE=m
# CONFIG_PINCTRL_CEDARFORK is not set
CONFIG_PINCTRL_DENVERTON=m
CONFIG_PINCTRL_GEMINILAKE=m
# CONFIG_PINCTRL_ICELAKE is not set
CONFIG_PINCTRL_LEWISBURG=m
CONFIG_PINCTRL_SUNRISEPOINT=m
# CONFIG_PINCTRL_TIGERLAKE is not set
CONFIG_GPIOLIB=y
CONFIG_GPIOLIB_FASTPATH_LIMIT=512
CONFIG_GPIO_ACPI=y
CONFIG_GPIOLIB_IRQCHIP=y
# CONFIG_DEBUG_GPIO is not set
CONFIG_GPIO_SYSFS=y
CONFIG_GPIO_GENERIC=m

#
# Memory mapped GPIO drivers
#
CONFIG_GPIO_AMDPT=m
# CONFIG_GPIO_DWAPB is not set
# CONFIG_GPIO_EXAR is not set
# CONFIG_GPIO_GENERIC_PLATFORM is not set
CONFIG_GPIO_ICH=m
# CONFIG_GPIO_MB86S7X is not set
# CONFIG_GPIO_VX855 is not set
# CONFIG_GPIO_XILINX is not set
# CONFIG_GPIO_AMD_FCH is not set
# end of Memory mapped GPIO drivers

#
# Port-mapped I/O GPIO drivers
#
# CONFIG_GPIO_F7188X is not set
# CONFIG_GPIO_IT87 is not set
# CONFIG_GPIO_SCH is not set
# CONFIG_GPIO_SCH311X is not set
# CONFIG_GPIO_WINBOND is not set
# CONFIG_GPIO_WS16C48 is not set
# end of Port-mapped I/O GPIO drivers

#
# I2C GPIO expanders
#
# CONFIG_GPIO_ADP5588 is not set
# CONFIG_GPIO_MAX7300 is not set
# CONFIG_GPIO_MAX732X is not set
# CONFIG_GPIO_PCA953X is not set
# CONFIG_GPIO_PCF857X is not set
# CONFIG_GPIO_TPIC2810 is not set
# end of I2C GPIO expanders

#
# MFD GPIO expanders
#
# end of MFD GPIO expanders

#
# PCI GPIO expanders
#
# CONFIG_GPIO_AMD8111 is not set
# CONFIG_GPIO_ML_IOH is not set
# CONFIG_GPIO_PCI_IDIO_16 is not set
# CONFIG_GPIO_PCIE_IDIO_24 is not set
# CONFIG_GPIO_RDC321X is not set
# end of PCI GPIO expanders

#
# SPI GPIO expanders
#
# CONFIG_GPIO_MAX3191X is not set
# CONFIG_GPIO_MAX7301 is not set
# CONFIG_GPIO_MC33880 is not set
# CONFIG_GPIO_PISOSR is not set
# CONFIG_GPIO_XRA1403 is not set
# end of SPI GPIO expanders

#
# USB GPIO expanders
#
CONFIG_GPIO_VIPERBOARD=m
# end of USB GPIO expanders

# CONFIG_GPIO_MOCKUP is not set
# CONFIG_W1 is not set
# CONFIG_POWER_AVS is not set
CONFIG_POWER_RESET=y
# CONFIG_POWER_RESET_RESTART is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
CONFIG_POWER_SUPPLY_HWMON=y
# CONFIG_PDA_POWER is not set
# CONFIG_GENERIC_ADC_BATTERY is not set
# CONFIG_TEST_POWER is not set
# CONFIG_CHARGER_ADP5061 is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_CHARGER_SBS is not set
# CONFIG_MANAGER_SBS is not set
# CONFIG_BATTERY_BQ27XXX is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_GPIO is not set
# CONFIG_CHARGER_LT3651 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_BQ24257 is not set
# CONFIG_CHARGER_BQ24735 is not set
# CONFIG_CHARGER_BQ25890 is not set
CONFIG_CHARGER_SMB347=m
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
# CONFIG_CHARGER_RT9455 is not set
CONFIG_HWMON=y
CONFIG_HWMON_VID=m
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Native drivers
#
CONFIG_SENSORS_ABITUGURU=m
CONFIG_SENSORS_ABITUGURU3=m
# CONFIG_SENSORS_AD7314 is not set
CONFIG_SENSORS_AD7414=m
CONFIG_SENSORS_AD7418=m
CONFIG_SENSORS_ADM1021=m
CONFIG_SENSORS_ADM1025=m
CONFIG_SENSORS_ADM1026=m
CONFIG_SENSORS_ADM1029=m
CONFIG_SENSORS_ADM1031=m
# CONFIG_SENSORS_ADM1177 is not set
CONFIG_SENSORS_ADM9240=m
CONFIG_SENSORS_ADT7X10=m
# CONFIG_SENSORS_ADT7310 is not set
CONFIG_SENSORS_ADT7410=m
CONFIG_SENSORS_ADT7411=m
CONFIG_SENSORS_ADT7462=m
CONFIG_SENSORS_ADT7470=m
CONFIG_SENSORS_ADT7475=m
# CONFIG_SENSORS_AS370 is not set
CONFIG_SENSORS_ASC7621=m
# CONFIG_SENSORS_AXI_FAN_CONTROL is not set
CONFIG_SENSORS_K8TEMP=m
CONFIG_SENSORS_K10TEMP=m
CONFIG_SENSORS_FAM15H_POWER=m
# CONFIG_SENSORS_AMD_ENERGY is not set
CONFIG_SENSORS_APPLESMC=m
CONFIG_SENSORS_ASB100=m
# CONFIG_SENSORS_ASPEED is not set
CONFIG_SENSORS_ATXP1=m
# CONFIG_SENSORS_DRIVETEMP is not set
CONFIG_SENSORS_DS620=m
CONFIG_SENSORS_DS1621=m
CONFIG_SENSORS_DELL_SMM=m
CONFIG_SENSORS_I5K_AMB=m
CONFIG_SENSORS_F71805F=m
CONFIG_SENSORS_F71882FG=m
CONFIG_SENSORS_F75375S=m
CONFIG_SENSORS_FSCHMD=m
# CONFIG_SENSORS_FTSTEUTATES is not set
CONFIG_SENSORS_GL518SM=m
CONFIG_SENSORS_GL520SM=m
CONFIG_SENSORS_G760A=m
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_HIH6130 is not set
CONFIG_SENSORS_IBMAEM=m
CONFIG_SENSORS_IBMPEX=m
# CONFIG_SENSORS_IIO_HWMON is not set
# CONFIG_SENSORS_I5500 is not set
CONFIG_SENSORS_CORETEMP=m
CONFIG_SENSORS_IT87=m
CONFIG_SENSORS_JC42=m
# CONFIG_SENSORS_POWR1220 is not set
CONFIG_SENSORS_LINEAGE=m
# CONFIG_SENSORS_LTC2945 is not set
# CONFIG_SENSORS_LTC2947_I2C is not set
# CONFIG_SENSORS_LTC2947_SPI is not set
# CONFIG_SENSORS_LTC2990 is not set
CONFIG_SENSORS_LTC4151=m
CONFIG_SENSORS_LTC4215=m
# CONFIG_SENSORS_LTC4222 is not set
CONFIG_SENSORS_LTC4245=m
# CONFIG_SENSORS_LTC4260 is not set
CONFIG_SENSORS_LTC4261=m
# CONFIG_SENSORS_MAX1111 is not set
CONFIG_SENSORS_MAX16065=m
CONFIG_SENSORS_MAX1619=m
CONFIG_SENSORS_MAX1668=m
CONFIG_SENSORS_MAX197=m
# CONFIG_SENSORS_MAX31722 is not set
# CONFIG_SENSORS_MAX31730 is not set
# CONFIG_SENSORS_MAX6621 is not set
CONFIG_SENSORS_MAX6639=m
CONFIG_SENSORS_MAX6642=m
CONFIG_SENSORS_MAX6650=m
CONFIG_SENSORS_MAX6697=m
# CONFIG_SENSORS_MAX31790 is not set
CONFIG_SENSORS_MCP3021=m
# CONFIG_SENSORS_TC654 is not set
# CONFIG_SENSORS_ADCXX is not set
CONFIG_SENSORS_LM63=m
# CONFIG_SENSORS_LM70 is 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=m
# CONFIG_SENSORS_NCT6683 is not set
CONFIG_SENSORS_NCT6775=m
# CONFIG_SENSORS_NCT7802 is not set
# CONFIG_SENSORS_NCT7904 is not set
# CONFIG_SENSORS_NPCM7XX is not set
CONFIG_SENSORS_PCF8591=m
CONFIG_PMBUS=m
CONFIG_SENSORS_PMBUS=m
CONFIG_SENSORS_ADM1275=m
# CONFIG_SENSORS_BEL_PFE is not set
# CONFIG_SENSORS_IBM_CFFPS is not set
# CONFIG_SENSORS_INSPUR_IPSPS is not set
# CONFIG_SENSORS_IR35221 is not set
# CONFIG_SENSORS_IR38064 is not set
# CONFIG_SENSORS_IRPS5401 is not set
# CONFIG_SENSORS_ISL68137 is not set
CONFIG_SENSORS_LM25066=m
CONFIG_SENSORS_LTC2978=m
# CONFIG_SENSORS_LTC3815 is not set
CONFIG_SENSORS_MAX16064=m
# CONFIG_SENSORS_MAX16601 is not set
# CONFIG_SENSORS_MAX20730 is not set
# CONFIG_SENSORS_MAX20751 is not set
# CONFIG_SENSORS_MAX31785 is not set
CONFIG_SENSORS_MAX34440=m
CONFIG_SENSORS_MAX8688=m
# CONFIG_SENSORS_PXE1610 is not set
# CONFIG_SENSORS_TPS40422 is not set
# CONFIG_SENSORS_TPS53679 is not set
CONFIG_SENSORS_UCD9000=m
CONFIG_SENSORS_UCD9200=m
# CONFIG_SENSORS_XDPE122 is not set
CONFIG_SENSORS_ZL6100=m
CONFIG_SENSORS_SHT15=m
CONFIG_SENSORS_SHT21=m
# CONFIG_SENSORS_SHT3x is not set
# CONFIG_SENSORS_SHTC1 is not set
CONFIG_SENSORS_SIS5595=m
CONFIG_SENSORS_DME1737=m
CONFIG_SENSORS_EMC1403=m
# CONFIG_SENSORS_EMC2103 is not set
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 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_ADC128D818 is not set
CONFIG_SENSORS_ADS7828=m
# CONFIG_SENSORS_ADS7871 is not set
CONFIG_SENSORS_AMC6821=m
CONFIG_SENSORS_INA209=m
CONFIG_SENSORS_INA2XX=m
# CONFIG_SENSORS_INA3221 is not set
# CONFIG_SENSORS_TC74 is not set
CONFIG_SENSORS_THMC50=m
CONFIG_SENSORS_TMP102=m
# CONFIG_SENSORS_TMP103 is not set
# CONFIG_SENSORS_TMP108 is not set
CONFIG_SENSORS_TMP401=m
CONFIG_SENSORS_TMP421=m
# CONFIG_SENSORS_TMP513 is not set
CONFIG_SENSORS_VIA_CPUTEMP=m
CONFIG_SENSORS_VIA686A=m
CONFIG_SENSORS_VT1211=m
CONFIG_SENSORS_VT8231=m
# CONFIG_SENSORS_W83773G is not set
CONFIG_SENSORS_W83781D=m
CONFIG_SENSORS_W83791D=m
CONFIG_SENSORS_W83792D=m
CONFIG_SENSORS_W83793=m
CONFIG_SENSORS_W83795=m
# CONFIG_SENSORS_W83795_FANCTRL is not set
CONFIG_SENSORS_W83L785TS=m
CONFIG_SENSORS_W83L786NG=m
CONFIG_SENSORS_W83627HF=m
CONFIG_SENSORS_W83627EHF=m
# CONFIG_SENSORS_XGENE is not set

#
# ACPI drivers
#
CONFIG_SENSORS_ACPI_POWER=m
CONFIG_SENSORS_ATK0110=m
CONFIG_THERMAL=y
# CONFIG_THERMAL_STATISTICS is not set
CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
CONFIG_THERMAL_HWMON=y
CONFIG_THERMAL_WRITABLE_TRIPS=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is 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_CLOCK_THERMAL is not set
# CONFIG_DEVFREQ_THERMAL is not set
# CONFIG_THERMAL_EMULATION is not set

#
# Intel thermal drivers
#
CONFIG_INTEL_POWERCLAMP=m
CONFIG_X86_PKG_TEMP_THERMAL=m
CONFIG_INTEL_SOC_DTS_IOSF_CORE=m
# CONFIG_INTEL_SOC_DTS_THERMAL is not set

#
# ACPI INT340X thermal drivers
#
CONFIG_INT340X_THERMAL=m
CONFIG_ACPI_THERMAL_REL=m
# CONFIG_INT3406_THERMAL is not set
CONFIG_PROC_THERMAL_MMIO_RAPL=y
# end of ACPI INT340X thermal drivers

# CONFIG_INTEL_PCH_THERMAL is not set
# end of Intel thermal drivers

# CONFIG_GENERIC_ADC_THERMAL is not set
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
# CONFIG_WATCHDOG_NOWAYOUT is not set
CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
CONFIG_WATCHDOG_OPEN_TIMEOUT=0
CONFIG_WATCHDOG_SYSFS=y

#
# Watchdog Pretimeout Governors
#
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set

#
# Watchdog Device Drivers
#
CONFIG_SOFT_WATCHDOG=m
CONFIG_WDAT_WDT=m
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_ZIIRAVE_WATCHDOG is not set
# CONFIG_CADENCE_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
# CONFIG_MAX63XX_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
CONFIG_ALIM1535_WDT=m
CONFIG_ALIM7101_WDT=m
# CONFIG_EBC_C384_WDT is not set
CONFIG_F71808E_WDT=m
CONFIG_SP5100_TCO=m
CONFIG_SBC_FITPC2_WATCHDOG=m
# CONFIG_EUROTECH_WDT is not set
CONFIG_IB700_WDT=m
CONFIG_IBMASR=m
# CONFIG_WAFER_WDT is not set
CONFIG_I6300ESB_WDT=y
CONFIG_IE6XX_WDT=m
CONFIG_ITCO_WDT=y
CONFIG_ITCO_VENDOR_SUPPORT=y
CONFIG_IT8712F_WDT=m
CONFIG_IT87_WDT=m
CONFIG_HP_WATCHDOG=m
CONFIG_HPWDT_NMI_DECODING=y
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
CONFIG_NV_TCO=m
# CONFIG_60XX_WDT is not set
# CONFIG_CPU5_WDT is not set
CONFIG_SMSC_SCH311X_WDT=m
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_TQMX86_WDT is not set
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 is not set
CONFIG_INTEL_MEI_WDT=m
# CONFIG_NI903X_WDT is not set
# CONFIG_NIC7018_WDT is not set
# CONFIG_MEN_A21_WDT is not set
CONFIG_XEN_WDT=m

#
# PCI-based Watchdog Cards
#
CONFIG_PCIPCWATCHDOG=m
CONFIG_WDTPCI=m

#
# USB-based Watchdog Cards
#
CONFIG_USBPCWATCHDOG=m
CONFIG_SSB_POSSIBLE=y
CONFIG_SSB=m
CONFIG_SSB_SPROM=y
CONFIG_SSB_PCIHOST_POSSIBLE=y
CONFIG_SSB_PCIHOST=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_HOST_PCI_POSSIBLE=y
CONFIG_BCMA_HOST_PCI=y
# CONFIG_BCMA_HOST_SOC is not set
CONFIG_BCMA_DRIVER_PCI=y
CONFIG_BCMA_DRIVER_GMAC_CMN=y
CONFIG_BCMA_DRIVER_GPIO=y
# CONFIG_BCMA_DEBUG is not set

#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
# CONFIG_MFD_AS3711 is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_AAT2870_CORE is not set
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_BD9571MWV is not set
# CONFIG_MFD_AXP20X_I2C is not set
# CONFIG_MFD_MADERA is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_SPI is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_MFD_DA9062 is not set
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_DA9150 is not set
# CONFIG_MFD_DLN2 is not set
# CONFIG_MFD_MC13XXX_SPI is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_HTC_PASIC3 is not set
# CONFIG_HTC_I2CPLD is not set
# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
CONFIG_LPC_ICH=y
CONFIG_LPC_SCH=m
# CONFIG_INTEL_SOC_PMIC_CHTDC_TI is not set
CONFIG_MFD_INTEL_LPSS=y
CONFIG_MFD_INTEL_LPSS_ACPI=y
CONFIG_MFD_INTEL_LPSS_PCI=y
# CONFIG_MFD_INTEL_PMC_BXT is not set
# CONFIG_MFD_IQS62X is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_KEMPLD is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
# CONFIG_MFD_88PM860X is not set
# CONFIG_MFD_MAX14577 is not set
# CONFIG_MFD_MAX77693 is not set
# CONFIG_MFD_MAX77843 is not set
# CONFIG_MFD_MAX8907 is not set
# CONFIG_MFD_MAX8925 is not set
# CONFIG_MFD_MAX8997 is not set
# CONFIG_MFD_MAX8998 is not set
# CONFIG_MFD_MT6397 is not set
# CONFIG_MFD_MENF21BMC is not set
# CONFIG_EZX_PCAP is not set
CONFIG_MFD_VIPERBOARD=m
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_UCB1400_CORE is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RT5033 is not set
# CONFIG_MFD_RC5T583 is not set
# CONFIG_MFD_SEC_CORE is not set
# CONFIG_MFD_SI476X_CORE is not set
CONFIG_MFD_SM501=m
CONFIG_MFD_SM501_GPIO=y
# CONFIG_MFD_SKY81452 is not set
# CONFIG_MFD_SMSC is not set
# CONFIG_ABX500_CORE is not set
# CONFIG_MFD_SYSCON is not set
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_MFD_LP3943 is not set
# CONFIG_MFD_LP8788 is not set
# CONFIG_MFD_TI_LMU is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65086 is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_TI_LP873X is not set
# CONFIG_MFD_TPS6586X is not set
# CONFIG_MFD_TPS65910 is not set
# CONFIG_MFD_TPS65912_I2C is not set
# CONFIG_MFD_TPS65912_SPI is not set
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_TWL6040_CORE is not set
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TQMX86 is not set
CONFIG_MFD_VX855=m
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_ARIZONA_SPI is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_WM831X_I2C is not set
# CONFIG_MFD_WM831X_SPI is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
# end of Multifunction device drivers

# CONFIG_REGULATOR is not set
CONFIG_RC_CORE=m
CONFIG_RC_MAP=m
# CONFIG_LIRC is not set
CONFIG_RC_DECODERS=y
CONFIG_IR_NEC_DECODER=m
CONFIG_IR_RC5_DECODER=m
CONFIG_IR_RC6_DECODER=m
CONFIG_IR_JVC_DECODER=m
CONFIG_IR_SONY_DECODER=m
CONFIG_IR_SANYO_DECODER=m
# CONFIG_IR_SHARP_DECODER is not set
CONFIG_IR_MCE_KBD_DECODER=m
# CONFIG_IR_XMP_DECODER is not set
# CONFIG_IR_IMON_DECODER is not set
# CONFIG_IR_RCMM_DECODER is not set
CONFIG_RC_DEVICES=y
CONFIG_RC_ATI_REMOTE=m
CONFIG_IR_ENE=m
CONFIG_IR_IMON=m
# CONFIG_IR_IMON_RAW is not set
CONFIG_IR_MCEUSB=m
CONFIG_IR_ITE_CIR=m
CONFIG_IR_FINTEK=m
CONFIG_IR_NUVOTON=m
CONFIG_IR_REDRAT3=m
CONFIG_IR_STREAMZAP=m
CONFIG_IR_WINBOND_CIR=m
# CONFIG_IR_IGORPLUGUSB is not set
CONFIG_IR_IGUANA=m
CONFIG_IR_TTUSBIR=m
# CONFIG_RC_LOOPBACK is not set
# CONFIG_IR_SERIAL is not set
# CONFIG_IR_SIR is not set
# CONFIG_RC_XBOX_DVD is not set
CONFIG_MEDIA_SUPPORT=m

#
# Multimedia core support
#
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 is not set
# CONFIG_MEDIA_CEC_SUPPORT is not set
CONFIG_MEDIA_CONTROLLER=y
CONFIG_MEDIA_CONTROLLER_DVB=y
CONFIG_VIDEO_DEV=m
# CONFIG_VIDEO_V4L2_SUBDEV_API is not set
CONFIG_VIDEO_V4L2=m
CONFIG_VIDEO_V4L2_I2C=y
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEO_TUNER=m
CONFIG_VIDEOBUF_GEN=m
CONFIG_VIDEOBUF_DMA_SG=m
CONFIG_VIDEOBUF_VMALLOC=m
CONFIG_DVB_CORE=m
# CONFIG_DVB_MMAP is not set
CONFIG_DVB_NET=y
CONFIG_TTPCI_EEPROM=m
CONFIG_DVB_MAX_ADAPTERS=8
CONFIG_DVB_DYNAMIC_MINORS=y
# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set
# CONFIG_DVB_ULE_DEBUG is not set

#
# Media drivers
#
CONFIG_MEDIA_USB_SUPPORT=y

#
# Webcam devices
#
CONFIG_USB_VIDEO_CLASS=m
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
CONFIG_USB_GSPCA=m
CONFIG_USB_M5602=m
CONFIG_USB_STV06XX=m
CONFIG_USB_GL860=m
CONFIG_USB_GSPCA_BENQ=m
CONFIG_USB_GSPCA_CONEX=m
CONFIG_USB_GSPCA_CPIA1=m
# CONFIG_USB_GSPCA_DTCS033 is 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 is not set
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_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_SPCA1528=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 is 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 is 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_PWC=m
# CONFIG_USB_PWC_DEBUG is not set
CONFIG_USB_PWC_INPUT_EVDEV=y
# CONFIG_VIDEO_CPIA2 is not set
CONFIG_USB_ZR364XX=m
CONFIG_USB_STKWEBCAM=m
CONFIG_USB_S2255=m
# CONFIG_VIDEO_USBTV is not set

#
# Analog TV USB devices
#
CONFIG_VIDEO_PVRUSB2=m
CONFIG_VIDEO_PVRUSB2_SYSFS=y
CONFIG_VIDEO_PVRUSB2_DVB=y
# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set
CONFIG_VIDEO_HDPVR=m
# CONFIG_VIDEO_STK1160_COMMON is not set
# CONFIG_VIDEO_GO7007 is not set

#
# Analog/digital TV USB devices
#
CONFIG_VIDEO_AU0828=m
CONFIG_VIDEO_AU0828_V4L2=y
# CONFIG_VIDEO_AU0828_RC is not set
CONFIG_VIDEO_CX231XX=m
CONFIG_VIDEO_CX231XX_RC=y
CONFIG_VIDEO_CX231XX_ALSA=m
CONFIG_VIDEO_CX231XX_DVB=m
CONFIG_VIDEO_TM6000=m
CONFIG_VIDEO_TM6000_ALSA=m
CONFIG_VIDEO_TM6000_DVB=m

#
# Digital TV USB devices
#
CONFIG_DVB_USB=m
# CONFIG_DVB_USB_DEBUG is not set
CONFIG_DVB_USB_DIB3000MC=m
CONFIG_DVB_USB_A800=m
CONFIG_DVB_USB_DIBUSB_MB=m
# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set
CONFIG_DVB_USB_DIBUSB_MC=m
CONFIG_DVB_USB_DIB0700=m
CONFIG_DVB_USB_UMT_010=m
CONFIG_DVB_USB_CXUSB=m
# CONFIG_DVB_USB_CXUSB_ANALOG is not set
CONFIG_DVB_USB_M920X=m
CONFIG_DVB_USB_DIGITV=m
CONFIG_DVB_USB_VP7045=m
CONFIG_DVB_USB_VP702X=m
CONFIG_DVB_USB_GP8PSK=m
CONFIG_DVB_USB_NOVA_T_USB2=m
CONFIG_DVB_USB_TTUSB2=m
CONFIG_DVB_USB_DTT200U=m
CONFIG_DVB_USB_OPERA1=m
CONFIG_DVB_USB_AF9005=m
CONFIG_DVB_USB_AF9005_REMOTE=m
CONFIG_DVB_USB_PCTV452E=m
CONFIG_DVB_USB_DW2102=m
CONFIG_DVB_USB_CINERGY_T2=m
CONFIG_DVB_USB_DTV5100=m
CONFIG_DVB_USB_AZ6027=m
CONFIG_DVB_USB_TECHNISAT_USB2=m
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_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_DVBSKY is not set
# CONFIG_DVB_USB_ZD1301 is not set
CONFIG_DVB_TTUSB_BUDGET=m
CONFIG_DVB_TTUSB_DEC=m
CONFIG_SMS_USB_DRV=m
CONFIG_DVB_B2C2_FLEXCOP_USB=m
# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set
# CONFIG_DVB_AS102 is not set

#
# Webcam, TV (analog/digital) USB devices
#
CONFIG_VIDEO_EM28XX=m
# CONFIG_VIDEO_EM28XX_V4L2 is not set
CONFIG_VIDEO_EM28XX_ALSA=m
CONFIG_VIDEO_EM28XX_DVB=m
CONFIG_VIDEO_EM28XX_RC=m
CONFIG_MEDIA_PCI_SUPPORT=y

#
# Media capture support
#
# CONFIG_VIDEO_MEYE is not set
# CONFIG_VIDEO_SOLO6X10 is not set
# CONFIG_VIDEO_TW5864 is not set
# CONFIG_VIDEO_TW68 is not set
# CONFIG_VIDEO_TW686X is not set

#
# Media capture/analog TV support
#
CONFIG_VIDEO_IVTV=m
# CONFIG_VIDEO_IVTV_DEPRECATED_IOCTLS is not set
# CONFIG_VIDEO_IVTV_ALSA is not set
CONFIG_VIDEO_FB_IVTV=m
# CONFIG_VIDEO_FB_IVTV_FORCE_PAT is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_MXB is not set
# CONFIG_VIDEO_DT3155 is not set

#
# Media capture/analog/hybrid TV support
#
CONFIG_VIDEO_CX18=m
CONFIG_VIDEO_CX18_ALSA=m
CONFIG_VIDEO_CX23885=m
CONFIG_MEDIA_ALTERA_CI=m
# CONFIG_VIDEO_CX25821 is not set
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_BT848=m
CONFIG_DVB_BT8XX=m
CONFIG_VIDEO_SAA7134=m
CONFIG_VIDEO_SAA7134_ALSA=m
CONFIG_VIDEO_SAA7134_RC=y
CONFIG_VIDEO_SAA7134_DVB=m
CONFIG_VIDEO_SAA7164=m

#
# Media digital TV PCI Adapters
#
CONFIG_DVB_AV7110_IR=y
CONFIG_DVB_AV7110=m
CONFIG_DVB_AV7110_OSD=y
CONFIG_DVB_BUDGET_CORE=m
CONFIG_DVB_BUDGET=m
CONFIG_DVB_BUDGET_CI=m
CONFIG_DVB_BUDGET_AV=m
CONFIG_DVB_BUDGET_PATCH=m
CONFIG_DVB_B2C2_FLEXCOP_PCI=m
# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set
CONFIG_DVB_PLUTO2=m
CONFIG_DVB_DM1105=m
CONFIG_DVB_PT1=m
# CONFIG_DVB_PT3 is not set
CONFIG_MANTIS_CORE=m
CONFIG_DVB_MANTIS=m
CONFIG_DVB_HOPPER=m
CONFIG_DVB_NGENE=m
CONFIG_DVB_DDBRIDGE=m
# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set
# CONFIG_DVB_SMIPCIE is not set
# CONFIG_DVB_NETUP_UNIDVB is not set
# CONFIG_V4L_PLATFORM_DRIVERS is not set
# CONFIG_V4L_MEM2MEM_DRIVERS is not set
# CONFIG_V4L_TEST_DRIVERS is not set
# CONFIG_DVB_PLATFORM_DRIVERS is not set

#
# Supported MMC/SDIO adapters
#
CONFIG_SMS_SDIO_DRV=m
CONFIG_RADIO_ADAPTERS=y
CONFIG_RADIO_TEA575X=m
# CONFIG_RADIO_SI470X is not set
# CONFIG_RADIO_SI4713 is not set
# CONFIG_USB_MR800 is not set
# CONFIG_USB_DSBR is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_SHARK is not set
# CONFIG_RADIO_SHARK2 is not set
# CONFIG_USB_KEENE is not set
# CONFIG_USB_RAREMONO is not set
# CONFIG_USB_MA901 is not set
# CONFIG_RADIO_TEA5764 is not set
# CONFIG_RADIO_SAA7706H is not set
# CONFIG_RADIO_TEF6862 is not set
# CONFIG_RADIO_WL1273 is not set

#
# Texas Instruments WL128x FM driver (ST based)
#
# end of Texas Instruments WL128x FM driver (ST based)

#
# Supported FireWire (IEEE 1394) Adapters
#
CONFIG_DVB_FIREDTV=m
CONFIG_DVB_FIREDTV_INPUT=y
CONFIG_MEDIA_COMMON_OPTIONS=y

#
# common driver options
#
CONFIG_VIDEO_CX2341X=m
CONFIG_VIDEO_TVEEPROM=m
CONFIG_CYPRESS_FIRMWARE=m
CONFIG_VIDEOBUF2_CORE=m
CONFIG_VIDEOBUF2_V4L2=m
CONFIG_VIDEOBUF2_MEMOPS=m
CONFIG_VIDEOBUF2_VMALLOC=m
CONFIG_VIDEOBUF2_DMA_SG=m
CONFIG_VIDEOBUF2_DVB=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_SMS_SIANO_DEBUGFS is not set

#
# Media ancillary drivers (tuners, sensors, i2c, spi, frontends)
#
CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
CONFIG_MEDIA_HIDE_ANCILLARY_SUBDRV=y
CONFIG_MEDIA_ATTACH=y
CONFIG_VIDEO_IR_I2C=m

#
# I2C drivers hidden by 'Autoselect ancillary drivers'
#

#
# Audio decoders, processors and mixers
#
CONFIG_VIDEO_TVAUDIO=m
CONFIG_VIDEO_TDA7432=m
CONFIG_VIDEO_MSP3400=m
CONFIG_VIDEO_CS3308=m
CONFIG_VIDEO_CS5345=m
CONFIG_VIDEO_CS53L32A=m
CONFIG_VIDEO_WM8775=m
CONFIG_VIDEO_WM8739=m
CONFIG_VIDEO_VP27SMPX=m

#
# RDS decoders
#
CONFIG_VIDEO_SAA6588=m

#
# Video decoders
#
CONFIG_VIDEO_SAA711X=m

#
# Video and audio decoders
#
CONFIG_VIDEO_SAA717X=m
CONFIG_VIDEO_CX25840=m

#
# Video encoders
#
CONFIG_VIDEO_SAA7127=m

#
# Camera sensor devices
#

#
# Lens drivers
#

#
# Flash devices
#

#
# Video improvement chips
#
CONFIG_VIDEO_UPD64031A=m
CONFIG_VIDEO_UPD64083=m

#
# Audio/Video compression chips
#
CONFIG_VIDEO_SAA6752HS=m

#
# SDR tuner chips
#

#
# Miscellaneous helper chips
#
CONFIG_VIDEO_M52790=m

#
# SPI drivers hidden by 'Autoselect ancillary drivers'
#

#
# Media SPI Adapters
#
# CONFIG_CXD2880_SPI_DRV is not set
# end of Media SPI Adapters

CONFIG_MEDIA_TUNER=m

#
# Tuner drivers hidden by 'Autoselect ancillary drivers'
#
CONFIG_MEDIA_TUNER_SIMPLE=m
CONFIG_MEDIA_TUNER_TDA18250=m
CONFIG_MEDIA_TUNER_TDA8290=m
CONFIG_MEDIA_TUNER_TDA827X=m
CONFIG_MEDIA_TUNER_TDA18271=m
CONFIG_MEDIA_TUNER_TDA9887=m
CONFIG_MEDIA_TUNER_TEA5761=m
CONFIG_MEDIA_TUNER_TEA5767=m
CONFIG_MEDIA_TUNER_MT20XX=m
CONFIG_MEDIA_TUNER_MT2060=m
CONFIG_MEDIA_TUNER_MT2063=m
CONFIG_MEDIA_TUNER_MT2266=m
CONFIG_MEDIA_TUNER_MT2131=m
CONFIG_MEDIA_TUNER_QT1010=m
CONFIG_MEDIA_TUNER_XC2028=m
CONFIG_MEDIA_TUNER_XC5000=m
CONFIG_MEDIA_TUNER_XC4000=m
CONFIG_MEDIA_TUNER_MXL5005S=m
CONFIG_MEDIA_TUNER_MXL5007T=m
CONFIG_MEDIA_TUNER_MC44S803=m
CONFIG_MEDIA_TUNER_MAX2165=m
CONFIG_MEDIA_TUNER_TDA18218=m
CONFIG_MEDIA_TUNER_FC0011=m
CONFIG_MEDIA_TUNER_FC0012=m
CONFIG_MEDIA_TUNER_FC0013=m
CONFIG_MEDIA_TUNER_TDA18212=m
CONFIG_MEDIA_TUNER_E4000=m
CONFIG_MEDIA_TUNER_FC2580=m
CONFIG_MEDIA_TUNER_M88RS6000T=m
CONFIG_MEDIA_TUNER_TUA9001=m
CONFIG_MEDIA_TUNER_SI2157=m
CONFIG_MEDIA_TUNER_IT913X=m
CONFIG_MEDIA_TUNER_R820T=m
CONFIG_MEDIA_TUNER_QM1D1C0042=m
CONFIG_MEDIA_TUNER_QM1D1B0004=m

#
# DVB Frontend drivers hidden by 'Autoselect ancillary drivers'
#

#
# Multistandard (satellite) frontends
#
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_MXL5XX=m
CONFIG_DVB_M88DS3103=m

#
# Multistandard (cable + terrestrial) frontends
#
CONFIG_DVB_DRXK=m
CONFIG_DVB_TDA18271C2DD=m
CONFIG_DVB_SI2165=m
CONFIG_DVB_MN88472=m
CONFIG_DVB_MN88473=m

#
# DVB-S (satellite) frontends
#
CONFIG_DVB_CX24110=m
CONFIG_DVB_CX24123=m
CONFIG_DVB_MT312=m
CONFIG_DVB_ZL10036=m
CONFIG_DVB_ZL10039=m
CONFIG_DVB_S5H1420=m
CONFIG_DVB_STV0288=m
CONFIG_DVB_STB6000=m
CONFIG_DVB_STV0299=m
CONFIG_DVB_STV6110=m
CONFIG_DVB_STV0900=m
CONFIG_DVB_TDA8083=m
CONFIG_DVB_TDA10086=m
CONFIG_DVB_TDA8261=m
CONFIG_DVB_VES1X93=m
CONFIG_DVB_TUNER_ITD1000=m
CONFIG_DVB_TUNER_CX24113=m
CONFIG_DVB_TDA826X=m
CONFIG_DVB_TUA6100=m
CONFIG_DVB_CX24116=m
CONFIG_DVB_CX24117=m
CONFIG_DVB_CX24120=m
CONFIG_DVB_SI21XX=m
CONFIG_DVB_TS2020=m
CONFIG_DVB_DS3000=m
CONFIG_DVB_MB86A16=m
CONFIG_DVB_TDA10071=m

#
# DVB-T (terrestrial) frontends
#
CONFIG_DVB_SP8870=m
CONFIG_DVB_SP887X=m
CONFIG_DVB_CX22700=m
CONFIG_DVB_CX22702=m
CONFIG_DVB_DRXD=m
CONFIG_DVB_L64781=m
CONFIG_DVB_TDA1004X=m
CONFIG_DVB_NXT6000=m
CONFIG_DVB_MT352=m
CONFIG_DVB_ZL10353=m
CONFIG_DVB_DIB3000MB=m
CONFIG_DVB_DIB3000MC=m
CONFIG_DVB_DIB7000M=m
CONFIG_DVB_DIB7000P=m
CONFIG_DVB_TDA10048=m
CONFIG_DVB_AF9013=m
CONFIG_DVB_EC100=m
CONFIG_DVB_STV0367=m
CONFIG_DVB_CXD2820R=m
CONFIG_DVB_CXD2841ER=m
CONFIG_DVB_RTL2830=m
CONFIG_DVB_RTL2832=m
CONFIG_DVB_SI2168=m
CONFIG_DVB_GP8PSK_FE=m

#
# DVB-C (cable) frontends
#
CONFIG_DVB_VES1820=m
CONFIG_DVB_TDA10021=m
CONFIG_DVB_TDA10023=m
CONFIG_DVB_STV0297=m

#
# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
#
CONFIG_DVB_NXT200X=m
CONFIG_DVB_OR51211=m
CONFIG_DVB_OR51132=m
CONFIG_DVB_BCM3510=m
CONFIG_DVB_LGDT330X=m
CONFIG_DVB_LGDT3305=m
CONFIG_DVB_LGDT3306A=m
CONFIG_DVB_LG2160=m
CONFIG_DVB_S5H1409=m
CONFIG_DVB_AU8522=m
CONFIG_DVB_AU8522_DTV=m
CONFIG_DVB_AU8522_V4L=m
CONFIG_DVB_S5H1411=m

#
# ISDB-T (terrestrial) frontends
#
CONFIG_DVB_S921=m
CONFIG_DVB_DIB8000=m
CONFIG_DVB_MB86A20S=m

#
# ISDB-S (satellite) & ISDB-T (terrestrial) frontends
#
CONFIG_DVB_TC90522=m

#
# Digital terrestrial only tuners/PLL
#
CONFIG_DVB_PLL=m
CONFIG_DVB_TUNER_DIB0070=m
CONFIG_DVB_TUNER_DIB0090=m

#
# SEC control devices for DVB-S
#
CONFIG_DVB_DRX39XYJ=m
CONFIG_DVB_LNBH25=m
CONFIG_DVB_LNBP21=m
CONFIG_DVB_LNBP22=m
CONFIG_DVB_ISL6405=m
CONFIG_DVB_ISL6421=m
CONFIG_DVB_ISL6423=m
CONFIG_DVB_A8293=m
CONFIG_DVB_LGS8GXX=m
CONFIG_DVB_ATBM8830=m
CONFIG_DVB_TDA665x=m
CONFIG_DVB_IX2505V=m
CONFIG_DVB_M88RS2000=m
CONFIG_DVB_AF9033=m

#
# Common Interface (EN50221) controller drivers
#
CONFIG_DVB_CXD2099=m

#
# Tools to develop new frontends
#
CONFIG_DVB_DUMMY_FE=m

#
# Graphics support
#
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_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=64
CONFIG_VGA_SWITCHEROO=y
CONFIG_DRM=m
CONFIG_DRM_MIPI_DSI=y
CONFIG_DRM_DP_AUX_CHARDEV=y
# CONFIG_DRM_DEBUG_SELFTEST is not set
CONFIG_DRM_KMS_HELPER=m
CONFIG_DRM_KMS_FB_HELPER=y
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
CONFIG_DRM_LOAD_EDID_FIRMWARE=y
# CONFIG_DRM_DP_CEC is not set
CONFIG_DRM_TTM=m
CONFIG_DRM_TTM_DMA_PAGE_POOL=y
CONFIG_DRM_VRAM_HELPER=m
CONFIG_DRM_TTM_HELPER=m
CONFIG_DRM_GEM_SHMEM_HELPER=y

#
# I2C encoder or helper chips
#
CONFIG_DRM_I2C_CH7006=m
CONFIG_DRM_I2C_SIL164=m
# CONFIG_DRM_I2C_NXP_TDA998X is not set
# CONFIG_DRM_I2C_NXP_TDA9950 is not set
# end of I2C encoder or helper chips

#
# ARM devices
#
# end of ARM devices

# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_AMDGPU is not set
# CONFIG_DRM_NOUVEAU is 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_GVT=y
CONFIG_DRM_I915_GVT_KVMGT=m
CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND=250
CONFIG_DRM_I915_HEARTBEAT_INTERVAL=2500
CONFIG_DRM_I915_PREEMPT_TIMEOUT=640
CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT=8000
CONFIG_DRM_I915_STOP_TIMEOUT=100
CONFIG_DRM_I915_TIMESLICE_DURATION=1
CONFIG_DRM_VGEM=m
# CONFIG_DRM_VKMS is not set
CONFIG_DRM_VMWGFX=m
CONFIG_DRM_VMWGFX_FBCON=y
CONFIG_DRM_GMA500=m
CONFIG_DRM_GMA600=y
CONFIG_DRM_GMA3600=y
CONFIG_DRM_UDL=m
CONFIG_DRM_AST=m
CONFIG_DRM_MGAG200=m
CONFIG_DRM_CIRRUS_QEMU=m
CONFIG_DRM_QXL=m
CONFIG_DRM_BOCHS=m
CONFIG_DRM_VIRTIO_GPU=m
CONFIG_DRM_PANEL=y

#
# Display Panels
#
# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
# end of Display Panels

CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y

#
# Display Interface Bridges
#
# CONFIG_DRM_ANALOGIX_ANX78XX is not set
# end of Display Interface Bridges

# CONFIG_DRM_ETNAVIV is not set
# CONFIG_DRM_GM12U320 is not set
# CONFIG_TINYDRM_HX8357D is not set
# CONFIG_TINYDRM_ILI9225 is not set
# CONFIG_TINYDRM_ILI9341 is not set
# CONFIG_TINYDRM_ILI9486 is not set
# CONFIG_TINYDRM_MI0283QT is not set
# CONFIG_TINYDRM_REPAPER is not set
# CONFIG_TINYDRM_ST7586 is not set
# CONFIG_TINYDRM_ST7735R is not set
# CONFIG_DRM_XEN is not set
# CONFIG_DRM_VBOXVIDEO is not set
# CONFIG_DRM_LEGACY is not set
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y

#
# Frame buffer Devices
#
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=m
CONFIG_FB_DEFERRED_IO=y
# CONFIG_FB_MODE_HELPERS is not set
CONFIG_FB_TILEBLITTING=y

#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
CONFIG_FB_VESA=y
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SM501 is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_XEN_FBDEV_FRONTEND is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
CONFIG_FB_HYPERV=m
# CONFIG_FB_SIMPLE is not set
# CONFIG_FB_SM712 is not set
# end of Frame buffer Devices

#
# Backlight & LCD device support
#
CONFIG_LCD_CLASS_DEVICE=m
# CONFIG_LCD_L4F00242T03 is not set
# CONFIG_LCD_LMS283GF05 is not set
# CONFIG_LCD_LTV350QV is not set
# CONFIG_LCD_ILI922X is not set
# CONFIG_LCD_ILI9320 is not set
# CONFIG_LCD_TDO24M is not set
# CONFIG_LCD_VGG2432A4 is not set
CONFIG_LCD_PLATFORM=m
# CONFIG_LCD_AMS369FG06 is not set
# CONFIG_LCD_LMS501KF03 is not set
# CONFIG_LCD_HX8357 is not set
# CONFIG_LCD_OTM3225A is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_GENERIC is not set
# CONFIG_BACKLIGHT_PWM is not set
CONFIG_BACKLIGHT_APPLE=m
# CONFIG_BACKLIGHT_QCOM_WLED is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_LM3630A is not set
# CONFIG_BACKLIGHT_LM3639 is not set
CONFIG_BACKLIGHT_LP855X=m
# CONFIG_BACKLIGHT_GPIO is not set
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
# CONFIG_BACKLIGHT_ARCXCNN is not set
# end of Backlight & LCD device support

CONFIG_HDMI=y

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
# CONFIG_VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_DUMMY_CONSOLE_COLUMNS=80
CONFIG_DUMMY_CONSOLE_ROWS=25
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set
# end of Console display driver support

CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y
# end of Graphics support

CONFIG_SOUND=m
CONFIG_SOUND_OSS_CORE=y
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_PCM_ELD=y
CONFIG_SND_HWDEP=m
CONFIG_SND_SEQ_DEVICE=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_COMPRESS_OFFLOAD=m
CONFIG_SND_JACK=y
CONFIG_SND_JACK_INPUT_DEV=y
CONFIG_SND_OSSEMUL=y
# CONFIG_SND_MIXER_OSS is not set
# CONFIG_SND_PCM_OSS is 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 is not set
CONFIG_SND_PROC_FS=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
CONFIG_SND_VMASTER=y
CONFIG_SND_DMA_SGBUF=y
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_MPU401_UART=m
CONFIG_SND_OPL3_LIB=m
CONFIG_SND_OPL3_LIB_SEQ=m
CONFIG_SND_VX_LIB=m
CONFIG_SND_AC97_CODEC=m
CONFIG_SND_DRIVERS=y
CONFIG_SND_PCSP=m
CONFIG_SND_DUMMY=m
CONFIG_SND_ALOOP=m
CONFIG_SND_VIRMIDI=m
CONFIG_SND_MTPAV=m
# CONFIG_SND_MTS64 is not set
# CONFIG_SND_SERIAL_U16550 is not set
CONFIG_SND_MPU401=m
# CONFIG_SND_PORTMAN2X4 is not set
CONFIG_SND_AC97_POWER_SAVE=y
CONFIG_SND_AC97_POWER_SAVE_DEFAULT=5
CONFIG_SND_PCI=y
CONFIG_SND_AD1889=m
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
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 is not set
# CONFIG_SND_AZT3328 is not set
CONFIG_SND_BT87X=m
# CONFIG_SND_BT87X_OVERCLOCK is not set
CONFIG_SND_CA0106=m
CONFIG_SND_CMIPCI=m
CONFIG_SND_OXYGEN_LIB=m
CONFIG_SND_OXYGEN=m
# CONFIG_SND_CS4281 is not set
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 is not set
CONFIG_SND_ES1968=m
CONFIG_SND_ES1968_INPUT=y
CONFIG_SND_ES1968_RADIO=y
# CONFIG_SND_FM801 is 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=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 is not set
CONFIG_SND_PCXHR=m
# CONFIG_SND_RIPTIDE is not set
CONFIG_SND_RME32=m
CONFIG_SND_RME96=m
CONFIG_SND_RME9652=m
# CONFIG_SND_SONICVIBES is not set
CONFIG_SND_TRIDENT=m
CONFIG_SND_VIA82XX=m
CONFIG_SND_VIA82XX_MODEM=m
CONFIG_SND_VIRTUOSO=m
CONFIG_SND_VX222=m
# CONFIG_SND_YMFPCI is not set

#
# HD-Audio
#
CONFIG_SND_HDA=m
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=0
CONFIG_SND_HDA_PATCH_LOADER=y
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_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=0
# end of HD-Audio

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=512
CONFIG_SND_INTEL_NHLT=y
CONFIG_SND_INTEL_DSP_CONFIG=m
# CONFIG_SND_SPI is not set
CONFIG_SND_USB=y
CONFIG_SND_USB_AUDIO=m
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 is not set
# CONFIG_SND_OXFW is not set
CONFIG_SND_ISIGHT=m
# CONFIG_SND_FIREWORKS is not set
# CONFIG_SND_BEBOB is not set
# CONFIG_SND_FIREWIRE_DIGI00X is not set
# CONFIG_SND_FIREWIRE_TASCAM is not set
# CONFIG_SND_FIREWIRE_MOTU is not set
# CONFIG_SND_FIREFACE is not set
CONFIG_SND_SOC=m
CONFIG_SND_SOC_COMPRESS=y
CONFIG_SND_SOC_TOPOLOGY=y
CONFIG_SND_SOC_ACPI=m
# CONFIG_SND_SOC_AMD_ACP is not set
# CONFIG_SND_SOC_AMD_ACP3x is not set
# CONFIG_SND_ATMEL_SOC is not set
# CONFIG_SND_BCM63XX_I2S_WHISTLER is not set
# CONFIG_SND_DESIGNWARE_I2S is not set

#
# SoC Audio for Freescale CPUs
#

#
# Common SoC Audio options for Freescale CPUs:
#
# CONFIG_SND_SOC_FSL_ASRC is not set
# CONFIG_SND_SOC_FSL_SAI is not set
# CONFIG_SND_SOC_FSL_AUDMIX is not set
# CONFIG_SND_SOC_FSL_SSI is not set
# CONFIG_SND_SOC_FSL_SPDIF is not set
# CONFIG_SND_SOC_FSL_ESAI is not set
# CONFIG_SND_SOC_FSL_MICFIL is not set
# CONFIG_SND_SOC_IMX_AUDMUX is not set
# end of SoC Audio for Freescale CPUs

# CONFIG_SND_I2S_HI6210_I2S is not set
# CONFIG_SND_SOC_IMG is not set
CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y
CONFIG_SND_SST_IPC=m
CONFIG_SND_SST_IPC_ACPI=m
CONFIG_SND_SOC_INTEL_SST_ACPI=m
CONFIG_SND_SOC_INTEL_SST=m
CONFIG_SND_SOC_INTEL_SST_FIRMWARE=m
CONFIG_SND_SOC_INTEL_HASWELL=m
CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m
# CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI is not set
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 is not set
# CONFIG_SND_SOC_INTEL_CML_LP is not set
CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY=m
CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m
# CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC is not set
CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON=m
CONFIG_SND_SOC_ACPI_INTEL_MATCH=m
CONFIG_SND_SOC_INTEL_MACH=y
# CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES is not set
CONFIG_SND_SOC_INTEL_HASWELL_MACH=m
# CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH is not set
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 is not set
# CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH is not set
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=m
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_KBL_RT5663_MAX98927_MACH=m
CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m
# CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH is not set
# CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH is not set
# CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH is not set
# CONFIG_SND_SOC_MTK_BTCVSD is not set
# CONFIG_SND_SOC_SOF_TOPLEVEL is not set

#
# STMicroelectronics STM32 SOC audio support
#
# end of STMicroelectronics STM32 SOC audio support

# CONFIG_SND_SOC_XILINX_I2S is not set
# CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set
# CONFIG_SND_SOC_XILINX_SPDIF is not set
# CONFIG_SND_SOC_XTFPGA_I2S is not set
# CONFIG_ZX_TDM is not set
CONFIG_SND_SOC_I2C_AND_SPI=m

#
# CODEC drivers
#
# CONFIG_SND_SOC_AC97_CODEC is not set
# CONFIG_SND_SOC_ADAU1701 is not set
# CONFIG_SND_SOC_ADAU1761_I2C is not set
# CONFIG_SND_SOC_ADAU1761_SPI is not set
# CONFIG_SND_SOC_ADAU7002 is not set
# CONFIG_SND_SOC_ADAU7118_HW is not set
# CONFIG_SND_SOC_ADAU7118_I2C is not set
# CONFIG_SND_SOC_AK4104 is not set
# CONFIG_SND_SOC_AK4118 is not set
# CONFIG_SND_SOC_AK4458 is not set
# CONFIG_SND_SOC_AK4554 is not set
# CONFIG_SND_SOC_AK4613 is not set
# CONFIG_SND_SOC_AK4642 is not set
# CONFIG_SND_SOC_AK5386 is not set
# CONFIG_SND_SOC_AK5558 is not set
# CONFIG_SND_SOC_ALC5623 is not set
# CONFIG_SND_SOC_BD28623 is not set
# CONFIG_SND_SOC_BT_SCO is not set
# CONFIG_SND_SOC_CS35L32 is not set
# CONFIG_SND_SOC_CS35L33 is not set
# CONFIG_SND_SOC_CS35L34 is not set
# CONFIG_SND_SOC_CS35L35 is not set
# CONFIG_SND_SOC_CS35L36 is not set
# CONFIG_SND_SOC_CS42L42 is not set
# CONFIG_SND_SOC_CS42L51_I2C is not set
# CONFIG_SND_SOC_CS42L52 is not set
# CONFIG_SND_SOC_CS42L56 is not set
# CONFIG_SND_SOC_CS42L73 is not set
# CONFIG_SND_SOC_CS4265 is not set
# CONFIG_SND_SOC_CS4270 is not set
# CONFIG_SND_SOC_CS4271_I2C is not set
# CONFIG_SND_SOC_CS4271_SPI is not set
# CONFIG_SND_SOC_CS42XX8_I2C is not set
# CONFIG_SND_SOC_CS43130 is not set
# CONFIG_SND_SOC_CS4341 is not set
# CONFIG_SND_SOC_CS4349 is not set
# CONFIG_SND_SOC_CS53L30 is not set
# CONFIG_SND_SOC_CX2072X is not set
CONFIG_SND_SOC_DA7213=m
CONFIG_SND_SOC_DA7219=m
CONFIG_SND_SOC_DMIC=m
# CONFIG_SND_SOC_ES7134 is not set
# CONFIG_SND_SOC_ES7241 is not set
CONFIG_SND_SOC_ES8316=m
# CONFIG_SND_SOC_ES8328_I2C is not set
# CONFIG_SND_SOC_ES8328_SPI is not set
# CONFIG_SND_SOC_GTM601 is not set
CONFIG_SND_SOC_HDAC_HDMI=m
# CONFIG_SND_SOC_INNO_RK3036 is not set
# CONFIG_SND_SOC_MAX98088 is not set
CONFIG_SND_SOC_MAX98090=m
CONFIG_SND_SOC_MAX98357A=m
# CONFIG_SND_SOC_MAX98504 is not set
# CONFIG_SND_SOC_MAX9867 is not set
CONFIG_SND_SOC_MAX98927=m
# CONFIG_SND_SOC_MAX98373 is not set
# CONFIG_SND_SOC_MAX9860 is not set
# CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
# CONFIG_SND_SOC_PCM1681 is not set
# CONFIG_SND_SOC_PCM1789_I2C is not set
# CONFIG_SND_SOC_PCM179X_I2C is not set
# CONFIG_SND_SOC_PCM179X_SPI is not set
# CONFIG_SND_SOC_PCM186X_I2C is not set
# CONFIG_SND_SOC_PCM186X_SPI is not set
# CONFIG_SND_SOC_PCM3060_I2C is not set
# CONFIG_SND_SOC_PCM3060_SPI is not set
# CONFIG_SND_SOC_PCM3168A_I2C is not set
# CONFIG_SND_SOC_PCM3168A_SPI is not set
# CONFIG_SND_SOC_PCM512x_I2C is not set
# CONFIG_SND_SOC_PCM512x_SPI is not set
# CONFIG_SND_SOC_RK3328 is not set
CONFIG_SND_SOC_RL6231=m
CONFIG_SND_SOC_RL6347A=m
CONFIG_SND_SOC_RT286=m
CONFIG_SND_SOC_RT298=m
CONFIG_SND_SOC_RT5514=m
CONFIG_SND_SOC_RT5514_SPI=m
# CONFIG_SND_SOC_RT5616 is not set
# CONFIG_SND_SOC_RT5631 is not set
CONFIG_SND_SOC_RT5640=m
CONFIG_SND_SOC_RT5645=m
CONFIG_SND_SOC_RT5651=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_SGTL5000 is not set
# CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set
# CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
# CONFIG_SND_SOC_SPDIF is not set
# CONFIG_SND_SOC_SSM2305 is not set
# CONFIG_SND_SOC_SSM2602_SPI is not set
# CONFIG_SND_SOC_SSM2602_I2C is not set
CONFIG_SND_SOC_SSM4567=m
# CONFIG_SND_SOC_STA32X is not set
# CONFIG_SND_SOC_STA350 is not set
# CONFIG_SND_SOC_STI_SAS is not set
# CONFIG_SND_SOC_TAS2552 is not set
# CONFIG_SND_SOC_TAS2562 is not set
# CONFIG_SND_SOC_TAS2770 is not set
# CONFIG_SND_SOC_TAS5086 is not set
# CONFIG_SND_SOC_TAS571X is not set
# CONFIG_SND_SOC_TAS5720 is not set
# CONFIG_SND_SOC_TAS6424 is not set
# CONFIG_SND_SOC_TDA7419 is not set
# CONFIG_SND_SOC_TFA9879 is not set
# CONFIG_SND_SOC_TLV320AIC23_I2C is not set
# CONFIG_SND_SOC_TLV320AIC23_SPI is not set
# CONFIG_SND_SOC_TLV320AIC31XX is not set
# CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
# CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
# CONFIG_SND_SOC_TLV320AIC3X is not set
# CONFIG_SND_SOC_TLV320ADCX140 is not set
CONFIG_SND_SOC_TS3A227E=m
# CONFIG_SND_SOC_TSCS42XX is not set
# CONFIG_SND_SOC_TSCS454 is not set
# CONFIG_SND_SOC_UDA1334 is not set
# CONFIG_SND_SOC_WM8510 is not set
# CONFIG_SND_SOC_WM8523 is not set
# CONFIG_SND_SOC_WM8524 is not set
# CONFIG_SND_SOC_WM8580 is not set
# CONFIG_SND_SOC_WM8711 is not set
# CONFIG_SND_SOC_WM8728 is not set
# CONFIG_SND_SOC_WM8731 is not set
# CONFIG_SND_SOC_WM8737 is not set
# CONFIG_SND_SOC_WM8741 is not set
# CONFIG_SND_SOC_WM8750 is not set
# CONFIG_SND_SOC_WM8753 is not set
# CONFIG_SND_SOC_WM8770 is not set
# CONFIG_SND_SOC_WM8776 is not set
# CONFIG_SND_SOC_WM8782 is not set
# CONFIG_SND_SOC_WM8804_I2C is not set
# CONFIG_SND_SOC_WM8804_SPI is not set
# CONFIG_SND_SOC_WM8903 is not set
# CONFIG_SND_SOC_WM8904 is not set
# CONFIG_SND_SOC_WM8960 is not set
# CONFIG_SND_SOC_WM8962 is not set
# CONFIG_SND_SOC_WM8974 is not set
# CONFIG_SND_SOC_WM8978 is not set
# CONFIG_SND_SOC_WM8985 is not set
# CONFIG_SND_SOC_ZX_AUD96P22 is not set
# CONFIG_SND_SOC_MAX9759 is not set
# CONFIG_SND_SOC_MT6351 is not set
# CONFIG_SND_SOC_MT6358 is not set
# CONFIG_SND_SOC_MT6660 is not set
# CONFIG_SND_SOC_NAU8540 is not set
# CONFIG_SND_SOC_NAU8810 is not set
# CONFIG_SND_SOC_NAU8822 is not set
CONFIG_SND_SOC_NAU8824=m
CONFIG_SND_SOC_NAU8825=m
# CONFIG_SND_SOC_TPA6130A2 is not set
# end of CODEC drivers

# CONFIG_SND_SIMPLE_CARD is not set
CONFIG_SND_X86=y
CONFIG_HDMI_LPE_AUDIO=m
CONFIG_SND_SYNTH_EMUX=m
# CONFIG_SND_XEN_FRONTEND is not set
CONFIG_AC97_BUS=m

#
# HID support
#
CONFIG_HID=y
CONFIG_HID_BATTERY_STRENGTH=y
CONFIG_HIDRAW=y
CONFIG_UHID=m
CONFIG_HID_GENERIC=y

#
# Special HID drivers
#
CONFIG_HID_A4TECH=y
# CONFIG_HID_ACCUTOUCH is not set
CONFIG_HID_ACRUX=m
# CONFIG_HID_ACRUX_FF is not set
CONFIG_HID_APPLE=y
CONFIG_HID_APPLEIR=m
# CONFIG_HID_ASUS is not set
CONFIG_HID_AUREAL=m
CONFIG_HID_BELKIN=y
# CONFIG_HID_BETOP_FF is not set
# CONFIG_HID_BIGBEN_FF is not set
CONFIG_HID_CHERRY=y
CONFIG_HID_CHICONY=y
# CONFIG_HID_CORSAIR is not set
# CONFIG_HID_COUGAR is not set
# CONFIG_HID_MACALLY is not set
CONFIG_HID_PRODIKEYS=m
# CONFIG_HID_CMEDIA is not set
# CONFIG_HID_CP2112 is not set
# CONFIG_HID_CREATIVE_SB0540 is not set
CONFIG_HID_CYPRESS=y
CONFIG_HID_DRAGONRISE=m
# CONFIG_DRAGONRISE_FF is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELAN is not set
CONFIG_HID_ELECOM=m
# CONFIG_HID_ELO is not set
CONFIG_HID_EZKEY=y
# CONFIG_HID_GEMBIRD is not set
# CONFIG_HID_GFRM is not set
# CONFIG_HID_GLORIOUS is not set
CONFIG_HID_HOLTEK=m
# CONFIG_HOLTEK_FF is not set
# CONFIG_HID_GT683R is not set
CONFIG_HID_KEYTOUCH=m
CONFIG_HID_KYE=m
CONFIG_HID_UCLOGIC=m
CONFIG_HID_WALTOP=m
# CONFIG_HID_VIEWSONIC is not set
CONFIG_HID_GYRATION=m
CONFIG_HID_ICADE=m
CONFIG_HID_ITE=y
# CONFIG_HID_JABRA is not set
CONFIG_HID_TWINHAN=m
CONFIG_HID_KENSINGTON=y
CONFIG_HID_LCPOWER=m
CONFIG_HID_LED=m
# CONFIG_HID_LENOVO is not set
CONFIG_HID_LOGITECH=y
CONFIG_HID_LOGITECH_DJ=m
CONFIG_HID_LOGITECH_HIDPP=m
# CONFIG_LOGITECH_FF is not set
# CONFIG_LOGIRUMBLEPAD2_FF is not set
# CONFIG_LOGIG940_FF is not set
# CONFIG_LOGIWHEELS_FF is not set
CONFIG_HID_MAGICMOUSE=y
# CONFIG_HID_MALTRON is not set
# CONFIG_HID_MAYFLASH is not set
CONFIG_HID_REDRAGON=y
CONFIG_HID_MICROSOFT=y
CONFIG_HID_MONTEREY=y
CONFIG_HID_MULTITOUCH=m
# CONFIG_HID_NTI is not set
CONFIG_HID_NTRIG=y
CONFIG_HID_ORTEK=m
CONFIG_HID_PANTHERLORD=m
# CONFIG_PANTHERLORD_FF is not set
# CONFIG_HID_PENMOUNT is not set
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=y
CONFIG_HID_PRIMAX=m
# CONFIG_HID_RETRODE is not set
CONFIG_HID_ROCCAT=m
CONFIG_HID_SAITEK=m
CONFIG_HID_SAMSUNG=m
CONFIG_HID_SONY=m
# CONFIG_SONY_FF is not set
CONFIG_HID_SPEEDLINK=m
# CONFIG_HID_STEAM is not set
CONFIG_HID_STEELSERIES=m
CONFIG_HID_SUNPLUS=m
CONFIG_HID_RMI=m
CONFIG_HID_GREENASIA=m
# CONFIG_GREENASIA_FF is not set
CONFIG_HID_HYPERV_MOUSE=m
CONFIG_HID_SMARTJOYPLUS=m
# CONFIG_SMARTJOYPLUS_FF is not set
CONFIG_HID_TIVO=m
CONFIG_HID_TOPSEED=m
CONFIG_HID_THINGM=m
CONFIG_HID_THRUSTMASTER=m
# CONFIG_THRUSTMASTER_FF is not set
# CONFIG_HID_UDRAW_PS3 is not set
# CONFIG_HID_U2FZERO is not set
CONFIG_HID_WACOM=m
CONFIG_HID_WIIMOTE=m
# CONFIG_HID_XINMO is not set
CONFIG_HID_ZEROPLUS=m
# CONFIG_ZEROPLUS_FF is not set
CONFIG_HID_ZYDACRON=m
CONFIG_HID_SENSOR_HUB=m
CONFIG_HID_SENSOR_CUSTOM_SENSOR=m
CONFIG_HID_ALPS=m
# CONFIG_HID_MCP2221 is not set
# end of Special HID drivers

#
# USB HID support
#
CONFIG_USB_HID=y
CONFIG_HID_PID=y
CONFIG_USB_HIDDEV=y
# end of USB HID support

#
# I2C HID support
#
CONFIG_I2C_HID=m
# end of I2C HID support

#
# Intel ISH HID support
#
CONFIG_INTEL_ISH_HID=y
# CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER is not set
# end of Intel ISH HID support
# end of HID support

CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
# CONFIG_USB_LED_TRIG is not set
# CONFIG_USB_ULPI_BUS is not set
# CONFIG_USB_CONN_GPIO is not set
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_PCI=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y

#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_WHITELIST is not set
CONFIG_USB_LEDS_TRIGGER_USBPORT=m
CONFIG_USB_AUTOSUSPEND_DELAY=2
CONFIG_USB_MON=y

#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
# CONFIG_USB_XHCI_DBGCAP is not set
CONFIG_USB_XHCI_PCI=y
# CONFIG_USB_XHCI_PLATFORM is 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 is not set
# CONFIG_USB_EHCI_HCD_PLATFORM is not set
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_FOTG210_HCD is not set
# CONFIG_USB_MAX3421_HCD is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_OHCI_HCD_PCI=y
# CONFIG_USB_OHCI_HCD_PLATFORM is not set
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_U132_HCD is not set
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_BCMA is not set
# CONFIG_USB_HCD_SSB is not set
# CONFIG_USB_HCD_TEST_MODE is not set

#
# USB Device Class drivers
#
CONFIG_USB_ACM=m
CONFIG_USB_PRINTER=m
CONFIG_USB_WDM=m
CONFIG_USB_TMC=m

#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#

#
# also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is 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

#
# USB Imaging devices
#
CONFIG_USB_MDC800=m
CONFIG_USB_MICROTEK=m
CONFIG_USBIP_CORE=m
# CONFIG_USBIP_VHCI_HCD is not set
# CONFIG_USBIP_HOST is not set
# CONFIG_USBIP_DEBUG is not set
# CONFIG_USB_CDNS3 is not set
# CONFIG_USB_MUSB_HDRC is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_DWC2 is not set
# CONFIG_USB_CHIPIDEA is not set
# CONFIG_USB_ISP1760 is not set

#
# USB port drivers
#
CONFIG_USB_USS720=m
CONFIG_USB_SERIAL=y
CONFIG_USB_SERIAL_CONSOLE=y
CONFIG_USB_SERIAL_GENERIC=y
# CONFIG_USB_SERIAL_SIMPLE is not set
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 is not set
# CONFIG_USB_SERIAL_F8153X is not set
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 is not set
CONFIG_USB_SERIAL_MOS7720=m
CONFIG_USB_SERIAL_MOS7715_PARPORT=y
CONFIG_USB_SERIAL_MOS7840=m
# CONFIG_USB_SERIAL_MXUPORT is not set
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 is not set
CONFIG_USB_SERIAL_CYBERJACK=m
CONFIG_USB_SERIAL_XIRCOM=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 is not set
CONFIG_USB_SERIAL_SSU100=m
CONFIG_USB_SERIAL_QT2=m
# CONFIG_USB_SERIAL_UPD78F0730 is not set
CONFIG_USB_SERIAL_DEBUG=m

#
# USB Miscellaneous drivers
#
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 is not set
# CONFIG_USB_CYTHERM is not set
CONFIG_USB_IDMOUSE=m
CONFIG_USB_FTDI_ELAN=m
CONFIG_USB_APPLEDISPLAY=m
# CONFIG_APPLE_MFI_FASTCHARGE is not set
CONFIG_USB_SISUSBVGA=m
CONFIG_USB_SISUSBVGA_CON=y
CONFIG_USB_LD=m
# CONFIG_USB_TRANCEVIBRATOR is not set
CONFIG_USB_IOWARRIOR=m
# CONFIG_USB_TEST is not set
# CONFIG_USB_EHSET_TEST_FIXTURE is not set
CONFIG_USB_ISIGHTFW=m
# CONFIG_USB_YUREX is not set
CONFIG_USB_EZUSB_FX2=m
# CONFIG_USB_HUB_USB251XB is not set
CONFIG_USB_HSIC_USB3503=m
# CONFIG_USB_HSIC_USB4604 is not set
# CONFIG_USB_LINK_LAYER_TEST is not set
# CONFIG_USB_CHAOSKEY is not set
CONFIG_USB_ATM=m
CONFIG_USB_SPEEDTOUCH=m
CONFIG_USB_CXACRU=m
CONFIG_USB_UEAGLEATM=m
CONFIG_USB_XUSBATM=m

#
# USB Physical Layer drivers
#
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_GPIO_VBUS is not set
# CONFIG_USB_ISP1301 is not set
# end of USB Physical Layer drivers

# CONFIG_USB_GADGET is not set
CONFIG_TYPEC=y
# CONFIG_TYPEC_TCPM is not set
CONFIG_TYPEC_UCSI=y
# CONFIG_UCSI_CCG is not set
CONFIG_UCSI_ACPI=y
# CONFIG_TYPEC_TPS6598X is not set

#
# USB Type-C Multiplexer/DeMultiplexer Switch support
#
# CONFIG_TYPEC_MUX_PI3USB30532 is not set
# end of USB Type-C Multiplexer/DeMultiplexer Switch support

#
# USB Type-C Alternate Mode drivers
#
# CONFIG_TYPEC_DP_ALTMODE is not set
# end of USB Type-C Alternate Mode drivers

# CONFIG_USB_ROLE_SWITCH is not set
CONFIG_MMC=m
CONFIG_MMC_BLOCK=m
CONFIG_MMC_BLOCK_MINORS=8
CONFIG_SDIO_UART=m
# CONFIG_MMC_TEST is not set

#
# MMC/SD/SDIO Host Controller Drivers
#
# CONFIG_MMC_DEBUG is 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 is not set
# CONFIG_MMC_WBSD is not set
CONFIG_MMC_TIFM_SD=m
# CONFIG_MMC_SPI is not set
CONFIG_MMC_CB710=m
CONFIG_MMC_VIA_SDMMC=m
CONFIG_MMC_VUB300=m
CONFIG_MMC_USHC=m
# CONFIG_MMC_USDHI6ROL0 is not set
CONFIG_MMC_CQHCI=m
# CONFIG_MMC_HSQ is not set
# CONFIG_MMC_TOSHIBA_PCI is not set
# CONFIG_MMC_MTK is not set
# CONFIG_MMC_SDHCI_XENON is not set
CONFIG_MEMSTICK=m
# CONFIG_MEMSTICK_DEBUG is not set

#
# MemoryStick drivers
#
# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
CONFIG_MSPRO_BLOCK=m
# CONFIG_MS_BLOCK is not set

#
# MemoryStick Host Controller Drivers
#
CONFIG_MEMSTICK_TIFM_MS=m
CONFIG_MEMSTICK_JMICRON_38X=m
CONFIG_MEMSTICK_R592=m
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
# CONFIG_LEDS_CLASS_FLASH is not set
# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set

#
# LED drivers
#
# CONFIG_LEDS_APU is not set
CONFIG_LEDS_LM3530=m
# CONFIG_LEDS_LM3532 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_GPIO is not set
CONFIG_LEDS_LP3944=m
# CONFIG_LEDS_LP3952 is not set
CONFIG_LEDS_LP55XX_COMMON=m
CONFIG_LEDS_LP5521=m
CONFIG_LEDS_LP5523=m
CONFIG_LEDS_LP5562=m
# CONFIG_LEDS_LP8501 is not set
CONFIG_LEDS_CLEVO_MAIL=m
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA963X is not set
# CONFIG_LEDS_DAC124S085 is not set
# CONFIG_LEDS_PWM is not set
# CONFIG_LEDS_BD2802 is not set
CONFIG_LEDS_INTEL_SS4200=m
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_TLC591XX is not set
# CONFIG_LEDS_LM355x is not set

#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
CONFIG_LEDS_BLINKM=m
# CONFIG_LEDS_MLXCPLD is not set
# CONFIG_LEDS_MLXREG is not set
# CONFIG_LEDS_USER is not set
# CONFIG_LEDS_NIC78BX is not set
# CONFIG_LEDS_TI_LMU_COMMON is not set

#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
CONFIG_LEDS_TRIGGER_TIMER=m
CONFIG_LEDS_TRIGGER_ONESHOT=m
# CONFIG_LEDS_TRIGGER_DISK is not set
# CONFIG_LEDS_TRIGGER_MTD is not set
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
CONFIG_LEDS_TRIGGER_BACKLIGHT=m
# CONFIG_LEDS_TRIGGER_CPU is not set
# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
CONFIG_LEDS_TRIGGER_GPIO=m
CONFIG_LEDS_TRIGGER_DEFAULT_ON=m

#
# iptables trigger is under Netfilter config (LED target)
#
CONFIG_LEDS_TRIGGER_TRANSIENT=m
CONFIG_LEDS_TRIGGER_CAMERA=m
# CONFIG_LEDS_TRIGGER_PANIC is not set
# CONFIG_LEDS_TRIGGER_NETDEV is not set
# CONFIG_LEDS_TRIGGER_PATTERN is not set
CONFIG_LEDS_TRIGGER_AUDIO=m
# CONFIG_ACCESSIBILITY is not set
CONFIG_INFINIBAND=m
CONFIG_INFINIBAND_USER_MAD=m
CONFIG_INFINIBAND_USER_ACCESS=m
# CONFIG_INFINIBAND_EXP_LEGACY_VERBS_NEW_UAPI is not set
CONFIG_INFINIBAND_USER_MEM=y
CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
CONFIG_INFINIBAND_ADDR_TRANS=y
CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
# CONFIG_INFINIBAND_MTHCA is not set
# CONFIG_INFINIBAND_CXGB4 is not set
# CONFIG_INFINIBAND_EFA is not set
# CONFIG_INFINIBAND_I40IW is not set
# CONFIG_MLX4_INFINIBAND is not set
# CONFIG_INFINIBAND_OCRDMA is not set
# CONFIG_INFINIBAND_VMWARE_PVRDMA is not set
# CONFIG_INFINIBAND_USNIC is not set
# CONFIG_INFINIBAND_BNXT_RE is not set
# CONFIG_INFINIBAND_QEDR is not set
# CONFIG_INFINIBAND_RDMAVT is not set
CONFIG_RDMA_RXE=m
CONFIG_RDMA_SIW=m
CONFIG_INFINIBAND_IPOIB=m
# CONFIG_INFINIBAND_IPOIB_CM is not set
CONFIG_INFINIBAND_IPOIB_DEBUG=y
# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set
CONFIG_INFINIBAND_SRP=m
CONFIG_INFINIBAND_SRPT=m
# CONFIG_INFINIBAND_ISER is not set
# CONFIG_INFINIBAND_ISERT is not set
# CONFIG_INFINIBAND_OPA_VNIC is not set
CONFIG_EDAC_ATOMIC_SCRUB=y
CONFIG_EDAC_SUPPORT=y
CONFIG_EDAC=y
CONFIG_EDAC_LEGACY_SYSFS=y
# CONFIG_EDAC_DEBUG is not set
CONFIG_EDAC_DECODE_MCE=m
CONFIG_EDAC_GHES=y
CONFIG_EDAC_AMD64=m
# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set
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_I5000=m
CONFIG_EDAC_I5100=m
CONFIG_EDAC_I7300=m
CONFIG_EDAC_SBRIDGE=m
CONFIG_EDAC_SKX=m
# CONFIG_EDAC_I10NM is not set
CONFIG_EDAC_PND2=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 is not set
# CONFIG_RTC_DEBUG is not set
CONFIG_RTC_NVMEM=y

#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set

#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_ABB5ZES3 is not set
# CONFIG_RTC_DRV_ABEOZ9 is not set
# CONFIG_RTC_DRV_ABX80X is not set
CONFIG_RTC_DRV_DS1307=m
# CONFIG_RTC_DRV_DS1307_CENTURY is not set
CONFIG_RTC_DRV_DS1374=m
# CONFIG_RTC_DRV_DS1374_WDT is not set
CONFIG_RTC_DRV_DS1672=m
CONFIG_RTC_DRV_MAX6900=m
CONFIG_RTC_DRV_RS5C372=m
CONFIG_RTC_DRV_ISL1208=m
CONFIG_RTC_DRV_ISL12022=m
CONFIG_RTC_DRV_X1205=m
CONFIG_RTC_DRV_PCF8523=m
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_PCF85363 is not set
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=m
# CONFIG_RTC_DRV_S35390A is not set
CONFIG_RTC_DRV_FM3130=m
# CONFIG_RTC_DRV_RX8010 is not set
CONFIG_RTC_DRV_RX8581=m
CONFIG_RTC_DRV_RX8025=m
CONFIG_RTC_DRV_EM3027=m
# CONFIG_RTC_DRV_RV3028 is not set
# CONFIG_RTC_DRV_RV8803 is not set
# CONFIG_RTC_DRV_SD3078 is not set

#
# SPI RTC drivers
#
# CONFIG_RTC_DRV_M41T93 is not set
# CONFIG_RTC_DRV_M41T94 is not set
# CONFIG_RTC_DRV_DS1302 is not set
# CONFIG_RTC_DRV_DS1305 is not set
# CONFIG_RTC_DRV_DS1343 is not set
# CONFIG_RTC_DRV_DS1347 is not set
# CONFIG_RTC_DRV_DS1390 is not set
# CONFIG_RTC_DRV_MAX6916 is not set
# CONFIG_RTC_DRV_R9701 is not set
CONFIG_RTC_DRV_RX4581=m
# CONFIG_RTC_DRV_RX6110 is not set
# CONFIG_RTC_DRV_RS5C348 is not set
# CONFIG_RTC_DRV_MAX6902 is not set
# CONFIG_RTC_DRV_PCF2123 is not set
# CONFIG_RTC_DRV_MCP795 is not set
CONFIG_RTC_I2C_AND_SPI=y

#
# SPI and I2C RTC drivers
#
CONFIG_RTC_DRV_DS3232=m
CONFIG_RTC_DRV_DS3232_HWMON=y
# CONFIG_RTC_DRV_PCF2127 is not set
CONFIG_RTC_DRV_RV3029C2=m
CONFIG_RTC_DRV_RV3029_HWMON=y

#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
CONFIG_RTC_DRV_DS1286=m
CONFIG_RTC_DRV_DS1511=m
CONFIG_RTC_DRV_DS1553=m
# CONFIG_RTC_DRV_DS1685_FAMILY is not set
CONFIG_RTC_DRV_DS1742=m
CONFIG_RTC_DRV_DS2404=m
CONFIG_RTC_DRV_STK17TA8=m
# CONFIG_RTC_DRV_M48T86 is not set
CONFIG_RTC_DRV_M48T35=m
CONFIG_RTC_DRV_M48T59=m
CONFIG_RTC_DRV_MSM6242=m
CONFIG_RTC_DRV_BQ4802=m
CONFIG_RTC_DRV_RP5C01=m
CONFIG_RTC_DRV_V3020=m

#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_FTRTC010 is not set

#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set

#
# DMA Devices
#
CONFIG_DMA_ENGINE=y
CONFIG_DMA_VIRTUAL_CHANNELS=y
CONFIG_DMA_ACPI=y
# CONFIG_ALTERA_MSGDMA is not set
# CONFIG_INTEL_IDMA64 is not set
# CONFIG_INTEL_IDXD is not set
CONFIG_INTEL_IOATDMA=m
# CONFIG_PLX_DMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
# CONFIG_QCOM_HIDMA is not set
CONFIG_DW_DMAC_CORE=y
CONFIG_DW_DMAC=m
CONFIG_DW_DMAC_PCI=y
# CONFIG_DW_EDMA is not set
# CONFIG_DW_EDMA_PCIE is not set
CONFIG_HSU_DMA=y
# CONFIG_SF_PDMA is not set

#
# DMA Clients
#
CONFIG_ASYNC_TX_DMA=y
# CONFIG_DMATEST is not set
CONFIG_DMA_ENGINE_RAID=y

#
# DMABUF options
#
CONFIG_SYNC_FILE=y
# CONFIG_SW_SYNC is not set
# CONFIG_UDMABUF is not set
# CONFIG_DMABUF_MOVE_NOTIFY is not set
# CONFIG_DMABUF_SELFTESTS is not set
# CONFIG_DMABUF_HEAPS is not set
# end of DMABUF options

CONFIG_DCA=m
CONFIG_AUXDISPLAY=y
# CONFIG_HD44780 is not set
CONFIG_KS0108=m
CONFIG_KS0108_PORT=0x378
CONFIG_KS0108_DELAY=2
CONFIG_CFAG12864B=m
CONFIG_CFAG12864B_RATE=20
# CONFIG_IMG_ASCII_LCD is not set
# CONFIG_PARPORT_PANEL is not set
# CONFIG_CHARLCD_BL_OFF is not set
# CONFIG_CHARLCD_BL_ON is not set
CONFIG_CHARLCD_BL_FLASH=y
# CONFIG_PANEL is not set
CONFIG_UIO=m
CONFIG_UIO_CIF=m
CONFIG_UIO_PDRV_GENIRQ=m
# CONFIG_UIO_DMEM_GENIRQ is not set
CONFIG_UIO_AEC=m
CONFIG_UIO_SERCOS3=m
CONFIG_UIO_PCI_GENERIC=m
# CONFIG_UIO_NETX is not set
# CONFIG_UIO_PRUSS is not set
# CONFIG_UIO_MF624 is not set
CONFIG_UIO_HV_GENERIC=m
CONFIG_VFIO_IOMMU_TYPE1=m
CONFIG_VFIO_VIRQFD=m
CONFIG_VFIO=m
CONFIG_VFIO_NOIOMMU=y
CONFIG_VFIO_PCI=m
# CONFIG_VFIO_PCI_VGA is not set
CONFIG_VFIO_PCI_MMAP=y
CONFIG_VFIO_PCI_INTX=y
# CONFIG_VFIO_PCI_IGD is not set
CONFIG_VFIO_MDEV=m
CONFIG_VFIO_MDEV_DEVICE=m
CONFIG_IRQ_BYPASS_MANAGER=m
# CONFIG_VIRT_DRIVERS is not set
CONFIG_VIRTIO=y
CONFIG_VIRTIO_MENU=y
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_PCI_LEGACY=y
# CONFIG_VIRTIO_PMEM is not set
CONFIG_VIRTIO_BALLOON=y
CONFIG_VIRTIO_INPUT=m
# CONFIG_VIRTIO_MMIO is not set
# CONFIG_VDPA is not set
CONFIG_VHOST_IOTLB=m
CONFIG_VHOST_DPN=y
CONFIG_VHOST=m
CONFIG_VHOST_MENU=y
CONFIG_VHOST_NET=m
# CONFIG_VHOST_SCSI is not set
CONFIG_VHOST_VSOCK=m
# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set

#
# Microsoft Hyper-V guest support
#
CONFIG_HYPERV=m
CONFIG_HYPERV_TIMER=y
CONFIG_HYPERV_UTILS=m
CONFIG_HYPERV_BALLOON=m
# end of Microsoft Hyper-V guest support

#
# Xen driver support
#
CONFIG_XEN_BALLOON=y
# CONFIG_XEN_BALLOON_MEMORY_HOTPLUG is not set
CONFIG_XEN_SCRUB_PAGES_DEFAULT=y
CONFIG_XEN_DEV_EVTCHN=m
# CONFIG_XEN_BACKEND is not set
CONFIG_XENFS=m
CONFIG_XEN_COMPAT_XENFS=y
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
# CONFIG_XEN_GNTDEV is not set
# CONFIG_XEN_GRANT_DEV_ALLOC is not set
# CONFIG_XEN_GRANT_DMA_ALLOC is not set
CONFIG_SWIOTLB_XEN=y
# CONFIG_XEN_PVCALLS_FRONTEND is not set
CONFIG_XEN_PRIVCMD=m
CONFIG_XEN_HAVE_PVMMU=y
CONFIG_XEN_EFI=y
CONFIG_XEN_AUTO_XLATE=y
CONFIG_XEN_ACPI=y
CONFIG_XEN_HAVE_VPMU=y
# end of Xen driver support

# CONFIG_GREYBUS is not set
CONFIG_STAGING=y
# CONFIG_PRISM2_USB is not set
# CONFIG_COMEDI is not set
# CONFIG_RTL8192U is not set
CONFIG_RTLLIB=m
CONFIG_RTLLIB_CRYPTO_CCMP=m
CONFIG_RTLLIB_CRYPTO_TKIP=m
CONFIG_RTLLIB_CRYPTO_WEP=m
CONFIG_RTL8192E=m
# CONFIG_RTL8723BS is not set
CONFIG_R8712U=m
# CONFIG_R8188EU is not set
# CONFIG_RTS5208 is not set
# CONFIG_VT6655 is not set
# CONFIG_VT6656 is not set

#
# IIO staging drivers
#

#
# Accelerometers
#
# CONFIG_ADIS16203 is not set
# CONFIG_ADIS16240 is not set
# end of Accelerometers

#
# Analog to digital converters
#
# CONFIG_AD7816 is not set
# CONFIG_AD7280 is not set
# end of Analog to digital converters

#
# Analog digital bi-direction converters
#
# CONFIG_ADT7316 is not set
# end of Analog digital bi-direction converters

#
# Capacitance to digital converters
#
# CONFIG_AD7150 is not set
# CONFIG_AD7746 is not set
# end of Capacitance to digital converters

#
# Direct Digital Synthesis
#
# CONFIG_AD9832 is not set
# CONFIG_AD9834 is not set
# end of Direct Digital Synthesis

#
# Network Analyzer, Impedance Converters
#
# CONFIG_AD5933 is not set
# end of Network Analyzer, Impedance Converters

#
# Active energy metering IC
#
# CONFIG_ADE7854 is not set
# end of Active energy metering IC

#
# Resolver to digital converters
#
# CONFIG_AD2S1210 is not set
# end of Resolver to digital converters
# end of IIO staging drivers

# CONFIG_FB_SM750 is not set

#
# Speakup console speech
#
# CONFIG_SPEAKUP is not set
# end of Speakup console speech

# CONFIG_STAGING_MEDIA is not set

#
# Android
#
# end of Android

# CONFIG_LTE_GDM724X is not set
CONFIG_FIREWIRE_SERIAL=m
CONFIG_FWTTY_MAX_TOTAL_PORTS=64
CONFIG_FWTTY_MAX_CARD_PORTS=32
# CONFIG_GS_FPGABOOT is not set
# CONFIG_UNISYSSPAR is not set
# CONFIG_FB_TFT is not set
# CONFIG_WILC1000_SDIO is not set
# CONFIG_WILC1000_SPI is not set
# CONFIG_KS7010 is not set
# CONFIG_PI433 is not set

#
# Gasket devices
#
# CONFIG_STAGING_GASKET_FRAMEWORK is not set
# end of Gasket devices

# CONFIG_FIELDBUS_DEV is not set
# CONFIG_KPC2000 is not set
CONFIG_QLGE=m
# CONFIG_WFX is not set
CONFIG_X86_PLATFORM_DEVICES=y
CONFIG_ACPI_WMI=m
CONFIG_WMI_BMOF=m
# CONFIG_ALIENWARE_WMI is not set
# CONFIG_HUAWEI_WMI is not set
# CONFIG_INTEL_WMI_SBL_FW_UPDATE is not set
CONFIG_INTEL_WMI_THUNDERBOLT=m
CONFIG_MXM_WMI=m
# CONFIG_PEAQ_WMI is not set
# CONFIG_XIAOMI_WMI is not set
CONFIG_ACERHDF=m
# CONFIG_ACER_WIRELESS is not set
CONFIG_ACER_WMI=m
CONFIG_APPLE_GMUX=m
CONFIG_ASUS_LAPTOP=m
# CONFIG_ASUS_WIRELESS is not set
CONFIG_ASUS_WMI=m
CONFIG_ASUS_NB_WMI=m
CONFIG_EEEPC_LAPTOP=m
CONFIG_EEEPC_WMI=m
CONFIG_DCDBAS=m
CONFIG_DELL_SMBIOS=m
CONFIG_DELL_SMBIOS_WMI=y
CONFIG_DELL_SMBIOS_SMM=y
CONFIG_DELL_LAPTOP=m
CONFIG_DELL_RBTN=m
CONFIG_DELL_RBU=m
CONFIG_DELL_SMO8800=m
CONFIG_DELL_WMI=m
CONFIG_DELL_WMI_DESCRIPTOR=m
CONFIG_DELL_WMI_AIO=m
# CONFIG_DELL_WMI_LED is not set
CONFIG_AMILO_RFKILL=m
CONFIG_FUJITSU_LAPTOP=m
CONFIG_FUJITSU_TABLET=m
# CONFIG_GPD_POCKET_FAN is not set
CONFIG_HP_ACCEL=m
CONFIG_HP_WIRELESS=m
CONFIG_HP_WMI=m
# CONFIG_IBM_RTL is not set
CONFIG_IDEAPAD_LAPTOP=m
CONFIG_SENSORS_HDAPS=m
CONFIG_THINKPAD_ACPI=m
CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y
# CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set
# CONFIG_THINKPAD_ACPI_DEBUG is not set
# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set
CONFIG_THINKPAD_ACPI_VIDEO=y
CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y
# CONFIG_INTEL_ATOMISP2_PM is not set
CONFIG_INTEL_HID_EVENT=m
# CONFIG_INTEL_INT0002_VGPIO is not set
# CONFIG_INTEL_MENLOW is not set
CONFIG_INTEL_OAKTRAIL=m
CONFIG_INTEL_VBTN=m
# CONFIG_SURFACE3_WMI is not set
# CONFIG_SURFACE_3_POWER_OPREGION is not set
# CONFIG_SURFACE_PRO3_BUTTON is not set
CONFIG_MSI_LAPTOP=m
CONFIG_MSI_WMI=m
# CONFIG_PCENGINES_APU2 is not set
CONFIG_SAMSUNG_LAPTOP=m
CONFIG_SAMSUNG_Q10=m
CONFIG_ACPI_TOSHIBA=m
CONFIG_TOSHIBA_BT_RFKILL=m
# CONFIG_TOSHIBA_HAPS is not set
# CONFIG_TOSHIBA_WMI is not set
CONFIG_ACPI_CMPC=m
CONFIG_COMPAL_LAPTOP=m
# CONFIG_LG_LAPTOP is not set
CONFIG_PANASONIC_LAPTOP=m
CONFIG_SONY_LAPTOP=m
CONFIG_SONYPI_COMPAT=y
# CONFIG_SYSTEM76_ACPI is not set
CONFIG_TOPSTAR_LAPTOP=m
# CONFIG_I2C_MULTI_INSTANTIATE is not set
# CONFIG_MLX_PLATFORM is not set
CONFIG_INTEL_IPS=m
# CONFIG_INTEL_RST is not set
# CONFIG_INTEL_SMARTCONNECT is not set

#
# Intel Speed Select Technology interface support
#
# CONFIG_INTEL_SPEED_SELECT_INTERFACE is not set
# end of Intel Speed Select Technology interface support

# CONFIG_INTEL_TURBO_MAX_3 is not set
# CONFIG_INTEL_UNCORE_FREQ_CONTROL is not set
CONFIG_INTEL_PMC_CORE=m
# CONFIG_INTEL_PUNIT_IPC is not set
# CONFIG_INTEL_SCU_PCI is not set
# CONFIG_INTEL_SCU_PLATFORM is not set
CONFIG_PMC_ATOM=y
# CONFIG_MFD_CROS_EC is not set
# CONFIG_CHROME_PLATFORMS is not set
# CONFIG_MELLANOX_PLATFORM is not set
CONFIG_CLKDEV_LOOKUP=y
CONFIG_HAVE_CLK_PREPARE=y
CONFIG_COMMON_CLK=y

#
# Common Clock Framework
#
# CONFIG_COMMON_CLK_MAX9485 is not set
# CONFIG_COMMON_CLK_SI5341 is not set
# CONFIG_COMMON_CLK_SI5351 is not set
# CONFIG_COMMON_CLK_SI544 is not set
# CONFIG_COMMON_CLK_CDCE706 is not set
# CONFIG_COMMON_CLK_CS2000_CP is not set
# CONFIG_COMMON_CLK_PWM is not set
# end of Common Clock Framework

# CONFIG_HWSPINLOCK is not set

#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# end of Clock Source drivers

CONFIG_MAILBOX=y
CONFIG_PCC=y
# CONFIG_ALTERA_MBOX is not set
CONFIG_IOMMU_IOVA=y
CONFIG_IOASID=y
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y

#
# Generic IOMMU Pagetable Support
#
# end of Generic IOMMU Pagetable Support

# CONFIG_IOMMU_DEBUGFS is not set
# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set
CONFIG_IOMMU_DMA=y
CONFIG_AMD_IOMMU=y
CONFIG_AMD_IOMMU_V2=m
CONFIG_DMAR_TABLE=y
CONFIG_INTEL_IOMMU=y
# CONFIG_INTEL_IOMMU_SVM is not set
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
CONFIG_INTEL_IOMMU_FLOPPY_WA=y
# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set
CONFIG_IRQ_REMAP=y
CONFIG_HYPERV_IOMMU=y

#
# Remoteproc drivers
#
# CONFIG_REMOTEPROC is not set
# end of Remoteproc drivers

#
# Rpmsg drivers
#
# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
# CONFIG_RPMSG_VIRTIO is not set
# end of Rpmsg drivers

# CONFIG_SOUNDWIRE is not set

#
# SOC (System On Chip) specific Drivers
#

#
# Amlogic SoC drivers
#
# end of Amlogic SoC drivers

#
# Aspeed SoC drivers
#
# end of Aspeed SoC drivers

#
# Broadcom SoC drivers
#
# end of Broadcom SoC drivers

#
# NXP/Freescale QorIQ SoC drivers
#
# end of NXP/Freescale QorIQ SoC drivers

#
# i.MX SoC drivers
#
# end of i.MX SoC drivers

#
# Qualcomm SoC drivers
#
# end of Qualcomm SoC drivers

# CONFIG_SOC_TI is not set

#
# Xilinx SoC drivers
#
# CONFIG_XILINX_VCU is not set
# end of Xilinx SoC drivers
# end of SOC (System On Chip) specific Drivers

CONFIG_PM_DEVFREQ=y

#
# DEVFREQ Governors
#
CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=m
# CONFIG_DEVFREQ_GOV_PERFORMANCE is not set
# CONFIG_DEVFREQ_GOV_POWERSAVE is not set
# CONFIG_DEVFREQ_GOV_USERSPACE is not set
# CONFIG_DEVFREQ_GOV_PASSIVE is not set

#
# DEVFREQ Drivers
#
# CONFIG_PM_DEVFREQ_EVENT is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
CONFIG_IIO=y
CONFIG_IIO_BUFFER=y
CONFIG_IIO_BUFFER_CB=y
# CONFIG_IIO_BUFFER_HW_CONSUMER is not set
CONFIG_IIO_KFIFO_BUF=y
CONFIG_IIO_TRIGGERED_BUFFER=m
# CONFIG_IIO_CONFIGFS is not set
CONFIG_IIO_TRIGGER=y
CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
# CONFIG_IIO_SW_DEVICE is not set
# CONFIG_IIO_SW_TRIGGER is not set

#
# Accelerometers
#
# CONFIG_ADIS16201 is not set
# CONFIG_ADIS16209 is not set
# CONFIG_ADXL345_I2C is not set
# CONFIG_ADXL345_SPI is not set
# CONFIG_ADXL372_SPI is not set
# CONFIG_ADXL372_I2C is not set
# CONFIG_BMA180 is not set
# CONFIG_BMA220 is not set
# CONFIG_BMA400 is not set
# CONFIG_BMC150_ACCEL is not set
# CONFIG_DA280 is not set
# CONFIG_DA311 is not set
# CONFIG_DMARD09 is not set
# CONFIG_DMARD10 is not set
CONFIG_HID_SENSOR_ACCEL_3D=m
# CONFIG_IIO_ST_ACCEL_3AXIS is not set
# CONFIG_KXSD9 is not set
# CONFIG_KXCJK1013 is not set
# CONFIG_MC3230 is not set
# CONFIG_MMA7455_I2C is not set
# CONFIG_MMA7455_SPI is not set
# CONFIG_MMA7660 is not set
# CONFIG_MMA8452 is not set
# CONFIG_MMA9551 is not set
# CONFIG_MMA9553 is not set
# CONFIG_MXC4005 is not set
# CONFIG_MXC6255 is not set
# CONFIG_SCA3000 is not set
# CONFIG_STK8312 is not set
# CONFIG_STK8BA50 is not set
# end of Accelerometers

#
# Analog to digital converters
#
# CONFIG_AD7091R5 is not set
# CONFIG_AD7124 is not set
# CONFIG_AD7192 is not set
# CONFIG_AD7266 is not set
# CONFIG_AD7291 is not set
# CONFIG_AD7292 is not set
# CONFIG_AD7298 is not set
# CONFIG_AD7476 is not set
# CONFIG_AD7606_IFACE_PARALLEL is not set
# CONFIG_AD7606_IFACE_SPI is not set
# CONFIG_AD7766 is not set
# CONFIG_AD7768_1 is not set
# CONFIG_AD7780 is not set
# CONFIG_AD7791 is not set
# CONFIG_AD7793 is not set
# CONFIG_AD7887 is not set
# CONFIG_AD7923 is not set
# CONFIG_AD7949 is not set
# CONFIG_AD799X is not set
# CONFIG_HI8435 is not set
# CONFIG_HX711 is not set
# CONFIG_INA2XX_ADC is not set
# CONFIG_LTC2471 is not set
# CONFIG_LTC2485 is not set
# CONFIG_LTC2496 is not set
# CONFIG_LTC2497 is not set
# CONFIG_MAX1027 is not set
# CONFIG_MAX11100 is not set
# CONFIG_MAX1118 is not set
# CONFIG_MAX1363 is not set
# CONFIG_MAX9611 is not set
# CONFIG_MCP320X is not set
# CONFIG_MCP3422 is not set
# CONFIG_MCP3911 is not set
# CONFIG_NAU7802 is not set
# CONFIG_TI_ADC081C is not set
# CONFIG_TI_ADC0832 is not set
# CONFIG_TI_ADC084S021 is not set
# CONFIG_TI_ADC12138 is not set
# CONFIG_TI_ADC108S102 is not set
# CONFIG_TI_ADC128S052 is not set
# CONFIG_TI_ADC161S626 is not set
# CONFIG_TI_ADS1015 is not set
# CONFIG_TI_ADS7950 is not set
# CONFIG_TI_TLC4541 is not set
# CONFIG_VIPERBOARD_ADC is not set
# CONFIG_XILINX_XADC is not set
# end of Analog to digital converters

#
# Analog Front Ends
#
# end of Analog Front Ends

#
# Amplifiers
#
# CONFIG_AD8366 is not set
# CONFIG_HMC425 is not set
# end of Amplifiers

#
# Chemical Sensors
#
# CONFIG_ATLAS_PH_SENSOR is not set
# CONFIG_BME680 is not set
# CONFIG_CCS811 is not set
# CONFIG_IAQCORE is not set
# CONFIG_SENSIRION_SGP30 is not set
# CONFIG_SPS30 is not set
# CONFIG_VZ89X is not set
# end of Chemical Sensors

#
# Hid Sensor IIO Common
#
CONFIG_HID_SENSOR_IIO_COMMON=m
CONFIG_HID_SENSOR_IIO_TRIGGER=m
# end of Hid Sensor IIO Common

#
# SSP Sensor Common
#
# CONFIG_IIO_SSP_SENSORHUB is not set
# end of SSP Sensor Common

#
# Digital to analog converters
#
# CONFIG_AD5064 is not set
# CONFIG_AD5360 is not set
# CONFIG_AD5380 is not set
# CONFIG_AD5421 is not set
# CONFIG_AD5446 is not set
# CONFIG_AD5449 is not set
# CONFIG_AD5592R is not set
# CONFIG_AD5593R is not set
# CONFIG_AD5504 is not set
# CONFIG_AD5624R_SPI is not set
# CONFIG_AD5686_SPI is not set
# CONFIG_AD5696_I2C is not set
# CONFIG_AD5755 is not set
# CONFIG_AD5758 is not set
# CONFIG_AD5761 is not set
# CONFIG_AD5764 is not set
# CONFIG_AD5770R is not set
# CONFIG_AD5791 is not set
# CONFIG_AD7303 is not set
# CONFIG_AD8801 is not set
# CONFIG_DS4424 is not set
# CONFIG_LTC1660 is not set
# CONFIG_LTC2632 is not set
# CONFIG_M62332 is not set
# CONFIG_MAX517 is not set
# CONFIG_MCP4725 is not set
# CONFIG_MCP4922 is not set
# CONFIG_TI_DAC082S085 is not set
# CONFIG_TI_DAC5571 is not set
# CONFIG_TI_DAC7311 is not set
# CONFIG_TI_DAC7612 is not set
# end of Digital to analog converters

#
# IIO dummy driver
#
# end of IIO dummy driver

#
# Frequency Synthesizers DDS/PLL
#

#
# Clock Generator/Distribution
#
# CONFIG_AD9523 is not set
# end of Clock Generator/Distribution

#
# Phase-Locked Loop (PLL) frequency synthesizers
#
# CONFIG_ADF4350 is not set
# CONFIG_ADF4371 is not set
# end of Phase-Locked Loop (PLL) frequency synthesizers
# end of Frequency Synthesizers DDS/PLL

#
# Digital gyroscope sensors
#
# CONFIG_ADIS16080 is not set
# CONFIG_ADIS16130 is not set
# CONFIG_ADIS16136 is not set
# CONFIG_ADIS16260 is not set
# CONFIG_ADXRS450 is not set
# CONFIG_BMG160 is not set
# CONFIG_FXAS21002C is not set
CONFIG_HID_SENSOR_GYRO_3D=m
# CONFIG_MPU3050_I2C is not set
# CONFIG_IIO_ST_GYRO_3AXIS is not set
# CONFIG_ITG3200 is not set
# end of Digital gyroscope sensors

#
# Health Sensors
#

#
# Heart Rate Monitors
#
# CONFIG_AFE4403 is not set
# CONFIG_AFE4404 is not set
# CONFIG_MAX30100 is not set
# CONFIG_MAX30102 is not set
# end of Heart Rate Monitors
# end of Health Sensors

#
# Humidity sensors
#
# CONFIG_AM2315 is not set
# CONFIG_DHT11 is not set
# CONFIG_HDC100X is not set
# CONFIG_HID_SENSOR_HUMIDITY is not set
# CONFIG_HTS221 is not set
# CONFIG_HTU21 is not set
# CONFIG_SI7005 is not set
# CONFIG_SI7020 is not set
# end of Humidity sensors

#
# Inertial measurement units
#
# CONFIG_ADIS16400 is not set
# CONFIG_ADIS16460 is not set
# CONFIG_ADIS16480 is not set
# CONFIG_BMI160_I2C is not set
# CONFIG_BMI160_SPI is not set
# CONFIG_FXOS8700_I2C is not set
# CONFIG_FXOS8700_SPI is not set
# CONFIG_KMX61 is not set
# CONFIG_INV_MPU6050_I2C is not set
# CONFIG_INV_MPU6050_SPI is not set
# CONFIG_IIO_ST_LSM6DSX is not set
# end of Inertial measurement units

#
# Light sensors
#
# CONFIG_ACPI_ALS is not set
# CONFIG_ADJD_S311 is not set
# CONFIG_ADUX1020 is not set
# CONFIG_AL3010 is not set
# CONFIG_AL3320A is not set
# CONFIG_APDS9300 is not set
# CONFIG_APDS9960 is not set
# CONFIG_BH1750 is not set
# CONFIG_BH1780 is not set
# CONFIG_CM32181 is not set
# CONFIG_CM3232 is not set
# CONFIG_CM3323 is not set
# CONFIG_CM36651 is not set
# CONFIG_GP2AP002 is not set
# CONFIG_GP2AP020A00F is not set
# CONFIG_SENSORS_ISL29018 is not set
# CONFIG_SENSORS_ISL29028 is not set
# CONFIG_ISL29125 is not set
CONFIG_HID_SENSOR_ALS=m
CONFIG_HID_SENSOR_PROX=m
# CONFIG_JSA1212 is not set
# CONFIG_RPR0521 is not set
# CONFIG_LTR501 is not set
# CONFIG_LV0104CS is not set
# CONFIG_MAX44000 is not set
# CONFIG_MAX44009 is not set
# CONFIG_NOA1305 is not set
# CONFIG_OPT3001 is not set
# CONFIG_PA12203001 is not set
# CONFIG_SI1133 is not set
# CONFIG_SI1145 is not set
# CONFIG_STK3310 is not set
# CONFIG_ST_UVIS25 is not set
# CONFIG_TCS3414 is not set
# CONFIG_TCS3472 is not set
# CONFIG_SENSORS_TSL2563 is not set
# CONFIG_TSL2583 is not set
# CONFIG_TSL2772 is not set
# CONFIG_TSL4531 is not set
# CONFIG_US5182D is not set
# CONFIG_VCNL4000 is not set
# CONFIG_VCNL4035 is not set
# CONFIG_VEML6030 is not set
# CONFIG_VEML6070 is not set
# CONFIG_VL6180 is not set
# CONFIG_ZOPT2201 is not set
# end of Light sensors

#
# Magnetometer sensors
#
# CONFIG_AK8975 is not set
# CONFIG_AK09911 is not set
# CONFIG_BMC150_MAGN_I2C is not set
# CONFIG_BMC150_MAGN_SPI is not set
# CONFIG_MAG3110 is not set
CONFIG_HID_SENSOR_MAGNETOMETER_3D=m
# CONFIG_MMC35240 is not set
# CONFIG_IIO_ST_MAGN_3AXIS is not set
# CONFIG_SENSORS_HMC5843_I2C is not set
# CONFIG_SENSORS_HMC5843_SPI is not set
# CONFIG_SENSORS_RM3100_I2C is not set
# CONFIG_SENSORS_RM3100_SPI is not set
# end of Magnetometer sensors

#
# Multiplexers
#
# end of Multiplexers

#
# Inclinometer sensors
#
CONFIG_HID_SENSOR_INCLINOMETER_3D=m
CONFIG_HID_SENSOR_DEVICE_ROTATION=m
# end of Inclinometer sensors

#
# Triggers - standalone
#
# CONFIG_IIO_INTERRUPT_TRIGGER is not set
# CONFIG_IIO_SYSFS_TRIGGER is not set
# end of Triggers - standalone

#
# Linear and angular position sensors
#
# end of Linear and angular position sensors

#
# Digital potentiometers
#
# CONFIG_AD5272 is not set
# CONFIG_DS1803 is not set
# CONFIG_MAX5432 is not set
# CONFIG_MAX5481 is not set
# CONFIG_MAX5487 is not set
# CONFIG_MCP4018 is not set
# CONFIG_MCP4131 is not set
# CONFIG_MCP4531 is not set
# CONFIG_MCP41010 is not set
# CONFIG_TPL0102 is not set
# end of Digital potentiometers

#
# Digital potentiostats
#
# CONFIG_LMP91000 is not set
# end of Digital potentiostats

#
# Pressure sensors
#
# CONFIG_ABP060MG is not set
# CONFIG_BMP280 is not set
# CONFIG_DLHL60D is not set
# CONFIG_DPS310 is not set
CONFIG_HID_SENSOR_PRESS=m
# CONFIG_HP03 is not set
# CONFIG_ICP10100 is not set
# CONFIG_MPL115_I2C is not set
# CONFIG_MPL115_SPI is not set
# CONFIG_MPL3115 is not set
# CONFIG_MS5611 is not set
# CONFIG_MS5637 is not set
# CONFIG_IIO_ST_PRESS is not set
# CONFIG_T5403 is not set
# CONFIG_HP206C is not set
# CONFIG_ZPA2326 is not set
# end of Pressure sensors

#
# Lightning sensors
#
# CONFIG_AS3935 is not set
# end of Lightning sensors

#
# Proximity and distance sensors
#
# CONFIG_ISL29501 is not set
# CONFIG_LIDAR_LITE_V2 is not set
# CONFIG_MB1232 is not set
# CONFIG_PING is not set
# CONFIG_RFD77402 is not set
# CONFIG_SRF04 is not set
# CONFIG_SX9500 is not set
# CONFIG_SRF08 is not set
# CONFIG_VL53L0X_I2C is not set
# end of Proximity and distance sensors

#
# Resolver to digital converters
#
# CONFIG_AD2S90 is not set
# CONFIG_AD2S1200 is not set
# end of Resolver to digital converters

#
# Temperature sensors
#
# CONFIG_LTC2983 is not set
# CONFIG_MAXIM_THERMOCOUPLE is not set
# CONFIG_HID_SENSOR_TEMP is not set
# CONFIG_MLX90614 is not set
# CONFIG_MLX90632 is not set
# CONFIG_TMP006 is not set
# CONFIG_TMP007 is not set
# CONFIG_TSYS01 is not set
# CONFIG_TSYS02D is not set
# CONFIG_MAX31856 is not set
# end of Temperature sensors

CONFIG_NTB=m
# CONFIG_NTB_MSI is not set
CONFIG_NTB_AMD=m
# CONFIG_NTB_IDT is not set
# CONFIG_NTB_INTEL is not set
# CONFIG_NTB_SWITCHTEC is not set
# CONFIG_NTB_PINGPONG is not set
# CONFIG_NTB_TOOL is not set
CONFIG_NTB_PERF=m
CONFIG_NTB_TRANSPORT=m
# CONFIG_VME_BUS is not set
CONFIG_PWM=y
CONFIG_PWM_SYSFS=y
# CONFIG_PWM_DEBUG is not set
# CONFIG_PWM_LPSS_PCI is not set
# CONFIG_PWM_LPSS_PLATFORM is not set
# CONFIG_PWM_PCA9685 is not set

#
# IRQ chip support
#
# end of IRQ chip support

# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set

#
# PHY Subsystem
#
CONFIG_GENERIC_PHY=y
# CONFIG_BCM_KONA_USB2_PHY is not set
# CONFIG_PHY_PXA_28NM_HSIC is not set
# CONFIG_PHY_PXA_28NM_USB2 is not set
# CONFIG_PHY_CPCAP_USB is not set
# CONFIG_PHY_INTEL_EMMC is not set
# end of PHY Subsystem

CONFIG_POWERCAP=y
CONFIG_INTEL_RAPL_CORE=m
CONFIG_INTEL_RAPL=m
# CONFIG_IDLE_INJECT is not set
# CONFIG_MCB is not set

#
# Performance monitor support
#
# end of Performance monitor support

CONFIG_RAS=y
# CONFIG_RAS_CEC is not set
# CONFIG_USB4 is not set

#
# Android
#
# CONFIG_ANDROID is not set
# end of Android

CONFIG_LIBNVDIMM=m
CONFIG_BLK_DEV_PMEM=m
CONFIG_ND_BLK=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_DAX_DRIVER=y
CONFIG_DAX=y
CONFIG_DEV_DAX=m
CONFIG_DEV_DAX_PMEM=m
CONFIG_DEV_DAX_KMEM=m
CONFIG_DEV_DAX_PMEM_COMPAT=m
CONFIG_NVMEM=y
CONFIG_NVMEM_SYSFS=y

#
# HW tracing support
#
# CONFIG_STM is not set
# CONFIG_INTEL_TH is not set
# end of HW tracing support

# CONFIG_FPGA is not set
# CONFIG_TEE is not set
CONFIG_PM_OPP=y
# CONFIG_UNISYS_VISORBUS is not set
# CONFIG_SIOX is not set
# CONFIG_SLIMBUS is not set
# CONFIG_INTERCONNECT is not set
# CONFIG_COUNTER is not set
# CONFIG_MOST is not set
# end of Device Drivers

#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_VALIDATE_FS_PARSER is not set
CONFIG_FS_IOMAP=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is 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 is not set
CONFIG_EXT4_KUNIT_TESTS=m
CONFIG_JBD2=m
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=m
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_XFS_FS=m
CONFIG_XFS_QUOTA=y
CONFIG_XFS_POSIX_ACL=y
CONFIG_XFS_RT=y
CONFIG_XFS_ONLINE_SCRUB=y
CONFIG_XFS_ONLINE_REPAIR=y
CONFIG_XFS_DEBUG=y
CONFIG_XFS_ASSERT_FATAL=y
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 is not set
CONFIG_BTRFS_FS=m
CONFIG_BTRFS_FS_POSIX_ACL=y
# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
# CONFIG_BTRFS_DEBUG is not set
# CONFIG_BTRFS_ASSERT is not set
# CONFIG_BTRFS_FS_REF_VERIFY is not set
# CONFIG_NILFS2_FS is not set
CONFIG_F2FS_FS=m
CONFIG_F2FS_STAT_FS=y
CONFIG_F2FS_FS_XATTR=y
CONFIG_F2FS_FS_POSIX_ACL=y
CONFIG_F2FS_FS_SECURITY=y
# CONFIG_F2FS_CHECK_FS is not set
# CONFIG_F2FS_IO_TRACE is not set
# CONFIG_F2FS_FAULT_INJECTION is not set
# CONFIG_F2FS_FS_COMPRESSION is not set
# CONFIG_ZONEFS_FS is not set
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_MANDATORY_FILE_LOCKING=y
CONFIG_FS_ENCRYPTION=y
CONFIG_FS_ENCRYPTION_ALGS=m
# CONFIG_FS_VERITY is 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_PRINT_QUOTA_WARNING=y
# CONFIG_QUOTA_DEBUG is not set
CONFIG_QUOTA_TREE=y
# CONFIG_QFMT_V1 is not set
CONFIG_QFMT_V2=y
CONFIG_QUOTACTL=y
CONFIG_QUOTACTL_COMPAT=y
CONFIG_AUTOFS4_FS=y
CONFIG_AUTOFS_FS=y
CONFIG_FUSE_FS=m
CONFIG_CUSE=m
# CONFIG_VIRTIO_FS is not set
CONFIG_OVERLAY_FS=m
# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
# CONFIG_OVERLAY_FS_INDEX is not set
# CONFIG_OVERLAY_FS_XINO_AUTO is not set
# CONFIG_OVERLAY_FS_METACOPY is not set

#
# Caches
#
CONFIG_FSCACHE=m
CONFIG_FSCACHE_STATS=y
# CONFIG_FSCACHE_HISTOGRAM is not set
# CONFIG_FSCACHE_DEBUG is not set
# CONFIG_FSCACHE_OBJECT_LIST is not set
CONFIG_CACHEFILES=m
# CONFIG_CACHEFILES_DEBUG is not set
# CONFIG_CACHEFILES_HISTOGRAM is not set
# end of Caches

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_UDF_FS=m
# end of CD-ROM/DVD Filesystems

#
# DOS/FAT/EXFAT/NT Filesystems
#
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
# CONFIG_FAT_DEFAULT_UTF8 is not set
# CONFIG_EXFAT_FS is not set
# CONFIG_NTFS_FS is not set
# end of DOS/FAT/EXFAT/NT Filesystems

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set
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_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_MEMFD_CREATE=y
CONFIG_ARCH_HAS_GIGANTIC_PAGE=y
CONFIG_CONFIGFS_FS=y
CONFIG_EFIVAR_FS=y
# end of Pseudo filesystems

CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ORANGEFS_FS is not set
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_ECRYPT_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_JFFS2_FS is not set
# CONFIG_UBIFS_FS is not set
CONFIG_CRAMFS=m
CONFIG_CRAMFS_BLOCKDEV=y
# CONFIG_CRAMFS_MTD is not set
CONFIG_SQUASHFS=m
CONFIG_SQUASHFS_FILE_CACHE=y
# CONFIG_SQUASHFS_FILE_DIRECT is not set
CONFIG_SQUASHFS_DECOMP_SINGLE=y
# CONFIG_SQUASHFS_DECOMP_MULTI is not set
# CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set
CONFIG_SQUASHFS_XATTR=y
CONFIG_SQUASHFS_ZLIB=y
# CONFIG_SQUASHFS_LZ4 is not set
CONFIG_SQUASHFS_LZO=y
CONFIG_SQUASHFS_XZ=y
# CONFIG_SQUASHFS_ZSTD is not set
# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
# CONFIG_SQUASHFS_EMBEDDED is not set
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
# CONFIG_VXFS_FS is not set
CONFIG_MINIX_FS=m
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_PSTORE=y
CONFIG_PSTORE_DEFLATE_COMPRESS=y
# CONFIG_PSTORE_LZO_COMPRESS is not set
# CONFIG_PSTORE_LZ4_COMPRESS is not set
# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
# CONFIG_PSTORE_842_COMPRESS is not set
# CONFIG_PSTORE_ZSTD_COMPRESS is not set
CONFIG_PSTORE_COMPRESS=y
CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
CONFIG_PSTORE_COMPRESS_DEFAULT="deflate"
# CONFIG_PSTORE_CONSOLE is not set
# CONFIG_PSTORE_PMSG is not set
# CONFIG_PSTORE_FTRACE is not set
CONFIG_PSTORE_RAM=m
# CONFIG_PSTORE_BLK is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
# CONFIG_EROFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
# CONFIG_NFS_V2 is not set
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=m
# CONFIG_NFS_SWAP is not set
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 is not set
CONFIG_NFS_V4_SECURITY_LABEL=y
CONFIG_ROOT_NFS=y
# CONFIG_NFS_USE_LEGACY_DNS is not set
CONFIG_NFS_USE_KERNEL_DNS=y
CONFIG_NFS_DEBUG=y
CONFIG_NFS_DISABLE_UDP_SUPPORT=y
CONFIG_NFSD=m
CONFIG_NFSD_V2_ACL=y
CONFIG_NFSD_V3=y
CONFIG_NFSD_V3_ACL=y
CONFIG_NFSD_V4=y
CONFIG_NFSD_PNFS=y
# CONFIG_NFSD_BLOCKLAYOUT is not set
CONFIG_NFSD_SCSILAYOUT=y
# CONFIG_NFSD_FLEXFILELAYOUT is not set
# CONFIG_NFSD_V4_2_INTER_SSC is not set
CONFIG_NFSD_V4_SECURITY_LABEL=y
CONFIG_GRACE_PERIOD=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=m
CONFIG_SUNRPC_BACKCHANNEL=y
CONFIG_RPCSEC_GSS_KRB5=m
# CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES is not set
CONFIG_SUNRPC_DEBUG=y
CONFIG_SUNRPC_XPRT_RDMA=m
CONFIG_CEPH_FS=m
# CONFIG_CEPH_FSCACHE is not set
CONFIG_CEPH_FS_POSIX_ACL=y
# CONFIG_CEPH_FS_SECURITY_LABEL is not set
CONFIG_CIFS=m
# CONFIG_CIFS_STATS2 is not set
CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
CONFIG_CIFS_WEAK_PW_HASH=y
CONFIG_CIFS_UPCALL=y
CONFIG_CIFS_XATTR=y
CONFIG_CIFS_POSIX=y
CONFIG_CIFS_DEBUG=y
# CONFIG_CIFS_DEBUG2 is not set
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
CONFIG_CIFS_DFS_UPCALL=y
# CONFIG_CIFS_SMB_DIRECT is not set
# CONFIG_CIFS_FSCACHE is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_9P_FS=y
CONFIG_9P_FS_POSIX_ACL=y
# CONFIG_9P_FS_SECURITY is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
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=y
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 is not set
CONFIG_IO_WQ=y
# end of File systems

#
# Security options
#
CONFIG_KEYS=y
# CONFIG_KEYS_REQUEST_CACHE is not set
CONFIG_PERSISTENT_KEYRINGS=y
CONFIG_BIG_KEYS=y
CONFIG_TRUSTED_KEYS=y
CONFIG_ENCRYPTED_KEYS=y
# CONFIG_KEY_DH_OPERATIONS is not set
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
CONFIG_SECURITY_NETWORK=y
CONFIG_PAGE_TABLE_ISOLATION=y
# CONFIG_SECURITY_INFINIBAND is not set
CONFIG_SECURITY_NETWORK_XFRM=y
CONFIG_SECURITY_PATH=y
CONFIG_INTEL_TXT=y
CONFIG_LSM_MMAP_MIN_ADDR=65535
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_FALLBACK=y
# CONFIG_FORTIFY_SOURCE is not set
# CONFIG_STATIC_USERMODEHELPER is not set
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
# CONFIG_SECURITY_SELINUX_DISABLE is not set
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
# CONFIG_SECURITY_SMACK is not set
# CONFIG_SECURITY_TOMOYO is not set
CONFIG_SECURITY_APPARMOR=y
CONFIG_SECURITY_APPARMOR_HASH=y
CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y
# CONFIG_SECURITY_APPARMOR_DEBUG is not set
# CONFIG_SECURITY_APPARMOR_KUNIT_TEST is not set
# CONFIG_SECURITY_LOADPIN is not set
CONFIG_SECURITY_YAMA=y
# CONFIG_SECURITY_SAFESETID is not set
# CONFIG_SECURITY_LOCKDOWN_LSM is not set
CONFIG_INTEGRITY=y
CONFIG_INTEGRITY_SIGNATURE=y
CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y
CONFIG_INTEGRITY_TRUSTED_KEYRING=y
# CONFIG_INTEGRITY_PLATFORM_KEYRING is not set
CONFIG_INTEGRITY_AUDIT=y
CONFIG_IMA=y
CONFIG_IMA_MEASURE_PCR_IDX=10
CONFIG_IMA_LSM_RULES=y
# CONFIG_IMA_TEMPLATE is not set
CONFIG_IMA_NG_TEMPLATE=y
# CONFIG_IMA_SIG_TEMPLATE is not set
CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng"
CONFIG_IMA_DEFAULT_HASH_SHA1=y
# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set
CONFIG_IMA_DEFAULT_HASH="sha1"
# CONFIG_IMA_WRITE_POLICY is not set
# CONFIG_IMA_READ_POLICY is not set
CONFIG_IMA_APPRAISE=y
# CONFIG_IMA_ARCH_POLICY is not set
# CONFIG_IMA_APPRAISE_BUILD_POLICY is not set
CONFIG_IMA_APPRAISE_BOOTPARAM=y
# CONFIG_IMA_APPRAISE_MODSIG is not set
CONFIG_IMA_TRUSTED_KEYRING=y
# CONFIG_IMA_BLACKLIST_KEYRING is not set
# CONFIG_IMA_LOAD_X509 is not set
CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y
CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y
# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set
CONFIG_EVM=y
CONFIG_EVM_ATTR_FSUUID=y
# CONFIG_EVM_ADD_XATTRS is not set
# CONFIG_EVM_LOAD_X509 is not set
CONFIG_DEFAULT_SECURITY_SELINUX=y
# CONFIG_DEFAULT_SECURITY_APPARMOR is not set
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,selinux,smack,tomoyo,apparmor,bpf"

#
# Kernel hardening options
#

#
# Memory initialization
#
CONFIG_INIT_STACK_NONE=y
# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
# end of Memory initialization
# end of Kernel hardening options
# end of Security options

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

#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=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=m
CONFIG_CRYPTO_ACOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
CONFIG_CRYPTO_USER=m
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=y
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_GLUE_HELPER_X86=m
CONFIG_CRYPTO_ENGINE=m

#
# Public-key cryptography
#
CONFIG_CRYPTO_RSA=y
CONFIG_CRYPTO_DH=m
CONFIG_CRYPTO_ECC=m
CONFIG_CRYPTO_ECDH=m
# CONFIG_CRYPTO_ECRDSA is not set
# CONFIG_CRYPTO_CURVE25519 is not set
# CONFIG_CRYPTO_CURVE25519_X86 is not set

#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=m
CONFIG_CRYPTO_GCM=y
# CONFIG_CRYPTO_CHACHA20POLY1305 is not set
# CONFIG_CRYPTO_AEGIS128 is not set
# CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 is not set
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=m

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CFB is not set
CONFIG_CRYPTO_CTR=y
CONFIG_CRYPTO_CTS=m
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=m
# CONFIG_CRYPTO_OFB is not set
CONFIG_CRYPTO_PCBC=m
CONFIG_CRYPTO_XTS=m
# CONFIG_CRYPTO_KEYWRAP is not set
# CONFIG_CRYPTO_NHPOLY1305_SSE2 is not set
# CONFIG_CRYPTO_NHPOLY1305_AVX2 is not set
# CONFIG_CRYPTO_ADIANTUM is not set
CONFIG_CRYPTO_ESSIV=m

#
# Hash modes
#
CONFIG_CRYPTO_CMAC=m
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_XCBC=m
CONFIG_CRYPTO_VMAC=m

#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_INTEL=m
CONFIG_CRYPTO_CRC32=m
CONFIG_CRYPTO_CRC32_PCLMUL=m
CONFIG_CRYPTO_XXHASH=m
CONFIG_CRYPTO_BLAKE2B=m
# CONFIG_CRYPTO_BLAKE2S is not set
# CONFIG_CRYPTO_BLAKE2S_X86 is not set
CONFIG_CRYPTO_CRCT10DIF=y
CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m
CONFIG_CRYPTO_GHASH=y
# CONFIG_CRYPTO_POLY1305 is not set
# CONFIG_CRYPTO_POLY1305_X86_64 is not set
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=m
CONFIG_CRYPTO_RMD128=m
CONFIG_CRYPTO_RMD160=m
CONFIG_CRYPTO_RMD256=m
CONFIG_CRYPTO_RMD320=m
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA1_SSSE3=y
CONFIG_CRYPTO_SHA256_SSSE3=y
CONFIG_CRYPTO_SHA512_SSSE3=m
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=m
# CONFIG_CRYPTO_SHA3 is not set
# CONFIG_CRYPTO_SM3 is not set
# CONFIG_CRYPTO_STREEBOG is not set
CONFIG_CRYPTO_TGR192=m
CONFIG_CRYPTO_WP512=m
CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_TI is not set
CONFIG_CRYPTO_AES_NI_INTEL=m
CONFIG_CRYPTO_ANUBIS=m
CONFIG_CRYPTO_ARC4=m
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_BLOWFISH_COMMON=m
CONFIG_CRYPTO_BLOWFISH_X86_64=m
CONFIG_CRYPTO_CAMELLIA=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_CAST_COMMON=m
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST5_AVX_X86_64=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_CAST6_AVX_X86_64=m
CONFIG_CRYPTO_DES=m
# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set
CONFIG_CRYPTO_FCRYPT=m
CONFIG_CRYPTO_KHAZAD=m
CONFIG_CRYPTO_SALSA20=m
# CONFIG_CRYPTO_CHACHA20 is not set
# CONFIG_CRYPTO_CHACHA20_X86_64 is not set
CONFIG_CRYPTO_SEED=m
CONFIG_CRYPTO_SERPENT=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 is not set
CONFIG_CRYPTO_TEA=m
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_TWOFISH_COMMON=m
CONFIG_CRYPTO_TWOFISH_X86_64=m
CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m
CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m

#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_LZO=y
# CONFIG_CRYPTO_842 is not set
# CONFIG_CRYPTO_LZ4 is not set
# CONFIG_CRYPTO_LZ4HC is not set
# CONFIG_CRYPTO_ZSTD is not set

#
# Random Number Generation
#
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_USER_API=y
CONFIG_CRYPTO_USER_API_HASH=y
CONFIG_CRYPTO_USER_API_SKCIPHER=y
CONFIG_CRYPTO_USER_API_RNG=m
# CONFIG_CRYPTO_USER_API_AEAD is not set
# CONFIG_CRYPTO_STATS is not set
CONFIG_CRYPTO_HASH_INFO=y

#
# Crypto library routines
#
CONFIG_CRYPTO_LIB_AES=y
CONFIG_CRYPTO_LIB_ARC4=m
# CONFIG_CRYPTO_LIB_BLAKE2S is not set
# CONFIG_CRYPTO_LIB_CHACHA is not set
# CONFIG_CRYPTO_LIB_CURVE25519 is not set
CONFIG_CRYPTO_LIB_DES=m
CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
# CONFIG_CRYPTO_LIB_POLY1305 is not set
# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set
CONFIG_CRYPTO_LIB_SHA256=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_ECC is not set
# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set
CONFIG_CRYPTO_DEV_CCP=y
CONFIG_CRYPTO_DEV_CCP_DD=y
CONFIG_CRYPTO_DEV_SP_CCP=y
CONFIG_CRYPTO_DEV_CCP_CRYPTO=m
CONFIG_CRYPTO_DEV_SP_PSP=y
# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set
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_DH895xCCVF=m
CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m
CONFIG_CRYPTO_DEV_QAT_C62XVF=m
# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set
CONFIG_CRYPTO_DEV_CHELSIO=m
CONFIG_CRYPTO_DEV_VIRTIO=m
# CONFIG_CRYPTO_DEV_SAFEXCEL is not set
# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
# CONFIG_ASYMMETRIC_TPM_KEY_SUBTYPE is not set
CONFIG_X509_CERTIFICATE_PARSER=y
# CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set
CONFIG_PKCS7_MESSAGE_PARSER=y
# CONFIG_PKCS7_TEST_KEY is not set
CONFIG_SIGNED_PE_FILE_VERIFICATION=y

#
# Certificates for signature checking
#
CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
CONFIG_SYSTEM_TRUSTED_KEYRING=y
CONFIG_SYSTEM_TRUSTED_KEYS=""
# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
CONFIG_SYSTEM_BLACKLIST_KEYRING=y
CONFIG_SYSTEM_BLACKLIST_HASH_LIST=""
# end of Certificates for signature checking

CONFIG_BINARY_PRINTF=y

#
# Library routines
#
CONFIG_RAID6_PQ=m
CONFIG_RAID6_PQ_BENCHMARK=y
# CONFIG_PACKING is not set
CONFIG_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_CORDIC=m
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_CRC_CCITT=y
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=m
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
# CONFIG_CRC64 is not set
# CONFIG_CRC4 is not set
# CONFIG_CRC7 is not set
CONFIG_LIBCRC32C=m
CONFIG_CRC8=m
CONFIG_XXHASH=y
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_DECOMPRESS=y
CONFIG_ZSTD_COMPRESS=m
CONFIG_ZSTD_DECOMPRESS=m
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_BCJ=y
# CONFIG_XZ_DEC_TEST is 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_GENERIC_ALLOCATOR=y
CONFIG_REED_SOLOMON=m
CONFIG_REED_SOLOMON_ENC8=y
CONFIG_REED_SOLOMON_DEC8=y
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_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=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_DMA_VIRT_OPS=y
CONFIG_SWIOTLB=y
CONFIG_DMA_CMA=y

#
# Default contiguous memory area size:
#
CONFIG_CMA_SIZE_MBYTES=200
CONFIG_CMA_SIZE_SEL_MBYTES=y
# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
# CONFIG_CMA_SIZE_SEL_MIN is not set
# CONFIG_CMA_SIZE_SEL_MAX is not set
CONFIG_CMA_ALIGNMENT=8
# CONFIG_DMA_API_DEBUG is not set
CONFIG_SGL_ALLOC=y
CONFIG_IOMMU_HELPER=y
CONFIG_CHECK_SIGNATURE=y
CONFIG_CPUMASK_OFFSTACK=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is 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 is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
CONFIG_SG_POOL=y
CONFIG_ARCH_HAS_PMEM_API=y
CONFIG_MEMREGION=y
CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y
CONFIG_ARCH_HAS_UACCESS_MCSAFE=y
CONFIG_ARCH_STACKWALK=y
CONFIG_SBITMAP=y
# CONFIG_STRING_SELFTEST is not set
# end of Library routines

#
# Kernel hacking
#

#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
# CONFIG_PRINTK_CALLER is not set
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
CONFIG_BOOT_PRINTK_DELAY=y
CONFIG_DYNAMIC_DEBUG=y
CONFIG_SYMBOLIC_ERRNAME=y
CONFIG_DEBUG_BUGVERBOSE=y
# end of printk and dmesg options

#
# Compile-time checks and compiler options
#
CONFIG_DEBUG_INFO=y
CONFIG_DEBUG_INFO_REDUCED=y
# CONFIG_DEBUG_INFO_SPLIT is not set
# CONFIG_DEBUG_INFO_DWARF4 is not set
# CONFIG_GDB_SCRIPTS is not set
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=2048
CONFIG_STRIP_ASM_SYMS=y
# CONFIG_READABLE_ASM is not set
# CONFIG_HEADERS_INSTALL is not set
CONFIG_DEBUG_SECTION_MISMATCH=y
CONFIG_SECTION_MISMATCH_WARN_ONLY=y
CONFIG_STACK_VALIDATION=y
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
# end of Compile-time checks and compiler options

#
# Generic Kernel Debugging Instruments
#
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_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
# CONFIG_UBSAN is not set
# end of Generic Kernel Debugging Instruments

CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_MISC=y

#
# Memory Debugging
#
# CONFIG_PAGE_EXTENSION is not set
# CONFIG_DEBUG_PAGEALLOC is not set
# CONFIG_PAGE_OWNER is not set
# CONFIG_PAGE_POISONING is not set
# CONFIG_DEBUG_PAGE_REF is not set
CONFIG_DEBUG_RODATA_TEST=y
CONFIG_GENERIC_PTDUMP=y
# CONFIG_PTDUMP_DEBUGFS is not set
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_SLUB_DEBUG_ON is not set
# CONFIG_SLUB_STATS is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_SCHED_STACK_END_CHECK is not set
# CONFIG_DEBUG_VM is not set
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
# CONFIG_DEBUG_VIRTUAL is not set
CONFIG_DEBUG_MEMORY_INIT=y
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_HAVE_ARCH_KASAN=y
CONFIG_HAVE_ARCH_KASAN_VMALLOC=y
CONFIG_CC_HAS_KASAN_GENERIC=y
# CONFIG_KASAN is not set
CONFIG_KASAN_STACK=1
# end of Memory Debugging

CONFIG_DEBUG_SHIRQ=y

#
# Debug Oops, Lockups and Hangs
#
CONFIG_PANIC_ON_OOPS=y
CONFIG_PANIC_ON_OOPS_VALUE=1
CONFIG_PANIC_TIMEOUT=0
CONFIG_LOCKUP_DETECTOR=y
CONFIG_SOFTLOCKUP_DETECTOR=y
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
CONFIG_HARDLOCKUP_DETECTOR_PERF=y
CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y
CONFIG_HARDLOCKUP_DETECTOR=y
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC=y
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=1
# CONFIG_DETECT_HUNG_TASK is not set
# CONFIG_WQ_WATCHDOG is not set
# CONFIG_TEST_LOCKUP is not set
# end of Debug Oops, Lockups and Hangs

#
# Scheduler Debugging
#
CONFIG_SCHED_DEBUG=y
CONFIG_SCHED_INFO=y
CONFIG_SCHEDSTATS=y
# end of Scheduler Debugging

# CONFIG_DEBUG_TIMEKEEPING is not set

#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_LOCK_DEBUGGING_SUPPORT=y
# CONFIG_PROVE_LOCKING is not set
# CONFIG_LOCK_STAT is not set
# CONFIG_DEBUG_RT_MUTEXES is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_MUTEXES is not set
# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
# CONFIG_DEBUG_RWSEMS is not set
# CONFIG_DEBUG_LOCK_ALLOC is not set
CONFIG_DEBUG_ATOMIC_SLEEP=y
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_LOCK_TORTURE_TEST=m
# CONFIG_WW_MUTEX_SELFTEST is not set
# end of Lock Debugging (spinlocks, mutexes, etc...)

CONFIG_STACKTRACE=y
# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
# CONFIG_DEBUG_KOBJECT is not set

#
# Debug kernel data structures
#
CONFIG_DEBUG_LIST=y
# CONFIG_DEBUG_PLIST is not set
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
# CONFIG_BUG_ON_DATA_CORRUPTION is not set
# end of Debug kernel data structures

# CONFIG_DEBUG_CREDENTIALS is not set

#
# RCU Debugging
#
CONFIG_TORTURE_TEST=m
CONFIG_RCU_PERF_TEST=m
CONFIG_RCU_TORTURE_TEST=m
CONFIG_RCU_CPU_STALL_TIMEOUT=60
# CONFIG_RCU_TRACE is not set
# CONFIG_RCU_EQS_DEBUG is not set
# end of RCU Debugging

# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
CONFIG_LATENCYTOP=y
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=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_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=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 is not set
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_FUNCTION_PROFILER=y
CONFIG_STACK_TRACER=y
# CONFIG_PREEMPTIRQ_EVENTS is not set
# CONFIG_IRQSOFF_TRACER is not set
CONFIG_SCHED_TRACER=y
CONFIG_HWLAT_TRACER=y
# CONFIG_MMIOTRACE is not set
CONFIG_FTRACE_SYSCALLS=y
CONFIG_TRACER_SNAPSHOT=y
# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_KPROBE_EVENTS=y
# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set
CONFIG_UPROBE_EVENTS=y
CONFIG_BPF_EVENTS=y
CONFIG_DYNAMIC_EVENTS=y
CONFIG_PROBE_EVENTS=y
# CONFIG_BPF_KPROBE_OVERRIDE is not set
CONFIG_FTRACE_MCOUNT_RECORD=y
CONFIG_TRACING_MAP=y
CONFIG_HIST_TRIGGERS=y
# CONFIG_TRACE_EVENT_INJECT is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
CONFIG_RING_BUFFER_BENCHMARK=m
# CONFIG_TRACE_EVAL_MAP_FILE is not set
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_PREEMPTIRQ_DELAY_TEST is not set
# CONFIG_SYNTH_EVENT_GEN_TEST is not set
# CONFIG_KPROBE_EVENT_GEN_TEST is not set
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
# CONFIG_SAMPLES is not set
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
CONFIG_STRICT_DEVMEM=y
# CONFIG_IO_STRICT_DEVMEM is not set

#
# x86 Debugging
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_EARLY_PRINTK_USB=y
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
# CONFIG_EARLY_PRINTK_USB_XDBC is not set
# CONFIG_EFI_PGT_DUMP is not set
# CONFIG_DEBUG_WX is not set
# CONFIG_DEBUG_TLBFLUSH is not set
# CONFIG_IOMMU_DEBUG is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_X86_DECODER_SELFTEST=y
CONFIG_IO_DELAY_0X80=y
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEBUG_BOOT_PARAMS=y
# CONFIG_CPA_DEBUG is not set
# CONFIG_DEBUG_ENTRY is not set
# CONFIG_DEBUG_NMI_SELFTEST is not set
CONFIG_X86_DEBUG_FPU=y
# CONFIG_PUNIT_ATOM_DEBUG is not set
CONFIG_UNWINDER_ORC=y
# CONFIG_UNWINDER_FRAME_POINTER is not set
# end of x86 Debugging

#
# Kernel Testing and Coverage
#
CONFIG_KUNIT=y
# CONFIG_KUNIT_DEBUGFS is not set
CONFIG_KUNIT_TEST=m
CONFIG_KUNIT_EXAMPLE_TEST=m
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
CONFIG_FUNCTION_ERROR_INJECTION=y
CONFIG_FAULT_INJECTION=y
# CONFIG_FAILSLAB is not set
# CONFIG_FAIL_PAGE_ALLOC is not set
CONFIG_FAIL_MAKE_REQUEST=y
# CONFIG_FAIL_IO_TIMEOUT is not set
# CONFIG_FAIL_FUTEX is not set
CONFIG_FAULT_INJECTION_DEBUG_FS=y
# CONFIG_FAIL_FUNCTION is not set
# CONFIG_FAIL_MMC_REQUEST is not set
CONFIG_ARCH_HAS_KCOV=y
CONFIG_CC_HAS_SANCOV_TRACE_PC=y
# CONFIG_KCOV is not set
CONFIG_RUNTIME_TESTING_MENU=y
# CONFIG_LKDTM is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_TEST_MIN_HEAP is not set
# CONFIG_TEST_SORT is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_REED_SOLOMON_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PERCPU_TEST is not set
CONFIG_ATOMIC64_SELFTEST=y
# CONFIG_ASYNC_RAID6_TEST is not set
# CONFIG_TEST_HEXDUMP is not set
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_STRSCPY is not set
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_TEST_PRINTF is not set
# CONFIG_TEST_BITMAP is not set
# CONFIG_TEST_BITFIELD is not set
# CONFIG_TEST_UUID is not set
# CONFIG_TEST_XARRAY is not set
# CONFIG_TEST_OVERFLOW is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_TEST_HASH is not set
# CONFIG_TEST_IDA is not set
# CONFIG_TEST_LKM is not set
# CONFIG_TEST_VMALLOC is not set
# CONFIG_TEST_USER_COPY is not set
CONFIG_TEST_BPF=m
# CONFIG_TEST_BLACKHOLE_DEV is not set
# CONFIG_FIND_BIT_BENCHMARK is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_SYSCTL is not set
CONFIG_SYSCTL_KUNIT_TEST=m
CONFIG_LIST_KUNIT_TEST=m
# CONFIG_LINEAR_RANGES_TEST is not set
# CONFIG_TEST_UDELAY is not set
# CONFIG_TEST_STATIC_KEYS is not set
# CONFIG_TEST_KMOD is not set
# CONFIG_TEST_MEMCAT_P is not set
# CONFIG_TEST_LIVEPATCH is not set
# CONFIG_TEST_STACKINIT is not set
# CONFIG_TEST_MEMINIT is not set
# CONFIG_MEMTEST is not set
# CONFIG_HYPERV_TESTING is not set
# end of Kernel Testing and Coverage
# end of Kernel hacking

[-- Attachment #3: job-script --]
[-- Type: text/plain, Size: 5847 bytes --]

#!/bin/sh

export_top_env()
{
	export suite='kernel-selftests'
	export testcase='kernel-selftests'
	export category='functional'
	export need_memory='2G'
	export need_cpu=2
	export kernel_cmdline='erst_disable'
	export job_origin='/lkp-src/allot/cyclic:p1:linux-devel:devel-hourly/lkp-skl-d01/kernel-selftests-x86.yaml'
	export queue_cmdline_keys='branch
commit
queue_at_least_once'
	export queue='validate'
	export testbox='lkp-skl-d01'
	export tbox_group='lkp-skl-d01'
	export kconfig='x86_64-rhel-7.6'
	export submit_id='5eeeb46181e6c229334fed4d'
	export job_file='/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-10547-1y430f0-2.yaml'
	export id='b1649221e70d5085c54cccad5675b161e67edf6e'
	export queuer_version='/lkp-src'
	export model='Skylake'
	export nr_cpu=8
	export memory='16G'
	export nr_hdd_partitions=1
	export hdd_partitions='/dev/disk/by-id/ata-WDC_WD10EZEX-75WN4A0_WD-WCC6Y2JD9SLU-part1'
	export swap_partitions='/dev/disk/by-id/ata-WDC_WD10EZEX-75WN4A0_WD-WCC6Y2JD9SLU-part3'
	export rootfs_partition='/dev/disk/by-id/ata-WDC_WD10EZEX-75WN4A0_WD-WCC6Y2JD9SLU-part2'
	export brand='Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz'
	export cpu_info='skylake i7-6700'
	export bios_version='1.2.8'
	export commit='d83f959b5e7a6378a4afbff23de2a2d064d95749'
	export need_kconfig_hw='CONFIG_E1000E=y
CONFIG_SATA_AHCI'
	export ucode='0xdc'
	export need_kernel_headers=true
	export need_kernel_selftests=true
	export need_kconfig='CONFIG_POSIX_TIMERS=y ~ ">= v4.10-rc1"'
	export enqueue_time='2020-06-21 09:14:10 +0800'
	export _id='5eeeb46681e6c229334fed4e'
	export _rt='/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749'
	export user='lkp'
	export compiler='gcc-9'
	export head_commit='5738b9d0c91e26c87c93a03972cc1a5a809d4af6'
	export base_commit='b3a9e3b9622ae10064826dccb4f7a52bd88c7407'
	export branch='linux-devel/devel-hourly-2020061608'
	export rootfs='debian-x86_64-20191114.cgz'
	export result_root='/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/3'
	export scheduler_version='/lkp/lkp/.src-20200619-190700'
	export LKP_SERVER='inn'
	export arch='x86_64'
	export max_uptime=3600
	export initrd='/osimage/debian/debian-x86_64-20191114.cgz'
	export bootloader_append='root=/dev/ram0
user=lkp
job=/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-10547-1y430f0-2.yaml
ARCH=x86_64
kconfig=x86_64-rhel-7.6
branch=linux-devel/devel-hourly-2020061608
commit=d83f959b5e7a6378a4afbff23de2a2d064d95749
BOOT_IMAGE=/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/vmlinuz-5.7.0-01787-gd83f959b5e7a6
erst_disable
max_uptime=3600
RESULT_ROOT=/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/3
LKP_SERVER=inn
nokaslr
selinux=0
debug
apic=debug
sysrq_always_enabled
rcupdate.rcu_cpu_stall_timeout=100
net.ifnames=0
printk.devkmsg=on
panic=-1
softlockup_panic=1
nmi_watchdog=panic
oops=panic
load_ramdisk=2
prompt_ramdisk=0
drbd.minor_count=8
systemd.log_level=err
ignore_loglevel
console=tty0
earlyprintk=ttyS0,115200
console=ttyS0,115200
vga=normal
rw'
	export modules_initrd='/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/modules.cgz'
	export bm_initrd='/osimage/deps/debian-x86_64-20180403.cgz/run-ipconfig_2018-04-03.cgz,/osimage/deps/debian-x86_64-20180403.cgz/lkp_2019-08-05.cgz,/osimage/deps/debian-x86_64-20180403.cgz/rsync-rootfs_2018-04-03.cgz,/osimage/deps/debian-x86_64-20180403.cgz/kernel-selftests_20200428.cgz,/osimage/pkg/debian-x86_64-20180403.cgz/kernel-selftests-x86_64-468f787f-1_20200612.cgz,/osimage/deps/debian-x86_64-20180403.cgz/hw_2020-01-02.cgz'
	export linux_headers_initrd='/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/linux-headers.cgz'
	export linux_selftests_initrd='/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/linux-selftests.cgz'
	export ucode_initrd='/osimage/ucode/intel-ucode-20191114.cgz'
	export lkp_initrd='/osimage/user/lkp/lkp-x86_64.cgz'
	export site='inn'
	export LKP_CGI_PORT=80
	export LKP_CIFS_PORT=139
	export last_kernel='4.20.0'
	export repeat_to=4
	export schedule_notify_address=
	export queue_at_least_once=1
	export kernel='/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/vmlinuz-5.7.0-01787-gd83f959b5e7a6'
	export dequeue_time='2020-06-21 09:33:06 +0800'
	export job_initrd='/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-10547-1y430f0-2.cgz'

	[ -n "$LKP_SRC" ] ||
	export LKP_SRC=/lkp/${user:-lkp}/src
}

run_job()
{
	echo $$ > $TMP/run-job.pid

	. $LKP_SRC/lib/http.sh
	. $LKP_SRC/lib/job.sh
	. $LKP_SRC/lib/env.sh

	export_top_env

	run_monitor $LKP_SRC/monitors/wrapper kmsg
	run_monitor $LKP_SRC/monitors/wrapper heartbeat
	run_monitor $LKP_SRC/monitors/wrapper meminfo
	run_monitor $LKP_SRC/monitors/wrapper oom-killer
	run_monitor $LKP_SRC/monitors/plain/watchdog

	run_test group='kselftests-x86' $LKP_SRC/tests/wrapper kernel-selftests
}

extract_stats()
{
	export stats_part_begin=
	export stats_part_end=

	$LKP_SRC/stats/wrapper kernel-selftests
	$LKP_SRC/stats/wrapper kmsg
	$LKP_SRC/stats/wrapper meminfo

	$LKP_SRC/stats/wrapper time kernel-selftests.time
	$LKP_SRC/stats/wrapper dmesg
	$LKP_SRC/stats/wrapper kmsg
	$LKP_SRC/stats/wrapper last_state
	$LKP_SRC/stats/wrapper stderr
	$LKP_SRC/stats/wrapper time
}

"$@"

[-- Attachment #4: dmesg --]
[-- Type: text/plain, Size: 215813 bytes --]

Decompressing Linux... Parsing ELF... No relocation needed... done.
Booting the kernel.
[    0.000000] Linux version 5.7.0-01787-gd83f959b5e7a6 (kbuild@8b19c35be28d) (gcc version 9.3.0 (Debian 9.3.0-13), GNU ld (GNU Binutils for Ubuntu) 2.34) #1 SMP Tue Jun 16 08:07:49 CST 2020
[    0.000000] Command line:  ip=::::lkp-skl-d01::dhcp root=/dev/ram0 user=lkp job=/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-10547-1y430f0-2.yaml ARCH=x86_64 kconfig=x86_64-rhel-7.6 branch=linux-devel/devel-hourly-2020061608 commit=d83f959b5e7a6378a4afbff23de2a2d064d95749 BOOT_IMAGE=/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/vmlinuz-5.7.0-01787-gd83f959b5e7a6 erst_disable max_uptime=3600 RESULT_ROOT=/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/3 LKP_SERVER=inn nokaslr selinux=0 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 net.ifnames=0 printk.devkmsg=on panic=-1 softlockup_panic=1 nmi_watchdog=panic oops=panic load_ramdisk=2 prompt_ramdisk=0 drbd.minor_count=8 systemd.log_level=err ignore_loglevel console=tty0 earlypr
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000100-0x000000000009c7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009c800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000009916bfff] usable
[    0.000000] BIOS-e820: [mem 0x000000009916c000-0x000000009916cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009916d000-0x00000000991b6fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000991b7000-0x000000009920afff] usable
[    0.000000] BIOS-e820: [mem 0x000000009920b000-0x0000000099a0bfff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000099a0c000-0x000000009f19efff] usable
[    0.000000] BIOS-e820: [mem 0x000000009f19f000-0x000000009f3f6fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009f3f7000-0x000000009f444fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000009f445000-0x000000009fabefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009fabf000-0x000000009fffefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009ffff000-0x000000009fffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000a0000000-0x00000000a00fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000459ffffff] usable
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] printk: bootconsole [earlyser0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: Dell Inc. OptiPlex 7040/0Y7WYT, BIOS 1.2.8 01/26/2016
[    0.000000] tsc: Detected 3400.000 MHz processor
[    0.001322] tsc: Detected 3399.906 MHz TSC
[    0.001322] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.011860] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.017383] last_pfn = 0x45a000 max_arch_pfn = 0x400000000
[    0.022815] MTRR default type: write-back
[    0.026778] MTRR fixed ranges enabled:
[    0.030488]   00000-9FFFF write-back
[    0.034022]   A0000-BFFFF uncachable
[    0.037558]   C0000-FFFFF write-protect
[    0.041352] MTRR variable ranges enabled:
[    0.045323]   0 base 00C0000000 mask 7FC0000000 uncachable
[    0.050763]   1 base 00B0000000 mask 7FF0000000 uncachable
[    0.056202]   2 base 00A8000000 mask 7FF8000000 uncachable
[    0.061646]   3 base 00A4000000 mask 7FFC000000 uncachable
[    0.067086]   4 base 00A2000000 mask 7FFE000000 uncachable
[    0.072527]   5 base 00A1800000 mask 7FFF800000 uncachable
[    0.077961]   6 disabled
[    0.080461]   7 disabled
[    0.082962]   8 disabled
[    0.085464]   9 disabled
[    0.088211] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.095205] last_pfn = 0xa0000 max_arch_pfn = 0x400000000
[    0.100483] Scan for SMP in [mem 0x00000000-0x000003ff]
[    0.105669] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
[    0.110843] Scan for SMP in [mem 0x000f0000-0x000fffff]
[    0.121293] found SMP MP-table at [mem 0x000fcdd0-0x000fcddf]
[    0.126831]   mpc: fcba0-fcd54
[    0.129897] Using GB pages for direct mapping
[    0.134675] RAMDISK: [mem 0x43cd97000-0x456ffffff]
[    0.139264] ACPI: Early table checksum verification disabled
[    0.144870] ACPI: RSDP 0x00000000000F05B0 000024 (v02 DELL  )
[    0.150559] ACPI: XSDT 0x000000009F4170A0 0000C4 (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.159011] ACPI: FACP 0x000000009F439770 00010C (v05 DELL   CBX3     01072009 AMI  00010013)
[    0.167463] ACPI: DSDT 0x000000009F4171F8 022574 (v02 DELL   CBX3     01072009 INTL 20120913)
[    0.175912] ACPI: FACS 0x000000009FABEF80 000040
[    0.180482] ACPI: APIC 0x000000009F439880 0000BC (v03 DELL   CBX3     01072009 AMI  00010013)
[    0.188933] ACPI: FPDT 0x000000009F439940 000044 (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.197385] ACPI: FIDT 0x000000009F439988 00009C (v01 DELL   CBX3     01072009 AMI  00010013)
[    0.205836] ACPI: MCFG 0x000000009F439A28 00003C (v01 DELL   CBX3     01072009 MSFT 00000097)
[    0.214286] ACPI: HPET 0x000000009F439A68 000038 (v01 DELL   CBX3     01072009 AMI. 0005000B)
[    0.222738] ACPI: SSDT 0x000000009F439AA0 00036D (v01 SataRe SataTabl 00001000 INTL 20120913)
[    0.231189] ACPI: SSDT 0x000000009F439E10 0053B2 (v02 SaSsdt SaSsdt   00003000 INTL 20120913)
[    0.239640] ACPI: UEFI 0x000000009F43F1C8 000042 (v01                 00000000      00000000)
[    0.248090] ACPI: LPIT 0x000000009F43F210 000094 (v01 INTEL  SKL      00000000 MSFT 0000005F)
[    0.256541] ACPI: SSDT 0x000000009F43F2A8 000248 (v02 INTEL  sensrhub 00000000 INTL 20120913)
[    0.264991] ACPI: SSDT 0x000000009F43F4F0 002BAE (v02 INTEL  PtidDevc 00001000 INTL 20120913)
[    0.273442] ACPI: SSDT 0x000000009F4420A0 000BE3 (v02 INTEL  Ther_Rvp 00001000 INTL 20120913)
[    0.281892] ACPI: DBGP 0x000000009F442C88 000034 (v01 INTEL           00000000 MSFT 0000005F)
[    0.290356] ACPI: DBG2 0x000000009F442CC0 000054 (v00 INTEL           00000000 MSFT 0000005F)
[    0.298820] ACPI: SSDT 0x000000009F442D18 000613 (v02 INTEL  DELL__MT 00000000 INTL 20120913)
[    0.307285] ACPI: SSDT 0x000000009F443330 000E73 (v02 CpuRef CpuSsdt  00003000 INTL 20120913)
[    0.315745] ACPI: SLIC 0x000000009F4441A8 000176 (v03 DELL   CBX3     01072009 MSFT 00010013)
[    0.324198] ACPI: DMAR 0x000000009F444320 0000A8 (v01 INTEL  SKL      00000001 INTL 00000001)
[    0.332647] ACPI: ASF! 0x000000009F4443C8 0000A5 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.341102] ACPI: Local APIC address 0xfee00000
[    0.345587] mapped APIC to ffffffffff5fc000 (        fee00000)
[    0.351493] No NUMA configuration found
[    0.355158] Faking a node at [mem 0x0000000000000000-0x0000000459ffffff]
[    0.361806] NODE_DATA(0) allocated [mem 0x459fd5000-0x459ffffff]
[    0.367957] cma: Reserved 200 MiB at 0x0000000430400000
[    0.372995] Zone ranges:
[    0.375478]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.381601]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.387723]   Normal   [mem 0x0000000100000000-0x0000000459ffffff]
[    0.393848]   Device   empty
[    0.396695] Movable zone start for each node
[    0.400922] Early memory node ranges
[    0.404458]   node   0: [mem 0x0000000000001000-0x000000000009bfff]
[    0.410667]   node   0: [mem 0x0000000000100000-0x000000009916bfff]
[    0.416878]   node   0: [mem 0x00000000991b7000-0x000000009920afff]
[    0.423088]   node   0: [mem 0x0000000099a0c000-0x000000009f19efff]
[    0.429297]   node   0: [mem 0x000000009ffff000-0x000000009fffffff]
[    0.435507]   node   0: [mem 0x0000000100000000-0x0000000459ffffff]
[    0.441950] Zeroed struct page in unavailable ranges: 30481 pages
[    0.441951] Initmem setup node 0 [mem 0x0000000000001000-0x0000000459ffffff]
[    0.454822] On node 0 totalpages: 4163823
[    0.458788]   DMA zone: 64 pages used for memmap
[    0.463359]   DMA zone: 21 pages reserved
[    0.467325]   DMA zone: 3995 pages, LIFO batch:0
[    0.471946]   DMA32 zone: 10086 pages used for memmap
[    0.476900]   DMA32 zone: 645460 pages, LIFO batch:63
[    0.489709]   Normal zone: 54912 pages used for memmap
[    0.494644]   Normal zone: 3514368 pages, LIFO batch:63
[    0.500237] Reserving Intel graphics memory at [mem 0xa2000000-0xa3ffffff]
[    0.507074] ACPI: PM-Timer IO Port: 0x1808
[    0.510973] ACPI: Local APIC address 0xfee00000
[    0.515461] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.521322] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.527197] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.533071] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.538949] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.544822] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.550699] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.556563] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.562455] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.569329] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.575627] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 2, APIC INT 02
[    0.582785] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.589338] Int: type 0, pol 1, trig 3, bus 00, IRQ 09, APIC ID 2, APIC INT 09
[    0.596500] ACPI: IRQ0 used by override.
[    0.600379] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 2, APIC INT 01
[    0.607537] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 2, APIC INT 03
[    0.614695] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 2, APIC INT 04
[    0.621853] Int: type 0, pol 0, trig 0, bus 00, IRQ 05, APIC ID 2, APIC INT 05
[    0.629012] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 2, APIC INT 06
[    0.636170] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 2, APIC INT 07
[    0.643329] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 2, APIC INT 08
[    0.650487] ACPI: IRQ9 used by override.
[    0.654368] Int: type 0, pol 0, trig 0, bus 00, IRQ 0a, APIC ID 2, APIC INT 0a
[    0.661529] Int: type 0, pol 0, trig 0, bus 00, IRQ 0b, APIC ID 2, APIC INT 0b
[    0.668687] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 2, APIC INT 0c
[    0.675846] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 2, APIC INT 0d
[    0.683004] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 2, APIC INT 0e
[    0.690162] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 2, APIC INT 0f
[    0.697321] Using ACPI (MADT) for SMP configuration information
[    0.703187] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.708279] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.713195] mapped IOAPIC to ffffffffff5fb000 (fec00000)
[    0.718466] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.725962] PM: hibernation: Registered nosave memory: [mem 0x0009c000-0x0009cfff]
[    0.733466] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
[    0.740971] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.748475] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.755981] PM: hibernation: Registered nosave memory: [mem 0x9916c000-0x9916cfff]
[    0.763492] PM: hibernation: Registered nosave memory: [mem 0x9916d000-0x991b6fff]
[    0.771010] PM: hibernation: Registered nosave memory: [mem 0x9920b000-0x99a0bfff]
[    0.778530] PM: hibernation: Registered nosave memory: [mem 0x9f19f000-0x9f3f6fff]
[    0.786048] PM: hibernation: Registered nosave memory: [mem 0x9f3f7000-0x9f444fff]
[    0.793560] PM: hibernation: Registered nosave memory: [mem 0x9f445000-0x9fabefff]
[    0.801066] PM: hibernation: Registered nosave memory: [mem 0x9fabf000-0x9fffefff]
[    0.808572] PM: hibernation: Registered nosave memory: [mem 0xa0000000-0xa00fffff]
[    0.816078] PM: hibernation: Registered nosave memory: [mem 0xa0100000-0xa1ffffff]
[    0.823582] PM: hibernation: Registered nosave memory: [mem 0xa2000000-0xa3ffffff]
[    0.831089] PM: hibernation: Registered nosave memory: [mem 0xa4000000-0xf7ffffff]
[    0.838593] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.846100] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfdffffff]
[    0.853603] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.861109] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.868614] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.876121] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[    0.883626] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.891131] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.898636] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.906142] [mem 0xa4000000-0xf7ffffff] available for PCI devices
[    0.912179] Booting paravirtualized kernel on bare hardware
[    0.917702] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.931664] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.939210] percpu: Embedded 56 pages/cpu s192512 r8192 d28672 u262144
[    0.945570] pcpu-alloc: s192512 r8192 d28672 u262144 alloc=1*2097152
[    0.951863] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.956102] Built 1 zonelists, mobility grouping on.  Total pages: 4098740
[    0.962903] Policy zone: Normal
[    0.966009] Kernel command line:  ip=::::lkp-skl-d01::dhcp root=/dev/ram0 user=lkp job=/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-10547-1y430f0-2.yaml ARCH=x86_64 kconfig=x86_64-rhel-7.6 branch=linux-devel/devel-hourly-2020061608 commit=d83f959b5e7a6378a4afbff23de2a2d064d95749 BOOT_IMAGE=/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/vmlinuz-5.7.0-01787-gd83f959b5e7a6 erst_disable max_uptime=3600 RESULT_ROOT=/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/3 LKP_SERVER=inn nokaslr selinux=0 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 net.ifnames=0 printk.devkmsg=on panic=-1 softlockup_panic=1 nmi_watchdog=panic oops=panic load_ramdisk=2 prompt_ramdisk=0 drbd.minor_count=8 systemd.log_level=err ignore_loglevel console=tty0 
[    0.966223] sysrq: sysrq always enabled.
[    1.057487] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    1.065615] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    1.073362] mem auto-init: stack:off, heap alloc:off, heap free:off
[    1.094739] Memory: 2663272K/16655292K available (14339K kernel code, 2478K rwdata, 4840K rodata, 2580K init, 4920K bss, 820116K reserved, 204800K cma-reserved)
[    1.108855] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    1.115293] Kernel/User page tables isolation: enabled
[    1.120385] ftrace: allocating 44514 entries in 174 pages
[    1.137332] ftrace: allocated 174 pages with 5 groups
[    1.142263] rcu: Hierarchical RCU implementation.
[    1.146836] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[    1.153566] 	RCU CPU stall warnings timeout set to 100 (rcu_cpu_stall_timeout).
[    1.160810] 	Trampoline variant of Tasks RCU enabled.
[    1.165811] 	Rude variant of Tasks RCU enabled.
[    1.170297] 	Tracing variant of Tasks RCU enabled.
[    1.175040] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.182632] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    1.191393] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
[    1.197668] random: get_random_bytes called from start_kernel+0x46a/0x648 with crng_init=0
[    1.199581] Console: colour VGA+ 80x25
[    1.244195] printk: console [tty0] enabled
[    1.248245] printk: console [ttyS0] enabled
[    1.248245] printk: console [ttyS0] enabled
[    1.256533] printk: bootconsole [earlyser0] disabled
[    1.256533] printk: bootconsole [earlyser0] disabled
[    1.266397] ACPI: Core revision 20200528
[    1.270632] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    1.279851] APIC: Switch to symmetric I/O mode setup
[    1.284936] DMAR: Host address width 39
[    1.288898] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    1.294331] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 7e3ff0505e
[    1.302819] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    1.308250] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    1.316306] DMAR: RMRR base: 0x0000009f271000 end: 0x0000009f290fff
[    1.322688] DMAR: RMRR base: 0x000000a1800000 end: 0x000000a3ffffff
[    1.329071] DMAR: [Firmware Bug]: No firmware reserved region can cover this RMRR [0x00000000a1800000-0x00000000a3ffffff], contact BIOS vendor for fixes
[    1.342830] DMAR: [Firmware Bug]: Your BIOS is broken; bad RMRR [0x00000000a1800000-0x00000000a3ffffff]
[    1.342830] BIOS vendor: Dell Inc.; Ver: 1.2.8; Product Version: 
[    1.358441] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    1.364909] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    1.370427] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
[    1.370427] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
[    1.385519] DMAR-IR: IRQ remapping was enabled on dmar0 but we are not in kdump mode
[    1.393538] DMAR-IR: IRQ remapping was enabled on dmar1 but we are not in kdump mode
[    1.402652] DMAR-IR: Enabled IRQ remapping in xapic mode
[    1.408058] x2apic: IRQ remapping doesn't support X2APIC mode
[    1.413932] masked ExtINT on CPU#0
[    1.421210] ENABLING IO-APIC IRQs
[    1.424629] init IO_APIC IRQs
[    1.427701]  apic 2 pin 0 not connected
[    1.431639] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.445206] IOAPIC[0]: Set routing entry (2-1 -> 0xef -> IRQ 1 Mode:0 Active:0 Dest:1)
[    1.453240] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:30 Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.466806] IOAPIC[0]: Set routing entry (2-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[    1.474840] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.488423] IOAPIC[0]: Set routing entry (2-3 -> 0xef -> IRQ 3 Mode:0 Active:0 Dest:1)
[    1.496470] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.510667] IOAPIC[0]: Set routing entry (2-4 -> 0xef -> IRQ 4 Mode:0 Active:0 Dest:1)
[    1.518703] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.532269] IOAPIC[0]: Set routing entry (2-5 -> 0xef -> IRQ 5 Mode:0 Active:0 Dest:1)
[    1.540302] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.553868] IOAPIC[0]: Set routing entry (2-6 -> 0xef -> IRQ 6 Mode:0 Active:0 Dest:1)
[    1.561901] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.575469] IOAPIC[0]: Set routing entry (2-7 -> 0xef -> IRQ 7 Mode:0 Active:0 Dest:1)
[    1.583501] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.597068] IOAPIC[0]: Set routing entry (2-8 -> 0xef -> IRQ 8 Mode:0 Active:0 Dest:1)
[    1.605099] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.618664] IOAPIC[0]: Set routing entry (2-9 -> 0xef -> IRQ 9 Mode:1 Active:0 Dest:1)
[    1.626698] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.640263] IOAPIC[0]: Set routing entry (2-10 -> 0xef -> IRQ 10 Mode:0 Active:0 Dest:1)
[    1.648468] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.662032] IOAPIC[0]: Set routing entry (2-11 -> 0xef -> IRQ 11 Mode:0 Active:0 Dest:1)
[    1.670237] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.683801] IOAPIC[0]: Set routing entry (2-12 -> 0xef -> IRQ 12 Mode:0 Active:0 Dest:1)
[    1.692006] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.705573] IOAPIC[0]: Set routing entry (2-13 -> 0xef -> IRQ 13 Mode:0 Active:0 Dest:1)
[    1.713778] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.727366] IOAPIC[0]: Set routing entry (2-14 -> 0xef -> IRQ 14 Mode:0 Active:0 Dest:1)
[    1.735585] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    1.749171] IOAPIC[0]: Set routing entry (2-15 -> 0xef -> IRQ 15 Mode:0 Active:0 Dest:1)
[    1.757374]  apic 2 pin 16 not connected
[    1.761395]  apic 2 pin 17 not connected
[    1.765416]  apic 2 pin 18 not connected
[    1.769438]  apic 2 pin 19 not connected
[    1.773460]  apic 2 pin 20 not connected
[    1.777481]  apic 2 pin 21 not connected
[    1.781502]  apic 2 pin 22 not connected
[    1.785524]  apic 2 pin 23 not connected
[    1.789546]  apic 2 pin 24 not connected
[    1.793568]  apic 2 pin 25 not connected
[    1.797588]  apic 2 pin 26 not connected
[    1.801609]  apic 2 pin 27 not connected
[    1.805629]  apic 2 pin 28 not connected
[    1.809654]  apic 2 pin 29 not connected
[    1.813677]  apic 2 pin 30 not connected
[    1.817697]  apic 2 pin 31 not connected
[    1.821718]  apic 2 pin 32 not connected
[    1.825738]  apic 2 pin 33 not connected
[    1.829759]  apic 2 pin 34 not connected
[    1.833781]  apic 2 pin 35 not connected
[    1.837804]  apic 2 pin 36 not connected
[    1.841827]  apic 2 pin 37 not connected
[    1.845848]  apic 2 pin 38 not connected
[    1.849869]  apic 2 pin 39 not connected
[    1.853891]  apic 2 pin 40 not connected
[    1.857913]  apic 2 pin 41 not connected
[    1.861935]  apic 2 pin 42 not connected
[    1.865957]  apic 2 pin 43 not connected
[    1.869979]  apic 2 pin 44 not connected
[    1.874000]  apic 2 pin 45 not connected
[    1.878022]  apic 2 pin 46 not connected
[    1.882043]  apic 2 pin 47 not connected
[    1.886064]  apic 2 pin 48 not connected
[    1.890086]  apic 2 pin 49 not connected
[    1.894108]  apic 2 pin 50 not connected
[    1.898130]  apic 2 pin 51 not connected
[    1.902153]  apic 2 pin 52 not connected
[    1.906177]  apic 2 pin 53 not connected
[    1.910197]  apic 2 pin 54 not connected
[    1.914218]  apic 2 pin 55 not connected
[    1.918239]  apic 2 pin 56 not connected
[    1.922259]  apic 2 pin 57 not connected
[    1.926282]  apic 2 pin 58 not connected
[    1.930304]  apic 2 pin 59 not connected
[    1.934326]  apic 2 pin 60 not connected
[    1.938348]  apic 2 pin 61 not connected
[    1.942371]  apic 2 pin 62 not connected
[    1.946392]  apic 2 pin 63 not connected
[    1.950413]  apic 2 pin 64 not connected
[    1.954435]  apic 2 pin 65 not connected
[    1.958463]  apic 2 pin 66 not connected
[    1.962490]  apic 2 pin 67 not connected
[    1.966518]  apic 2 pin 68 not connected
[    1.970549]  apic 2 pin 69 not connected
[    1.974577]  apic 2 pin 70 not connected
[    1.978607]  apic 2 pin 71 not connected
[    1.982636]  apic 2 pin 72 not connected
[    1.986661]  apic 2 pin 73 not connected
[    1.990683]  apic 2 pin 74 not connected
[    1.994704]  apic 2 pin 75 not connected
[    1.998729]  apic 2 pin 76 not connected
[    2.002750]  apic 2 pin 77 not connected
[    2.006772]  apic 2 pin 78 not connected
[    2.010795]  apic 2 pin 79 not connected
[    2.014818]  apic 2 pin 80 not connected
[    2.018839]  apic 2 pin 81 not connected
[    2.022859]  apic 2 pin 82 not connected
[    2.026881]  apic 2 pin 83 not connected
[    2.030903]  apic 2 pin 84 not connected
[    2.034925]  apic 2 pin 85 not connected
[    2.038947]  apic 2 pin 86 not connected
[    2.042968]  apic 2 pin 87 not connected
[    2.046991]  apic 2 pin 88 not connected
[    2.051014]  apic 2 pin 89 not connected
[    2.055036]  apic 2 pin 90 not connected
[    2.059057]  apic 2 pin 91 not connected
[    2.063079]  apic 2 pin 92 not connected
[    2.067102]  apic 2 pin 93 not connected
[    2.071122]  apic 2 pin 94 not connected
[    2.075144]  apic 2 pin 95 not connected
[    2.079166]  apic 2 pin 96 not connected
[    2.083187]  apic 2 pin 97 not connected
[    2.087211]  apic 2 pin 98 not connected
[    2.091233]  apic 2 pin 99 not connected
[    2.095256]  apic 2 pin 100 not connected
[    2.099365]  apic 2 pin 101 not connected
[    2.103472]  apic 2 pin 102 not connected
[    2.107582]  apic 2 pin 103 not connected
[    2.111690]  apic 2 pin 104 not connected
[    2.115798]  apic 2 pin 105 not connected
[    2.119905]  apic 2 pin 106 not connected
[    2.124014]  apic 2 pin 107 not connected
[    2.128124]  apic 2 pin 108 not connected
[    2.132233]  apic 2 pin 109 not connected
[    2.136341]  apic 2 pin 110 not connected
[    2.140450]  apic 2 pin 111 not connected
[    2.144559]  apic 2 pin 112 not connected
[    2.148666]  apic 2 pin 113 not connected
[    2.152775]  apic 2 pin 114 not connected
[    2.156883]  apic 2 pin 115 not connected
[    2.160990]  apic 2 pin 116 not connected
[    2.165098]  apic 2 pin 117 not connected
[    2.169206]  apic 2 pin 118 not connected
[    2.173314]  apic 2 pin 119 not connected
[    2.177572] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    2.187945] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3101f59f5e6, max_idle_ns: 440795259996 ns
[    2.198578] Calibrating delay loop (skipped), value calculated using timer frequency.. 6799.81 BogoMIPS (lpj=3399906)
[    2.199577] pid_max: default: 32768 minimum: 301
[    2.200589] LSM: Security Framework initializing
[    2.201581] Yama: becoming mindful.
[    2.202588] AppArmor: AppArmor initialized
[    2.203604] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    2.204598] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Poking KASLR using RDRAND RDTSC...
[    2.209066] mce: CPU0: Thermal monitoring enabled (TM1)
[    2.209588] process: using mwait in idle threads
[    2.210579] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    2.211577] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    2.212579] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    2.213580] Spectre V2 : Mitigation: Full generic retpoline
[    2.214577] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    2.215577] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    2.216579] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    2.217577] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
[    2.218579] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    2.219579] TAA: Mitigation: Clear CPU buffers
[    2.220577] MDS: Mitigation: Clear CPU buffers
[    2.222612] Freeing SMP alternatives memory: 40K
[    2.225691] smpboot: CPU0: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz (family: 0x6, model: 0x5e, stepping: 0x3)
[    2.226634] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    2.227578] ... version:                4
[    2.228577] ... bit width:              48
[    2.229577] ... generic registers:      4
[    2.230577] ... value mask:             0000ffffffffffff
[    2.231577] ... max period:             00007fffffffffff
[    2.232577] ... fixed-purpose events:   3
[    2.233577] ... event mask:             000000070000000f
[    2.234607] rcu: Hierarchical SRCU implementation.
[    2.236407] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    2.236631] smp: Bringing up secondary CPUs ...
[    2.237628] x86: Booting SMP configuration:
[    2.238579] .... node  #0, CPUs:      #1
[    0.977036] masked ExtINT on CPU#1
[    2.246308]  #2
[    0.977036] masked ExtINT on CPU#2
[    2.251882]  #3
[    0.977036] masked ExtINT on CPU#3
[    2.257458]  #4
[    0.977036] masked ExtINT on CPU#4
[    2.263109] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    2.263578] TAA CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/tsx_async_abort.html for more details.
[    2.264650]  #5
[    0.977036] masked ExtINT on CPU#5
[    2.270112]  #6
[    0.977036] masked ExtINT on CPU#6
[    2.275680]  #7
[    0.977036] masked ExtINT on CPU#7
[    2.281254] smp: Brought up 1 node, 8 CPUs
[    2.281578] smpboot: Max logical packages: 1
[    2.282578] smpboot: Total of 8 processors activated (54398.49 BogoMIPS)
[    2.315580] node 0 initialised, 3241776 pages in 31ms
[    2.321950] devtmpfs: initialized
[    2.322609] x86/mm: Memory block size: 128MB
[    2.324714] PM: Registering ACPI NVS region [mem 0x9916c000-0x9916cfff] (4096 bytes)
[    2.325579] PM: Registering ACPI NVS region [mem 0x9f445000-0x9fabefff] (6791168 bytes)
[    2.326680] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    2.327581] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    2.329040] pinctrl core: initialized pinctrl subsystem
[    2.329685] PM: RTC time: 01:31:44, date: 2020-06-21
[    2.330579] thermal_sys: Registered thermal governor 'fair_share'
[    2.330579] thermal_sys: Registered thermal governor 'bang_bang'
[    2.331577] thermal_sys: Registered thermal governor 'step_wise'
[    2.332577] thermal_sys: Registered thermal governor 'user_space'
[    2.333665] NET: Registered protocol family 16
[    2.335745] audit: initializing netlink subsys (disabled)
[    2.336584] audit: type=2000 audit(1592703102.163:1): state=initialized audit_enabled=0 res=1
[    2.344579] cpuidle: using governor menu
[    2.345696] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    2.346578] ACPI: bus type PCI registered
[    2.347578] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.348622] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    2.349579] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    2.350583] PCI: Using configuration type 1 for base access
[    2.353420] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    2.353578] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    2.354615] ACPI: Added _OSI(Module Device)
[    2.355579] ACPI: Added _OSI(Processor Device)
[    2.356580] ACPI: Added _OSI(3.0 _SCP Extensions)
[    2.357578] ACPI: Added _OSI(Processor Aggregator Device)
[    2.358578] ACPI: Added _OSI(Linux-Dell-Video)
[    2.359578] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    2.360578] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    2.381072] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    2.383225] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    2.385634] ACPI: Dynamic OEM Table Load:
[    2.386581] ACPI: SSDT 0xFFFF8881071C6000 0006E4 (v02 PmRef  Cpu0Ist  00003000 INTL 20120913)
[    2.388386] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
[    2.389646] ACPI: Dynamic OEM Table Load:
[    2.390580] ACPI: SSDT 0xFFFF88810719F400 00037F (v02 PmRef  Cpu0Cst  00003001 INTL 20120913)
[    2.392342] ACPI: Dynamic OEM Table Load:
[    2.392579] ACPI: SSDT 0xFFFF888107275000 00008E (v02 PmRef  Cpu0Hwp  00003000 INTL 20120913)
[    2.394282] ACPI: Dynamic OEM Table Load:
[    2.394579] ACPI: SSDT 0xFFFF88845951A000 000130 (v02 PmRef  HwpLvt   00003000 INTL 20120913)
[    2.396730] ACPI: Dynamic OEM Table Load:
[    2.397581] ACPI: SSDT 0xFFFF8881071C7000 0005AA (v02 PmRef  ApIst    00003000 INTL 20120913)
[    2.399474] ACPI: Dynamic OEM Table Load:
[    2.399579] ACPI: SSDT 0xFFFF88810736C000 000119 (v02 PmRef  ApHwp    00003000 INTL 20120913)
[    2.401330] ACPI: Dynamic OEM Table Load:
[    2.401579] ACPI: SSDT 0xFFFF88810736C200 000119 (v02 PmRef  ApCst    00003000 INTL 20120913)
[    2.407215] ACPI: Interpreter enabled
[    2.407599] ACPI: (supports S0 S3 S4 S5)
[    2.408578] ACPI: Using IOAPIC for interrupt routing
[    2.409598] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    2.411112] ACPI: Enabled 7 GPEs in block 00 to 7F
[    2.412985] ACPI: Power Resource [PG00] (on)
[    2.413812] ACPI: Power Resource [PG01] (on)
[    2.414791] ACPI: Power Resource [PG02] (on)
[    2.417103] ACPI: Power Resource [WRST] (off)
[    2.417766] ACPI: Power Resource [WRST] (off)
[    2.418770] ACPI: Power Resource [WRST] (off)
[    2.419764] ACPI: Power Resource [WRST] (off)
[    2.420764] ACPI: Power Resource [WRST] (off)
[    2.421772] ACPI: Power Resource [WRST] (off)
[    2.422768] ACPI: Power Resource [WRST] (off)
[    2.423770] ACPI: Power Resource [WRST] (off)
[    2.424764] ACPI: Power Resource [WRST] (off)
[    2.425765] ACPI: Power Resource [WRST] (off)
[    2.426766] ACPI: Power Resource [WRST] (off)
[    2.427764] ACPI: Power Resource [WRST] (off)
[    2.428768] ACPI: Power Resource [WRST] (off)
[    2.429765] ACPI: Power Resource [WRST] (off)
[    2.430765] ACPI: Power Resource [WRST] (off)
[    2.431763] ACPI: Power Resource [WRST] (off)
[    2.432764] ACPI: Power Resource [WRST] (off)
[    2.433770] ACPI: Power Resource [WRST] (off)
[    2.434770] ACPI: Power Resource [WRST] (off)
[    2.435766] ACPI: Power Resource [WRST] (off)
[    2.444405] ACPI: Power Resource [FN00] (off)
[    2.444634] ACPI: Power Resource [FN01] (off)
[    2.445631] ACPI: Power Resource [FN02] (off)
[    2.446631] ACPI: Power Resource [FN03] (off)
[    2.447633] ACPI: Power Resource [FN04] (off)
[    2.449290] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    2.449581] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    2.451730] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
[    2.452578] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    2.454010] PCI host bridge to bus 0000:00
[    2.454579] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    2.455578] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    2.456579] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    2.457578] pci_bus 0000:00: root bus resource [mem 0xa4000000-0xf7ffffff window]
[    2.458578] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[    2.459578] pci_bus 0000:00: root bus resource [bus 00-3e]
[    2.460584] pci 0000:00:00.0: [8086:191f] type 00 class 0x060000
[    2.461778] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[    2.462611] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    2.463713] pci 0000:00:02.0: [8086:1912] type 00 class 0x030000
[    2.464585] pci 0000:00:02.0: reg 0x10: [mem 0xf6000000-0xf6ffffff 64bit]
[    2.465581] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    2.466580] pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
[    2.467727] pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
[    2.468595] pci 0000:00:14.0: reg 0x10: [mem 0xf7030000-0xf703ffff 64bit]
[    2.469631] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    2.470678] pci 0000:00:14.2: [8086:a131] type 00 class 0x118000
[    2.471594] pci 0000:00:14.2: reg 0x10: [mem 0xf704e000-0xf704efff 64bit]
[    2.472710] pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
[    2.473599] pci 0000:00:16.0: reg 0x10: [mem 0xf704d000-0xf704dfff 64bit]
[    2.474639] pci 0000:00:16.0: PME# supported from D3hot
[    2.475701] pci 0000:00:17.0: [8086:a102] type 00 class 0x010601
[    2.476591] pci 0000:00:17.0: reg 0x10: [mem 0xf7048000-0xf7049fff]
[    2.477583] pci 0000:00:17.0: reg 0x14: [mem 0xf704c000-0xf704c0ff]
[    2.478583] pci 0000:00:17.0: reg 0x18: [io  0xf090-0xf097]
[    2.479583] pci 0000:00:17.0: reg 0x1c: [io  0xf080-0xf083]
[    2.480583] pci 0000:00:17.0: reg 0x20: [io  0xf060-0xf07f]
[    2.481583] pci 0000:00:17.0: reg 0x24: [mem 0xf704b000-0xf704b7ff]
[    2.482609] pci 0000:00:17.0: PME# supported from D3hot
[    2.483680] pci 0000:00:1c.0: [8086:a110] type 01 class 0x060400
[    2.484636] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    2.485728] pci 0000:00:1f.0: [8086:a146] type 00 class 0x060100
[    2.486761] pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
[    2.487591] pci 0000:00:1f.2: reg 0x10: [mem 0xf7044000-0xf7047fff]
[    2.488709] pci 0000:00:1f.3: [8086:a170] type 00 class 0x040300
[    2.489601] pci 0000:00:1f.3: reg 0x10: [mem 0xf7040000-0xf7043fff 64bit]
[    2.490605] pci 0000:00:1f.3: reg 0x20: [mem 0xf7020000-0xf702ffff 64bit]
[    2.491619] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    2.492709] pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
[    2.493636] pci 0000:00:1f.4: reg 0x10: [mem 0xf704a000-0xf704a0ff 64bit]
[    2.494646] pci 0000:00:1f.4: reg 0x20: [io  0xf040-0xf05f]
[    2.495742] pci 0000:00:1f.6: [8086:15b7] type 00 class 0x020000
[    2.496602] pci 0000:00:1f.6: reg 0x10: [mem 0xf7000000-0xf701ffff]
[    2.497676] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[    2.498693] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.499629] pci 0000:02:00.0: [104c:8240] type 01 class 0x060400
[    2.500713] pci 0000:02:00.0: supports D1 D2
[    2.501680] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
[    2.502627] pci_bus 0000:03: extended config space not accessible
[    2.503642] pci 0000:02:00.0: PCI bridge to [bus 03]
[    2.505702] ACPI: PCI Interrupt Link [LNKA] (IRQs *7 12), disabled.
[    2.506610] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 *10), disabled.
[    2.507608] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 *5), disabled.
[    2.508608] ACPI: PCI Interrupt Link [LNKD] (IRQs 6 *11), disabled.
[    2.509608] ACPI: PCI Interrupt Link [LNKE] (IRQs *7 11), disabled.
[    2.510608] ACPI: PCI Interrupt Link [LNKF] (IRQs *3 10), disabled.
[    2.511609] ACPI: PCI Interrupt Link [LNKG] (IRQs *4 5), disabled.
[    2.512608] ACPI: PCI Interrupt Link [LNKH] (IRQs 6 12) *11, disabled.
[    2.513948] iommu: Default domain type: Translated 
[    2.514589] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    2.515577] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    2.515579] pci 0000:00:02.0: vgaarb: bridge control possible
[    2.516577] vgaarb: loaded
[    2.517628] SCSI subsystem initialized
[    2.518587] ACPI: bus type USB registered
[    2.519586] usbcore: registered new interface driver usbfs
[    2.520581] usbcore: registered new interface driver hub
[    2.521589] usbcore: registered new device driver usb
[    2.522590] pps_core: LinuxPPS API ver. 1 registered
[    2.523577] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.524578] PTP clock support registered
[    2.525588] EDAC MC: Ver: 3.0.0
[    2.526628] PCI: Using ACPI for IRQ routing
[    2.534223] PCI: pci_cache_line_size set to 64 bytes
[    2.534608] e820: reserve RAM buffer [mem 0x0009c800-0x0009ffff]
[    2.535578] e820: reserve RAM buffer [mem 0x9916c000-0x9bffffff]
[    2.536578] e820: reserve RAM buffer [mem 0x9920b000-0x9bffffff]
[    2.537578] e820: reserve RAM buffer [mem 0x9f19f000-0x9fffffff]
[    2.538578] e820: reserve RAM buffer [mem 0x45a000000-0x45bffffff]
[    2.539645] NetLabel: Initializing
[    2.540578] NetLabel:  domain hash size = 128
[    2.541577] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    2.542587] NetLabel:  unlabeled traffic allowed by default
[    2.543697] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    2.544578] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[    2.547587] clocksource: Switched to clocksource tsc-early
[    2.570838] VFS: Disk quotas dquot_6.6.0
[    2.574912] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.581994] AppArmor: AppArmor Filesystem Enabled
[    2.586855] pnp: PnP ACPI init
[    2.590193] system 00:00: [io  0x0a00-0x0a3f] has been reserved
[    2.596251] system 00:00: [io  0x0a40-0x0a7f] has been reserved
[    2.602300] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.609646] pnp 00:01: [dma 0 disabled]
[    2.613647] pnp 00:01: Plug and Play ACPI device, IDs PNP0501 (active)
[    2.620397] system 00:02: [io  0x0680-0x069f] has been reserved
[    2.626445] system 00:02: [io  0xffff] has been reserved
[    2.631885] system 00:02: [io  0xffff] has been reserved
[    2.637327] system 00:02: [io  0xffff] has been reserved
[    2.642783] system 00:02: [io  0x1800-0x18fe] has been reserved
[    2.648828] system 00:02: [io  0x164e-0x164f] has been reserved
[    2.654878] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.661839] system 00:03: [io  0x0800-0x087f] has been reserved
[    2.667889] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.674809] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    2.681482] system 00:05: [io  0x1854-0x1857] has been reserved
[    2.687531] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    2.695325] system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
[    2.702066] system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
[    2.708803] system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
[    2.715542] system 00:06: [mem 0xf8000000-0xfbffffff] has been reserved
[    2.722280] system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
[    2.729020] system 00:06: [mem 0xfed90000-0xfed93fff] could not be reserved
[    2.736106] system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
[    2.742844] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    2.749581] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
[    2.756668] system 00:06: [mem 0xf7fe0000-0xf7ffffff] has been reserved
[    2.763406] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.770346] system 00:07: [mem 0xfd000000-0xfdabffff] has been reserved
[    2.777089] system 00:07: [mem 0xfdad0000-0xfdadffff] has been reserved
[    2.783827] system 00:07: [mem 0xfdb00000-0xfdffffff] has been reserved
[    2.790567] system 00:07: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    2.797653] system 00:07: [mem 0xfe036000-0xfe03bfff] has been reserved
[    2.804392] system 00:07: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    2.811146] system 00:07: [mem 0xfe410000-0xfe7fffff] has been reserved
[    2.817897] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.824975] system 00:08: [io  0xff00-0xfffe] has been reserved
[    2.831037] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.838546] system 00:09: [mem 0xfdaf0000-0xfdafffff] has been reserved
[    2.845287] system 00:09: [mem 0xfdae0000-0xfdaeffff] has been reserved
[    2.852027] system 00:09: [mem 0xfdac0000-0xfdacffff] has been reserved
[    2.858767] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    2.866153] pnp: PnP ACPI: found 10 devices
[    2.875768] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    2.884840] pci 0000:00:01.0: PCI bridge to [bus 01]
[    2.889939] pci 0000:02:00.0: PCI bridge to [bus 03]
[    2.895048] pci 0000:00:1c.0: PCI bridge to [bus 02-03]
[    2.900410] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    2.906715] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    2.913021] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    2.920018] pci_bus 0000:00: resource 7 [mem 0xa4000000-0xf7ffffff window]
[    2.927016] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
[    2.934098] NET: Registered protocol family 2
[    2.938683] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    2.947491] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    2.955862] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    2.963531] TCP: Hash tables configured (established 131072 bind 65536)
[    2.970290] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    2.977228] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    2.984692] NET: Registered protocol family 1
[    2.989248] RPC: Registered named UNIX socket transport module.
[    2.995296] RPC: Registered udp transport module.
[    3.000132] RPC: Registered tcp transport module.
[    3.004968] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    3.011539] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    3.020140] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    3.033776] IOAPIC[0]: Set routing entry (2-16 -> 0xef -> IRQ 16 Mode:1 Active:1 Dest:1)
[    3.042124] pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x645 took 21528 usecs
[    3.049746] PCI: CLS 0 bytes, default 64
[    3.053830] Trying to unpack rootfs image as initramfs...
[    7.625855] Freeing initrd memory: 428452K
[    7.630307] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    7.636877] software IO TLB: mapped [mem 0x9b19f000-0x9f19f000] (64MB)
[    7.644639] Initialise system trusted keyrings
[    7.649229] Key type blacklist registered
[    7.653394] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[    7.660727] zbud: loaded
[    7.663548] 9p: Installing v9fs 9p2000 file system support
[    7.675291] NET: Registered protocol family 38
[    7.679870] Key type asymmetric registered
[    7.684103] Asymmetric key parser 'x509' registered
[    7.689116] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    7.696724] io scheduler mq-deadline registered
[    7.701388] io scheduler kyber registered
[    7.705564] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    7.712754] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    7.726390] IOAPIC[0]: Set routing entry (2-16 -> 0xef -> IRQ 16 Mode:1 Active:1 Dest:1)
[    7.734702] pcieport 0000:00:01.0: PME: Signaling with IRQ 122
[    7.740780] pcieport 0000:00:1c.0: PME: Signaling with IRQ 123
[    7.746773] pcieport 0000:00:1c.0: AER: enabled with IRQ 123
[    7.752626] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    7.759468] intel_idle: MWAIT substates: 0x142120
[    7.764305] intel_idle: v0.5.1 model 0x5E
[    7.768729] intel_idle: Local APIC timer is reliable in all C-states
[    7.775322] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    7.783870] ACPI: Sleep Button [SLPB]
[    7.787686] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    7.796227] ACPI: Power Button [PWRB]
[    7.800044] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    7.807645] ACPI: Power Button [PWRF]
[    7.812572] thermal LNXTHERM:00: registered as thermal_zone0
[    7.818360] ACPI: Thermal Zone [TZ00] (28 C)
[    7.822842] thermal LNXTHERM:01: registered as thermal_zone1
[    7.828639] ACPI: Thermal Zone [TZ01] (30 C)
[    7.833089] ERST: Error Record Serialization Table (ERST) support is disabled.
[    7.840529] ERST DBG: ERST support is disabled.
[    7.845304] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    7.851768] 00:01: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    7.859811] Non-volatile memory driver v1.3
[    7.864180] Linux agpgart interface v0.103
[    7.869151] rdac: device handler registered
[    7.873535] hp_sw: device handler registered
[    7.877954] emc: device handler registered
[    7.882276] alua: device handler registered
[    7.886649] libphy: Fixed MDIO Bus: probed
[    7.890911] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    7.898080] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    7.905934] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    7.911893] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    7.917995] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
[    7.931655] IOAPIC[0]: Set routing entry (2-19 -> 0xef -> IRQ 19 Mode:1 Active:1 Dest:1)
[    7.939973] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    8.178074] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[    8.250150] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) f4:8e:38:7c:5b:de
[    8.258313] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[    8.265390] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
[    8.272416] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.6.0-k
[    8.279506] igb: Copyright (c) 2007-2014 Intel Corporation.
[    8.285224] ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 5.1.0-k
[    8.293072] ixgbe: Copyright (c) 1999-2016 Intel Corporation.
[    8.299127] i40e: Intel(R) Ethernet Connection XL710 Network Driver - version 2.8.20-k
[    8.307243] i40e: Copyright (c) 2013 - 2019 Intel Corporation.
[    8.313343] usbcore: registered new interface driver catc
[    8.318888] usbcore: registered new interface driver kaweth
[    8.324601] pegasus: v0.9.3 (2013/04/25), Pegasus/Pegasus II USB Ethernet driver
[    8.332192] usbcore: registered new interface driver pegasus
[    8.337983] usbcore: registered new interface driver rtl8150
[    8.343772] usbcore: registered new interface driver asix
[    8.349302] usbcore: registered new interface driver cdc_ether
[    8.355263] usbcore: registered new interface driver cdc_eem
[    8.361050] usbcore: registered new interface driver dm9601
[    8.366754] usbcore: registered new interface driver smsc75xx
[    8.372631] usbcore: registered new interface driver smsc95xx
[    8.378507] usbcore: registered new interface driver gl620a
[    8.384208] usbcore: registered new interface driver net1080
[    8.389997] usbcore: registered new interface driver plusb
[    8.395613] usbcore: registered new interface driver rndis_host
[    8.401660] usbcore: registered new interface driver cdc_subset
[    8.407707] usbcore: registered new interface driver zaurus
[    8.413409] usbcore: registered new interface driver MOSCHIP usb-ethernet driver
[    8.420997] usbcore: registered new interface driver int51x1
[    8.426784] usbcore: registered new interface driver ipheth
[    8.432486] usbcore: registered new interface driver sierra_net
[    8.438653] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    8.445320] ehci-pci: EHCI PCI platform driver
[    8.449904] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    8.456209] ohci-pci: OHCI PCI platform driver
[    8.460791] uhci_hcd: USB Universal Host Controller Interface driver
[    8.467378] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    8.472857] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    8.481514] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000001109810
[    8.490863] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    8.497890] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.07
[    8.506338] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.513749] usb usb1: Product: xHCI Host Controller
[    8.518756] usb usb1: Manufacturer: Linux 5.7.0-01787-gd83f959b5e7a6 xhci-hcd
[    8.526011] usb usb1: SerialNumber: 0000:00:14.0
[    8.530946] hub 1-0:1.0: USB hub found
[    8.534846] hub 1-0:1.0: 16 ports detected
[    8.539857] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    8.545364] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    8.552979] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    8.559414] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.07
[    8.567872] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    8.575283] usb usb2: Product: xHCI Host Controller
[    8.580294] usb usb2: Manufacturer: Linux 5.7.0-01787-gd83f959b5e7a6 xhci-hcd
[    8.587549] usb usb2: SerialNumber: 0000:00:14.0
[    8.592471] hub 2-0:1.0: USB hub found
[    8.596371] hub 2-0:1.0: 10 ports detected
[    8.600964] usb: port power management may be unreliable
[    8.606559] usbcore: registered new interface driver usbserial_generic
[    8.613211] usbserial: USB Serial support registered for generic
[    8.619362] i8042: PNP: No PS/2 controller found.
[    8.624247] mousedev: PS/2 mouse device common for all mice
[    8.630166] rtc_cmos 00:04: RTC can wake from S4
[    8.635410] rtc_cmos 00:04: registered as rtc0
[    8.640148] rtc_cmos 00:04: setting system clock to 2020-06-21T01:31:51 UTC (1592703111)
[    8.648474] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    8.656392] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    8.662297] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    8.669624] tsc: Refined TSC clocksource calibration: 3408.000 MHz
[    8.671121] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    8.675944] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x311fd3cd494, max_idle_ns: 440795223879 ns
[    8.681745] iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[    8.699273] clocksource: Switched to clocksource tsc
[    8.699401] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    8.710545] iTCO_vendor_support: vendor-support=0
[    8.715369] intel_pstate: Intel P-state driver initializing
[    8.721146] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 0 (-61)
[    8.728900] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 1 (-61)
[    8.736615] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 2 (-61)
[    8.744400] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 3 (-61)
[    8.752222] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 4 (-61)
[    8.760010] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 5 (-61)
[    8.768077] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 6 (-61)
[    8.775891] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 7 (-61)
[    8.783861] hid: raw HID events driver (C) Jiri Kosina
[    8.789211] usbcore: registered new interface driver usbhid
[    8.794908] usbhid: USB HID core driver
[    8.798902] drop_monitor: Initializing network drop monitor service
[    8.805365] Initializing XFRM netlink socket
[    8.809817] NET: Registered protocol family 10
[    8.814586] Segment Routing with IPv6
[    8.818389] NET: Registered protocol family 17
[    8.822969] 9pnet: Installing 9P2000 support
[    8.827367] mpls_gso: MPLS GSO support
[    8.832204] microcode: sig=0x506e3, pf=0x2, revision=0xdc
[    8.837953] microcode: Microcode Update Driver: v2.2.
[    8.837955] IPI shorthand broadcast: enabled
[    8.847612] ... APIC ID:      00000000 (0)
[    8.848610] ... APIC VERSION: 01060015
[    8.848610] 0000000000000000000000000000000000000000000000000000000000000000
[    8.862620] 0000000000000000000000000000000000000000000000000000000000000000
[    8.865617] usb 1-4: new low-speed USB device number 2 using xhci_hcd
[    8.862620] 0000000000000000000000000000000000000000000000000000000000000000
[    8.870017] number of MP IRQ sources: 15.
[    8.870017] number of IO-APIC #2 registers: 120.
[    8.870018] testing the IO APIC.......................
[    8.897877] IO APIC #2......
[    8.900891] .... register #00: 02000000
[    8.904855] .......    : physical APIC id: 02
[    8.909336] .......    : Delivery Type: 0
[    8.913472] .......    : LTS          : 0
[    8.917609] .... register #01: 00770020
[    8.921571] .......     : max redirection entries: 77
[    8.926768] .......     : PRQ implemented: 0
[    8.931161] .......     : IO APIC version: 20
[    8.935641] .... register #02: 00000000
[    8.939603] .......     : arbitration: 00
[    8.943738] .... IRQ redirection table:
[    8.947702] IOAPIC 0:
[    8.950123]  pin00, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.958130]  pin01, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.966138]  pin02, enabled , edge , high, V(02), IRR(0), S(0), remapped, I(0001),  Z(0)
[    8.974404]  pin03, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.982411]  pin04, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.990419]  pin05, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    8.998425]  pin06, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.006463]  pin07, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.009746] usb 1-4: New USB device found, idVendor=14dd, idProduct=1007, bcdDevice= 0.00
[    9.014470]  pin08, enabled , edge , high, V(08), IRR(0), S(0), remapped, I(0007),  Z(0)
[    9.022849] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=7
[    9.031129]  pin09, enabled , level, high, V(09), IRR(0), S(0), remapped, I(0008),  Z(0)
[    9.038377] usb 1-4: Product: D2CIM-DVUSB
[    9.038378] usb 1-4: Manufacturer: Raritan
[    9.046676]  pin0a, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.050812] usb 1-4: SerialNumber: HUX49000810000007
[    9.055044]  pin0b, disabled, edge , high, V(00), IRR(0), S(0), physical, D(80), M(2)
[    9.069885] input: Raritan D2CIM-DVUSB as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:14DD:1007.0001/input/input3
[    9.070183]  pin0c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.070193]  pin0d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.105548]  pin0e, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.113554]  pin0f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.121558]  pin10, enabled , level, low , V(10), IRR(0), S(0), remapped, I(000F),  Z(0)
[    9.129709] hid-generic 0003:14DD:1007.0001: input,hidraw0: USB HID v1.10 Keyboard [Raritan D2CIM-DVUSB] on usb-0000:00:14.0-4/input0
[    9.129850]  pin11, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.146174] input: Raritan D2CIM-DVUSB as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:14DD:1007.0002/input/input4
[    9.149994]  pin12, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.161491] hid-generic 0003:14DD:1007.0002: input,hidraw1: USB HID v1.10 Mouse [Raritan D2CIM-DVUSB] on usb-0000:00:14.0-4/input1
[    9.169356]  pin13, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.185863] input: Raritan D2CIM-DVUSB as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.2/0003:14DD:1007.0003/input/input5
[    9.189235]  pin14, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.200802] hid-generic 0003:14DD:1007.0003: input,hidraw2: USB HID v1.10 Mouse [Raritan D2CIM-DVUSB] on usb-0000:00:14.0-4/input2
[    9.208601]  pin15, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.228481]  pin16, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.236486]  pin17, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.244494]  pin18, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.252499]  pin19, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.260516]  pin1a, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.268536]  pin1b, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.276554]  pin1c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.284567]  pin1d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(2)
[    9.292575]  pin1e, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.300579]  pin1f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.308586]  pin20, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.316590]  pin21, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.324596]  pin22, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.332603]  pin23, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.340610]  pin24, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.348618]  pin25, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.356622]  pin26, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.364629]  pin27, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.372638]  pin28, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.380644]  pin29, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.388652]  pin2a, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.396658]  pin2b, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.404663]  pin2c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.412667]  pin2d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.420673]  pin2e, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.428680]  pin2f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.436685]  pin30, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.444691]  pin31, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.452697]  pin32, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.460705]  pin33, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.468712]  pin34, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.476720]  pin35, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.484724]  pin36, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.492736]  pin37, disabled, edge , high, V(02), IRR(0), S(0), physical, D(00), M(2)
[    9.500753]  pin38, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.508774]  pin39, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.516795]  pin3a, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.524807]  pin3b, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(2)
[    9.532817]  pin3c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.540824]  pin3d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.548829]  pin3e, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.556836]  pin3f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.564844]  pin40, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.572850]  pin41, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.580856]  pin42, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.588862]  pin43, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.596870]  pin44, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.604878]  pin45, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.612883]  pin46, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.620891]  pin47, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.628896]  pin48, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.636904]  pin49, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.644913]  pin4a, disabled, edge , high, V(01), IRR(0), S(0), logical , D(40), M(2)
[    9.652918]  pin4b, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.660927]  pin4c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.668934]  pin4d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.676940]  pin4e, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.684949]  pin4f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.692957]  pin50, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.700967]  pin51, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.708974]  pin52, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.716983]  pin53, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.724993]  pin54, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.733010]  pin55, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.741029]  pin56, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.749052]  pin57, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.757075]  pin58, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.765084]  pin59, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.773092]  pin5a, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.781101]  pin5b, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.789108]  pin5c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.797115]  pin5d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.805126]  pin5e, disabled, edge , high, V(00), IRR(0), S(0), remapped, I(4144),  Z(2)
[    9.815414]  pin5f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.823423]  pin60, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.831432]  pin61, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.839443]  pin62, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.847449]  pin63, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.855455]  pin64, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.863463]  pin65, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.871469]  pin66, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.879476]  pin67, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.887484]  pin68, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.895488]  pin69, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.903509]  pin6a, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.911531]  pin6b, disabled, edge , high, V(08), IRR(0), S(0), physical, D(80), M(2)
[    9.919552]  pin6c, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.927571]  pin6d, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.935593]  pin6e, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.943601]  pin6f, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.951606]  pin70, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.959626]  pin71, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.967649]  pin72, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.975685]  pin73, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.983720]  pin74, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.991740]  pin75, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[    9.999770]  pin76, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[   10.007794]  pin77, disabled, edge , high, V(00), IRR(0), S(0), physical, D(00), M(0)
[   10.015806] IRQ to pin mappings:
[   10.019165] IRQ0 -> 0:2
[   10.021751] IRQ1 -> 0:1
[   10.024334] IRQ3 -> 0:3
[   10.026918] IRQ4 -> 0:4
[   10.029501] IRQ5 -> 0:5
[   10.032087] IRQ6 -> 0:6
[   10.034712] IRQ7 -> 0:7
[   10.037297] IRQ8 -> 0:8
[   10.039881] IRQ9 -> 0:9
[   10.042465] IRQ10 -> 0:10
[   10.045222] IRQ11 -> 0:11
[   10.047980] IRQ12 -> 0:12
[   10.050762] IRQ13 -> 0:13
[   10.053519] IRQ14 -> 0:14
[   10.056274] IRQ15 -> 0:15
[   10.059031] IRQ16 -> 0:16
[   10.061789] IRQ19 -> 0:19
[   10.064546] .................................... done.
[   10.069815] sched_clock: Marking stable (9093769852, 976036464)->(11131229948, -1061423632)
[   10.078569] registered taskstats version 1
[   10.082800] Loading compiled-in X.509 certificates
[   10.088652] Loaded X.509 cert 'Build time autogenerated kernel key: 0328e247500a04464bd2491a575342f060cc864b'
[   10.098788] zswap: loaded using pool lzo/zbud
[   10.103393] Key type ._fscrypt registered
[   10.107531] Key type .fscrypt registered
[   10.111581] Key type fscrypt-provisioning registered
[   10.119807] Key type big_key registered
[   10.125413] Key type encrypted registered
[   10.129552] AppArmor: AppArmor sha1 policy hashing enabled
[   10.135156] ima: No TPM chip found, activating TPM-bypass!
[   10.140804] ima: Allocated hash algorithm: sha1
[   10.145461] ima: No architecture policies found
[   10.150116] evm: Initialising EVM extended attributes:
[   10.155372] evm: security.selinux
[   10.158829] evm: security.apparmor
[   10.162360] evm: security.ima
[   10.165461] evm: security.capability
[   10.169165] evm: HMAC attrs: 0x1
[   10.173007] PM:   Magic number: 8:159:509
[   15.185109] e1000e 0000:00:1f.6 eth0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[   15.196897] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   15.208782] Sending DHCP requests ..
[   19.039932] random: fast init done
[   21.295665] ., OK
[   21.311835] IP-Config: Got DHCP answer from 192.168.3.2, my address is 192.168.3.76
[   21.319664] IP-Config: Complete:
[   21.323025]      device=eth0, hwaddr=f4:8e:38:7c:5b:de, ipaddr=192.168.3.76, mask=255.255.255.0, gw=192.168.3.200
[   21.333435]      host=lkp-skl-d01, domain=lkp.intel.com, nis-domain=(none)
[   21.340414]      bootserver=192.168.3.200, rootserver=192.168.3.200, rootpath=
[   21.340415]      nameserver0=192.168.3.200
[   21.353046] Freeing unused decrypted memory: 2040K
[   21.358330] Freeing unused kernel image (initmem) memory: 2580K
[   21.373732] Write protecting the kernel read-only data: 22528k
[   21.380227] Freeing unused kernel image (text/rodata gap) memory: 2044K
[   21.387300] Freeing unused kernel image (rodata/data gap) memory: 1304K
[   21.394085] rodata_test: all tests were successful
[   21.399008] Run /init as init process
[   21.402806]   with arguments:
[   21.405914]     /init
[   21.408330]     erst_disable
[   21.411348]     nokaslr
[   21.413935]   with environment:
[   21.417214]     HOME=/
[   21.419743]     TERM=linux
[   21.422587]     user=lkp
[   21.425277]     job=/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-10547-1y430f0-2.yaml
[   21.442576]     ARCH=x86_64
[   21.445504]     kconfig=x86_64-rhel-7.6
[   21.449468]     branch=linux-devel/devel-hourly-2020061608
[   21.455069]     commit=d83f959b5e7a6378a4afbff23de2a2d064d95749
[   21.461099]     BOOT_IMAGE=/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/vmlinuz-5.7.0-01787-gd83f959b5e7a6
[   21.473402]     max_uptime=3600
[   21.476719]     RESULT_ROOT=/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/3
[   21.493147]     LKP_SERVER=inn
[   21.496334]     prompt_ramdisk=0
[   21.499721]     vga=normal
[   21.504342] systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
[   21.515479] random: systemd: uninitialized urandom read (16 bytes read)
[   21.522437] random: systemd: uninitialized urandom read (16 bytes read)
[   21.529174] random: systemd: uninitialized urandom read (16 bytes read)


         Mounting RPC Pipe File System...
         Mounting POSIX Message Queue File System...
         Mounting Debug File System...
         Starting Journal Service...
         Starting Remount Root and Kernel File Systems...
         Starting Load Kern
[   21.694457] wmi_bus wmi_bus-PNP0C14:00: WQBC data block query control method not found
el Modules...
udev Control Socket.
         Mounting Huge Pages File System...
System.
rted Remount Roo
[   21.758690] IOAPIC[2]: Set IRTE entry (P:1 FPD:0 Dst_Mode:1 Redir_hint:1 Trig_Mode:0 Dlvry_Mode:0 Avail:0 Vector:EF Dest:00000100 SID:F0F8 SQ:0 SVT:1)
t and Kernel Fil
[   21.773383] IOAPIC[0]: Set routing entry (2-17 -> 0xef -> IRQ 17 Mode:1 Active:1 Dest:1)
e Systems.
arted Load Kerne
[   21.801810] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst 
l Modules.
         Starting Apply Kernel Variables...
       
[   21.817424] AVX2 version of gcm_enc/dec engaged.
  Mounting Confi
[   21.822741] AES CTR mode by8 optimization enabled
guration File System...
         Starting Create Static Device Nodes in /dev...
[   21.835008] scsi host0: ahci

         Start
[   21.838768] Error: Driver 'pcspkr' is already registered, aborting...
ing udev Coldplu
[   21.843615] scsi host1: ahci
g all Devices...
[   21.850864] scsi host2: ahci

         Start
[   21.855045] scsi host3: ahci
ing Load/Save Ra
[   21.859108] ata1: SATA max UDMA/133 abar m2048@0xf704b000 port 0xf704b100 irq 127
ndom Seed...
] Mounted Config
[   21.885549] ata4: SATA max UDMA/133 abar m2048@0xf704b000 port 0xf704b280 irq 127
uration File System.
         Starting Preprocess NFS configuration...
         Starting Raise network interfaces...
         Starting udev Kernel Device Manager...
         Starting Flush Journal to Persistent Storage...
0m] Reached targ
[   21.998213] i915 0000:00:02.0: vgaarb: deactivate vga console
et Network is Online.
[   22.006724] Console: switching to colour dummy device 80x25
[   22.012795] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   22.030289] i915 0000:00:02.0: Direct firmware load for i915/skl_dmc_ver1_27.bin failed with error -2
[   22.039438] i915 0000:00:02.0: [drm] Failed to load DMC firmware i915/skl_dmc_ver1_27.bin. Disabling runtime power management.
[   22.050722] i915 0000:00:02.0: [drm] DMC firmware homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
0m] Started Flus
[   22.064498] [drm] Initialized i915 1.6.0 20200313 for 0000:00:02.0 on minor 0
h Journal to Persistent Storage.
[   22.073571] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)

[   22.082063] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input7
         Starting Create Volatile Files and Directories...
         Starting Network Time Synchronization...
         Starting RPC bind portmap service...
         Starting Update UTMP about System Boot/
[   22.126002] mei_wdt 0000:00:16.0-05b79a6f-4628-4d7f-899d-a91514cb32ab: Could not reg notif event ret=-22
Shutdown...
[   22.136703] fbcon: i915drmfb (fb0) is primary device
[   22.156497] mei_wdt: probe of 0000:00:16.0-05b79a6f-4628-4d7f-899d-a91514cb32ab failed with error -22
[   22.162527] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   22.162527] Console: switching to colour frame buffer device 160x64
[   22.178608] input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input8
[   22.202735] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[   22.204237] i915 0000:00:02.0: fb0: i915drmfb frame buffer device
[   22.210492] ata4: SATA link down (SStatus 4 SControl 300)
[   22.240953] ata3: SATA link down (SStatus 4 SControl 300)
0m] Started RPC 
[   22.253994] ata1.00: ATA-10: WDC WD10EZEX-75WN4A0, 01.01A01, max UDMA/133
[   22.261966] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
bind portmap ser
[   22.268924] ata2.00: ATAPI: PLDS DVD+/-RW DU-8A5LH, DD11, max UDMA/133
vice.
[   22.277502] ata1.00: configured for UDMA/133
[   22.281834] scsi 0:0:0:0: Direct-Access     ATA      WDC WD10EZEX-75W 1A01 PQ: 0 ANSI: 5
[   22.286279] ata2.00: configured for UDMA/133
et System Time Synchronized.
et RPC Port Mapp
[   22.344072] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
er.
[   22.353356] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   22.361293] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   22.367662] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   22.367693] snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x1a
0m] Started Update UTMP about System Boot/Shutdown.
[   22.391958] scsi 0:0:0:0: Attached scsi generic sg0 type 0
[   22.397986] scsi 1:0:0:0: Attached scsi generic sg1 type 5
[   22.398212] intel_rapl_common: Found RAPL domain package
[   22.408887] intel_rapl_common: Found RAPL domain core
[   22.408898] intel_rapl_common: Found RAPL domain uncore
0m] Reached target System Initialization.
[   22.463137] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[   22.470845] sd 0:0:0:0: [sda] 4096-byte physical blocks
[   22.470910] sd 0:0:0:0: [sda] Write Protect is off
[   22.480955] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
         
[   22.486147] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Starting System Logging Service...
         Starting /etc/rc.local Compatibility...
         Starting Permit User Sessions...
[   21.539711] rc.local[340]: PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/lkp/lkp/src/bin
         Starting Login Service...
[   22.541294] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
[   22.550911] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
0m] Started Dail
[   22.571031] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
y Cleanup of Tem
[   22.581535] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
porary Directories.
[   22.595005] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
LKP: HOSTNAME lkp-skl-d01, MAC f
[   22.606520] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
4:8e:38:7c:5b:de, kernel 5.7.0-01787-gd83f959b5e7a6 1, serial console /dev/ttyS0
         Starting LSB: Execute the kexec -e command to reboot system...
         Starting Load CPU microcode update...
         Starting LSB: Start and stop bmc-watchdog...
         Starting LKP bootstrap...
         Starting OpenBSD Secure Shell server...
         Starting LSB: Load kernel image with kexec...
[   22.980947]  sda: sda1 sda2 sda3
[   22.985274] sd 0:0:0:0: [sda] Attached SCSI disk
[   23.022220] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[   23.031525] cdrom: Uniform CD-ROM driver Revision: 3.20
[   23.051840] sr 1:0:0:0: Attached scsi CD-ROM sr0
[   23.270584] raid6: avx2x4   gen() 29613 MB/s
[   23.292581] raid6: avx2x4   xor() 10999 MB/s
[   23.314597] raid6: avx2x2   gen() 36043 MB/s
[   23.335595] raid6: avx2x2   xor() 21456 MB/s
[   23.357581] raid6: avx2x1   gen() 31283 MB/s
[   23.378581] raid6: avx2x1   xor() 17920 MB/s
[   23.399598] raid6: sse2x4   gen() 15500 MB/s
[   23.421581] raid6: sse2x4   xor()  8078 MB/s
[   23.442583] raid6: sse2x2   gen() 15747 MB/s
[   23.463582] raid6: sse2x2   xor()  9574 MB/s
[   23.484581] raid6: sse2x1   gen() 13270 MB/s
[   23.505595] raid6: sse2x1   xor()  6948 MB/s
[   23.510479] raid6: using algorithm avx2x2 gen() 36043 MB/s
[   23.516532] raid6: .... xor() 21456 MB/s, rmw enabled
[   23.522198] raid6: using avx2x2 recovery algorithm
[   23.536232] xor: automatically using best checksumming function   avx       
[   23.626467] Btrfs loaded, crc32c=crc32c-intel
[   23.631821] BTRFS: device label LKP-ROOTFS devid 1 transid 20544 /dev/sda2 scanned by systemd-udevd (251)
[   27.002669] Kernel tests: Boot OK!
[   27.002671] 
[   27.688167] random: crng init done
[   27.692054] random: 7 urandom warning(s) missed due to ratelimiting
[   30.831995] install debs round one: dpkg -i --force-confdef --force-depends /opt/deb/ntpdate_1%3a4.2.8p10+dfsg-3+deb9u2_amd64.deb
[   30.831997] 
[   30.845896] /opt/deb/gcc-10-base_10-20200418-1_amd64.deb
[   30.845897] 
[   30.853372] /opt/deb/libgcc-s1_10-20200418-1_amd64.deb
[   30.853373] 
[   30.860775] /opt/deb/libssl1.1_1.1.0l-1~deb9u1_amd64.deb
[   30.860776] 
[   30.868538] /opt/deb/libpython3.5-minimal_3.5.3-1+deb9u1_amd64.deb
[   30.868539] 
[   30.877139] /opt/deb/python3.5-minimal_3.5.3-1+deb9u1_amd64.deb
[   30.877140] 
[   30.885307] /opt/deb/python3-minimal_3.5.3-1_amd64.deb
[   30.885308] 
[   30.892906] /opt/deb/libpython3.5-stdlib_3.5.3-1+deb9u1_amd64.deb
[   30.892907] 
[   30.901246] /opt/deb/python3.5_3.5.3-1+deb9u1_amd64.deb
[   30.901247] 
[   30.908766] /opt/deb/libpython3-stdlib_3.5.3-1_amd64.deb
[   30.908767] 
[   30.916234] /opt/deb/dh-python_2.20170125_all.deb
[   30.916235] 
[   30.923057] /opt/deb/python3_3.5.3-1_amd64.deb
[   30.923058] 
[   30.929856] /opt/deb/uuid-runtime_2.29.2-1+deb9u1_amd64.deb
[   30.929857] 
[   30.937727] /opt/deb/libatomic1_6.3.0-18+deb9u1_amd64.deb
[   30.937728] 
[   30.945398] /opt/deb/libquadmath0_6.3.0-18+deb9u1_amd64.deb
[   30.945399] 
[   30.953322] /opt/deb/libgcc-6-dev_6.3.0-18+deb9u1_amd64.deb
[   30.953324] 
[   30.961086] /opt/deb/gcc-6_6.3.0-18+deb9u1_amd64.deb
[   30.961087] 
[   30.968136] /opt/deb/gcc_4%3a6.3.0-4_amd64.deb
[   30.968137] 
[   30.974731] /opt/deb/g++-6_6.3.0-18+deb9u1_amd64.deb
[   30.974732] 
[   30.981799] /opt/deb/g++_4%3a6.3.0-4_amd64.deb
[   30.981800] 
[   30.988512] /opt/deb/lib32gcc1_1%3a6.3.0-18+deb9u1_amd64.deb
[   30.988513] 
[   30.996464] /opt/deb/libx32gcc1_1%3a6.3.0-18+deb9u1_amd64.deb
[   30.996465] 
[   31.004568] /opt/deb/lib32atomic1_6.3.0-18+deb9u1_amd64.deb
[   31.004569] 
[   31.012516] /opt/deb/libx32atomic1_6.3.0-18+deb9u1_amd64.deb
[   31.012517] 
[   31.020529] /opt/deb/lib32quadmath0_6.3.0-18+deb9u1_amd64.deb
[   31.020530] 
[   31.028567] /opt/deb/libx32quadmath0_6.3.0-18+deb9u1_amd64.deb
[   31.028568] 
[   31.036695] /opt/deb/lib32gcc-6-dev_6.3.0-18+deb9u1_amd64.deb
[   31.036696] 
[   31.044793] /opt/deb/libx32gcc-6-dev_6.3.0-18+deb9u1_amd64.deb
[   31.044794] 
[   31.052987] /opt/deb/gcc-6-multilib_6.3.0-18+deb9u1_amd64.deb
[   31.052988] 
[   31.061006] /opt/deb/gcc-multilib_4%3a6.3.0-4_amd64.deb
[   31.061007] 
[   31.068316] /opt/deb/libdpkg-perl_1.18.25_all.deb
[   31.068317] 
[   31.076314] /opt/deb/netcat-openbsd_1.130-3_amd64.deb
[   31.076315] 
[   31.084687] /opt/deb/gawk_1%3a4.1.4+dfsg-1_amd64.deb
[   31.084688] 
[   31.093114] Selecting previously unselected package ntpdate.
[   31.093116] 
[   31.102536] (Reading database ... 16205 files and directories currently installed.)
[   31.102537] 
[   31.114002] Preparing to unpack .../ntpdate_1%3a4.2.8p10+dfsg-3+deb9u2_amd64.deb ...
[   31.114003] 
[   31.125171] Unpacking ntpdate (1:4.2.8p10+dfsg-3+deb9u2) ...
[   31.125172] 
[   31.134408] Selecting previously unselected package gcc-10-base:amd64.
[   31.134409] 
[   31.144635] Preparing to unpack .../gcc-10-base_10-20200418-1_amd64.deb ...
[   31.144637] 
[   31.155035] Unpacking gcc-10-base:amd64 (10-20200418-1) ...
[   31.155036] 
[   31.164215] Selecting previously unselected package libgcc-s1:amd64.
[   31.164216] 
[   31.174193] Preparing to unpack .../libgcc-s1_10-20200418-1_amd64.deb ...
[   31.174193] 
[   31.184329] Unpacking libgcc-s1:amd64 (10-20200418-1) ...
[   31.184330] 
[   31.193491] Replacing files in old package libgcc1:amd64 (1:6.3.0-18+deb9u1) ...
[   31.193492] 
[   31.204685] Preparing to unpack .../libssl1.1_1.1.0l-1~deb9u1_amd64.deb ...
[   31.204686] 
[   31.215542] Unpacking libssl1.1:amd64 (1.1.0l-1~deb9u1) over (1.1.0f-3+deb9u1) ...
[   31.215543] 
[   31.227083] Selecting previously unselected package libpython3.5-minimal:amd64.
[   31.227084] 
[   31.238443] Preparing to unpack .../libpython3.5-minimal_3.5.3-1+deb9u1_amd64.deb ...
[   31.238444] 
[   31.250096] Unpacking libpython3.5-minimal:amd64 (3.5.3-1+deb9u1) ...
[   31.250097] 
[   31.260347] Selecting previously unselected package python3.5-minimal.
[   31.260348] 
[   31.270862] Preparing to unpack .../python3.5-minimal_3.5.3-1+deb9u1_amd64.deb ...
[   31.270863] 
[   31.282007] Unpacking python3.5-minimal (3.5.3-1+deb9u1) ...
[   31.282008] 
[   31.291371] Selecting previously unselected package python3-minimal.
[   31.291372] 
[   31.301468] Preparing to unpack .../python3-minimal_3.5.3-1_amd64.deb ...
[   31.301469] 
[   31.311796] Unpacking python3-minimal (3.5.3-1) ...
[   31.311796] 
[   31.320700] Selecting previously unselected package libpython3.5-stdlib:amd64.
[   31.320701] 
[   31.331925] Preparing to unpack .../libpython3.5-stdlib_3.5.3-1+deb9u1_amd64.deb ...
[   31.331926] 
[   31.343421] Unpacking libpython3.5-stdlib:amd64 (3.5.3-1+deb9u1) ...
[   31.343422] 
[   31.353419] Selecting previously unselected package python3.5.
[   31.353420] 
[   31.363242] Preparing to unpack .../python3.5_3.5.3-1+deb9u1_amd64.deb ...
[   31.363243] 
[   31.373705] Unpacking python3.5 (3.5.3-1+deb9u1) ...
[   31.373706] 
[   31.382668] Selecting previously unselected package libpython3-stdlib:amd64.
[   31.382669] 
[   31.393596] Preparing to unpack .../libpython3-stdlib_3.5.3-1_amd64.deb ...
[   31.393597] 
[   31.404171] Unpacking libpython3-stdlib:amd64 (3.5.3-1) ...
[   31.404172] 
[   31.413503] Selecting previously unselected package dh-python.
[   31.413504] 
[   31.423179] Preparing to unpack .../dh-python_2.20170125_all.deb ...
[   31.423180] 
[   31.433034] Unpacking dh-python (2.20170125) ...
[   31.433035] 
[   31.441394] Selecting previously unselected package python3.
[   31.441396] 
[   31.450920] Preparing to unpack .../deb/python3_3.5.3-1_amd64.deb ...
[   31.450921] 
[   31.460768] Unpacking python3 (3.5.3-1) ...
[   31.460768] 
[   31.468768] Selecting previously unselected package uuid-runtime.
[   31.468769] 
[   31.478789] Preparing to unpack .../uuid-runtime_2.29.2-1+deb9u1_amd64.deb ...
[   31.478790] 
[   31.489534] Unpacking uuid-runtime (2.29.2-1+deb9u1) ...
[   31.489535] 
[   31.498552] Selecting previously unselected package libatomic1:amd64.
[   31.498553] 
[   31.508874] Preparing to unpack .../libatomic1_6.3.0-18+deb9u1_amd64.deb ...
[   31.508875] 
[   31.519485] Unpacking libatomic1:amd64 (6.3.0-18+deb9u1) ...
[   31.519486] 
[   31.528986] Selecting previously unselected package libquadmath0:amd64.
[   31.528987] 
[   31.539555] Preparing to unpack .../libquadmath0_6.3.0-18+deb9u1_amd64.deb ...
[   31.539555] 
[   31.550342] Unpacking libquadmath0:amd64 (6.3.0-18+deb9u1) ...
[   31.550343] 
[   31.560020] Selecting previously unselected package libgcc-6-dev:amd64.
[   31.560021] 
[   31.570551] Preparing to unpack .../libgcc-6-dev_6.3.0-18+deb9u1_amd64.deb ...
[   31.570552] 
[   31.581398] Unpacking libgcc-6-dev:amd64 (6.3.0-18+deb9u1) ...
[   31.581400] 
[   31.590889] Selecting previously unselected package gcc-6.
[   31.590890] 
[   31.600214] Preparing to unpack .../gcc-6_6.3.0-18+deb9u1_amd64.deb ...
[   31.600215] 
[   31.610245] Unpacking gcc-6 (6.3.0-18+deb9u1) ...
[   31.610246] 
[   31.618454] Selecting previously unselected package gcc.
[   31.618455] 
[   31.627450] Preparing to unpack .../deb/gcc_4%3a6.3.0-4_amd64.deb ...
[   31.627451] 
[   31.637155] Unpacking gcc (4:6.3.0-4) ...
[   31.637156] 
[   31.644838] Selecting previously unselected package g++-6.
[   31.644839] 
[   31.654202] Preparing to unpack .../g++-6_6.3.0-18+deb9u1_amd64.deb ...
[   31.654203] 
[   31.664177] Unpacking g++-6 (6.3.0-18+deb9u1) ...
[   31.664178] 
[   31.672376] Selecting previously unselected package g++.
[   31.672377] 
[   31.681437] Preparing to unpack .../deb/g++_4%3a6.3.0-4_amd64.deb ...
[   31.681438] 
[   31.691073] Unpacking g++ (4:6.3.0-4) ...
[   31.691074] 
[   31.698701] Selecting previously unselected package lib32gcc1.
[   31.698702] 
[   31.708439] Preparing to unpack .../lib32gcc1_1%3a6.3.0-18+deb9u1_amd64.deb ...
[   31.708440] 
[   31.719268] Unpacking lib32gcc1 (1:6.3.0-18+deb9u1) ...
[   31.719269] 
[   31.728225] Selecting previously unselected package libx32gcc1.
[   31.728226] 
[   31.738095] Preparing to unpack .../libx32gcc1_1%3a6.3.0-18+deb9u1_amd64.deb ...
[   31.738096] 
[   31.749014] Unpacking libx32gcc1 (1:6.3.0-18+deb9u1) ...
[   31.749015] 
[   31.758013] Selecting previously unselected package lib32atomic1.
[   31.758014] 
[   31.768020] Preparing to unpack .../lib32atomic1_6.3.0-18+deb9u1_amd64.deb ...
[   31.768020] 
[   31.778916] Unpacking lib32atomic1 (6.3.0-18+deb9u1) ...
[   31.778917] 
[   31.787998] Selecting previously unselected package libx32atomic1.
[   31.787999] 
[   31.798102] Preparing to unpack .../libx32atomic1_6.3.0-18+deb9u1_amd64.deb ...
[   31.798103] 
[   31.809080] Unpacking libx32atomic1 (6.3.0-18+deb9u1) ...
[   31.809082] 
[   31.818254] Selecting previously unselected package lib32quadmath0.
[   31.818255] 
[   31.828472] Preparing to unpack .../lib32quadmath0_6.3.0-18+deb9u1_amd64.deb ...
[   31.828473] 
[   31.839788] Unpacking lib32quadmath0 (6.3.0-18+deb9u1) ...
[   31.839788] 
[   31.849050] Selecting previously unselected package libx32quadmath0.
[   31.849051] 
[   31.859473] Preparing to unpack .../libx32quadmath0_6.3.0-18+deb9u1_amd64.deb ...
[   31.859474] 
[   31.870450] Unpacking libx32quadmath0 (6.3.0-18+deb9u1) ...
[   31.870451] 
[   31.879738] Selecting previously unselected package lib32gcc-6-dev.
[   31.879738] 
[   31.889981] Preparing to unpack .../lib32gcc-6-dev_6.3.0-18+deb9u1_amd64.deb ...
[   31.889982] 
[   31.900957] Unpacking lib32gcc-6-dev (6.3.0-18+deb9u1) ...
[   31.900958] 
[   31.910285] Selecting previously unselected package libx32gcc-6-dev.
[   31.910286] 
[   31.920703] Preparing to unpack .../libx32gcc-6-dev_6.3.0-18+deb9u1_amd64.deb ...
[   31.920705] 
[   31.931837] Unpacking libx32gcc-6-dev (6.3.0-18+deb9u1) ...
[   31.931838] 
[   31.941198] Selecting previously unselected package gcc-6-multilib.
[   31.941199] 
[   31.951458] Preparing to unpack .../gcc-6-multilib_6.3.0-18+deb9u1_amd64.deb ...
[   31.951459] 
[   31.962425] Unpacking gcc-6-multilib (6.3.0-18+deb9u1) ...
[   31.962426] 
[   31.971595] Selecting previously unselected package gcc-multilib.
[   31.971596] 
[   31.981508] Preparing to unpack .../gcc-multilib_4%3a6.3.0-4_amd64.deb ...
[   31.981508] 
[   31.991870] Unpacking gcc-multilib (4:6.3.0-4) ...
[   31.991871] 
[   32.000332] Selecting previously unselected package libdpkg-perl.
[   32.000333] 
[   32.010335] Preparing to unpack .../libdpkg-perl_1.18.25_all.deb ...
[   32.010337] 
[   32.020173] Unpacking libdpkg-perl (1.18.25) ...
[   32.020174] 
[   32.028478] Selecting previously unselected package netcat-openbsd.
[   32.028478] 
[   32.038511] Preparing to unpack .../netcat-openbsd_1.130-3_amd64.deb ...
[   32.038512] 
[   32.048717] Unpacking netcat-openbsd (1.130-3) ...
[   32.048718] 
[   32.057166] Selecting previously unselected package gawk.
[   32.057167] 
[   32.066437] Preparing to unpack .../gawk_1%3a4.1.4+dfsg-1_amd64.deb ...
[   32.066438] 
[   32.076416] Unpacking gawk (1:4.1.4+dfsg-1) ...
[   32.076417] 
[   32.084537] Setting up gcc-10-base:amd64 (10-20200418-1) ...
[   32.084538] 
[   32.093852] Setting up libgcc-s1:amd64 (10-20200418-1) ...
[   32.093853] 
[   32.103038] Setting up libssl1.1:amd64 (1.1.0l-1~deb9u1) ...
[   32.103039] 
[   32.112442] Setting up libpython3.5-minimal:amd64 (3.5.3-1+deb9u1) ...
[   32.112443] 
[   32.122500] Setting up python3.5-minimal (3.5.3-1+deb9u1) ...
[   32.122501] 
[   32.131779] Setting up python3-minimal (3.5.3-1) ...
[   32.131780] 
[   32.140299] Setting up uuid-runtime (2.29.2-1+deb9u1) ...
[   32.140300] 
[   32.149026] Adding group `uuidd' (GID 111) ...
[   32.149027] 
[   32.156314] Done.
[   32.156315] 
[   32.162515] Warning: The home dir /run/uuidd you specified can't be accessed: No such file or directory
[   32.162516] 
[   32.175243] Adding system user `uuidd' (UID 108) ...
[   32.175244] 
[   32.183887] Adding new user `uuidd' (UID 108) with group `uuidd' ...
[   32.183888] 
[   32.193657] Not creating home directory `/run/uuidd'.
[   32.193658] 
[   32.202195] Setting up libatomic1:amd64 (6.3.0-18+deb9u1) ...
[   32.202196] 
[   32.211478] Setting up libquadmath0:amd64 (6.3.0-18+deb9u1) ...
[   32.211479] 
[   32.220808] Setting up libdpkg-perl (1.18.25) ...
[   32.220809] 
[   32.228894] Setting up netcat-openbsd (1.130-3) ...
[   32.228895] 
[   32.237820] update-alternatives: using /bin/nc.openbsd to provide /bin/nc (nc) in auto mode
[   32.237821] 
[   32.249516] Setting up gawk (1:4.1.4+dfsg-1) ...
[   32.249517] 
[   32.257672] Setting up ntpdate (1:4.2.8p10+dfsg-3+deb9u2) ...
[   32.257672] 
[   32.266794] Setting up dh-python (2.20170125) ...
[   32.266795] 
[   32.275088] Setting up libgcc-6-dev:amd64 (6.3.0-18+deb9u1) ...
[   32.275089] 
[   32.284293] Setting up gcc-6 (6.3.0-18+deb9u1) ...
[   32.284294] 
[   32.292244] Setting up gcc (4:6.3.0-4) ...
[   32.292245] 
[   32.299649] Setting up g++-6 (6.3.0-18+deb9u1) ...
[   32.299650] 
[   32.307641] Setting up g++ (4:6.3.0-4) ...
[   32.307641] 
[   32.315760] update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
[   32.315761] 
[   32.327790] Setting up lib32gcc1 (1:6.3.0-18+deb9u1) ...
[   32.327791] 
[   32.336531] Setting up libx32gcc1 (1:6.3.0-18+deb9u1) ...
[   32.336532] 
[   32.345308] Setting up lib32atomic1 (6.3.0-18+deb9u1) ...
[   32.345308] 
[   32.354221] Setting up libx32atomic1 (6.3.0-18+deb9u1) ...
[   32.354222] 
[   32.363115] Setting up lib32quadmath0 (6.3.0-18+deb9u1) ...
[   32.363115] 
[   32.372166] Setting up libx32quadmath0 (6.3.0-18+deb9u1) ...
[   32.372167] 
[   32.381236] Setting up lib32gcc-6-dev (6.3.0-18+deb9u1) ...
[   32.381237] 
[   32.390236] Setting up libx32gcc-6-dev (6.3.0-18+deb9u1) ...
[   32.390237] 
[   32.399368] Setting up gcc-6-multilib (6.3.0-18+deb9u1) ...
[   32.399369] 
[   32.408191] Setting up gcc-multilib (4:6.3.0-4) ...
[   32.408192] 
[   32.416589] Setting up libpython3.5-stdlib:amd64 (3.5.3-1+deb9u1) ...
[   32.416590] 
[   32.426359] Setting up python3.5 (3.5.3-1+deb9u1) ...
[   32.426359] 
[   32.434927] Setting up libpython3-stdlib:amd64 (3.5.3-1) ...
[   32.434927] 
[   32.443859] Setting up python3 (3.5.3-1) ...
[   32.443860] 
[   32.451703] running python rtupdate hooks for python3.5...
[   32.451704] 
[   32.460725] running python post-rtupdate hooks for python3.5...
[   32.460726] 
[   32.470245] Processing triggers for libc-bin (2.24-11+deb9u3) ...
[   32.470246] 
[   32.479817] Processing triggers for mime-support (3.60) ...
[   32.479818] 
[   32.488938] Processing triggers for systemd (232-25+deb9u2) ...
[   32.488939] 
[   33.009060] 21 Jun 09:33:57 ntpdate[979]: step time server 192.168.1.1 offset 28901.980917 sec
[   33.009061] 
[   33.021408] BTRFS info (device sda2): disk space caching is enabled
[   33.028236] BTRFS info (device sda2): has skinny extents
[   33.473054] /lkp/lkp/src/bin/run-lkp
[   33.473060] 
[   33.989818] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.002357] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.014759] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.027145] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.039694] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.052072] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.064388] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.076867] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.089174] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.101459] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.113975] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.126245] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.138536] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.151026] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.163305] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.175712] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.188120] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.200357] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.212612] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.225062] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.237268] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.249514] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.261888] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.274165] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.286365] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.298767] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.310968] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.323157] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.335523] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.347726] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.360064] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.372415] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.384554] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.396774] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.409086] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.421209] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.433337] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.445660] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.457791] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.469949] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.482258] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.494339] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.506430] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x00000000-0x00000fff], got write-back
[   34.518723] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   34.530860] x86/PAT: bmc-watchdog:1096 map pfn expected mapping type uncached-minus for [mem 0x9f417000-0x9f417fff], got write-back
[   35.168713] RESULT_ROOT=/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/3
[   35.168716] 
[   35.516135] job=/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-10547-1y430f0-2.yaml
[   35.516137] 
[   36.909126] result_service=inn:/result, RESULT_MNT=/inn/result, RESULT_ROOT=/inn/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/3
[   36.909128] 
[   36.933929] mount.nfs: try 1 time... mount.nfs -o vers=3 inn:/result /inn/result
[   36.933931] 
[   36.947581] run-job /lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-10547-1y430f0-2.yaml
[   36.947583] 
[   38.732861] process 'testing/selftests/x86/test_syscall_vdso_32' started with executable stack
[   39.522052] /usr/bin/wget -q --timeout=1800 --tries=1 --local-encoding=UTF-8 http://inn:80/~lkp/cgi-bin/lkp-jobfile-append-var?job_file=/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-10547-1y430f0-2.yaml&job_state=running -O /dev/null
[   39.522054] 
[   39.555515] target ucode: 0xdc
[   39.555516] 
[   39.561917] current_version: dc, target_version: dc
[   39.561918] 
[   39.571585] KERNEL SELFTESTS: linux_headers_dir is /usr/src/linux-headers-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749
[   39.571586] 
[   39.586587] 2020-06-21 09:33:59 ln -sf /usr/bin/clang
[   39.586588] 
[   39.595044] 2020-06-21 09:33:59 ln -sf /usr/bin/llc
[   39.595045] 
[   39.604094] 2020-06-21 09:33:59 sed -i s/default_timeout=45/default_timeout=300/ kselftest/runner.sh
[   39.604095] 
[   39.616682] 2020-06-21 09:33:59 make run_tests -C x86
[   39.616684] 
[   39.627008] make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86'
[   39.627009] 
[   39.648119] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/single_step_syscall_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 single_step_syscall.c -lrt -ldl -lm
[   39.648120] 
[   39.679877] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sysret_ss_attrs_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sysret_ss_attrs.c -lrt -ldl -lm
[   39.679878] 
[   39.710862] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_nt_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_nt.c -lrt -ldl -lm
[   39.710863] 
[   39.741312] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_mremap_vdso_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_mremap_vdso.c -lrt -ldl -lm
[   39.741314] 
[   39.774381] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/check_initial_reg_state_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -Wl,-ereal_start -static -DCAN_BUILD_32 -DCAN_BUILD_64 check_initial_reg_state.c -lrt -ldl -lm
[   39.774382] 
[   39.809235] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sigreturn_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sigreturn.c -lrt -ldl -lm
[   39.809236] 
[   39.839444] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/iopl_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 iopl.c -lrt -ldl -lm
[   39.839445] 
[   39.869159] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ioperm_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ioperm.c -lrt -ldl -lm
[   39.869160] 
[   39.899716] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/protection_keys_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 protection_keys.c -lrt -ldl -lm
[   39.899717] 
[   39.931711] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_vdso_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_vdso.c -lrt -ldl -lm
[   39.931712] 
[   39.962988] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_vsyscall_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_vsyscall.c -lrt -ldl -lm
[   39.962989] 
[   39.994882] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/mov_ss_trap_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 mov_ss_trap.c -lrt -ldl -lm
[   39.994883] 
[   40.026854] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_arg_fault_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_arg_fault.c -lrt -ldl -lm
[   40.026855] 
[   40.059432] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/entry_from_vm86_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 entry_from_vm86.c -lrt -ldl -lm
[   40.059433] 
[   40.092302] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_syscall_vdso_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_syscall_vdso.c thunks_32.S -lrt -ldl -lm
[   40.092303] 
[   40.125880] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/unwind_vdso_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 unwind_vdso.c -lrt -ldl -lm
[   40.125881] 
[   40.157453] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_FCMOV_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_FCMOV.c -lrt -ldl -lm
[   40.157454] 
[   40.189064] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_FCOMI_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_FCOMI.c -lrt -ldl -lm
[   40.189066] 
[   40.220790] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_FISTTP_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_FISTTP.c -lrt -ldl -lm
[   40.220791] 
[   40.252808] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/vdso_restorer_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 vdso_restorer.c -lrt -ldl -lm
[   40.252809] 
[   40.285047] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ldt_gdt_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ldt_gdt.c -lrt -ldl -lm
[   40.285048] 
[   40.317190] gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ptrace_syscall_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ptrace_syscall.c raw_syscall_helper_32.S -lrt -ldl -lm
[   40.317191] 
[   40.352123] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/single_step_syscall_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 single_step_syscall.c -lrt -ldl
[   40.352124] 
[   40.385645] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sysret_ss_attrs_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sysret_ss_attrs.c thunks.S -lrt -ldl
[   40.385647] 
[   40.418753] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_nt_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_nt.c -lrt -ldl
[   40.418754] 
[   40.450251] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_mremap_vdso_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_mremap_vdso.c -lrt -ldl
[   40.450252] 
[   40.483908] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/check_initial_reg_state_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -Wl,-ereal_start -static -DCAN_BUILD_32 -DCAN_BUILD_64 check_initial_reg_state.c -lrt -ldl
[   40.483909] 
[   40.519574] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sigreturn_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sigreturn.c -lrt -ldl
[   40.519575] 
[   40.550595] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/iopl_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 iopl.c -lrt -ldl
[   40.550613] 
[   40.580627] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ioperm_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ioperm.c -lrt -ldl
[   40.580628] 
[   40.611385] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/protection_keys_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 protection_keys.c -lrt -ldl
[   40.611386] 
[   40.643460] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_vdso_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_vdso.c -lrt -ldl
[   40.643461] 
[   40.674772] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_vsyscall_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_vsyscall.c -lrt -ldl
[   40.674773] 
[   40.706710] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/mov_ss_trap_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 mov_ss_trap.c -lrt -ldl
[   40.706711] 
[   40.738435] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_arg_fault_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_arg_fault.c -lrt -ldl
[   40.738436] 
[   40.770810] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/fsgsbase_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 fsgsbase.c -lrt -ldl
[   40.770811] 
[   40.801767] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sysret_rip_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sysret_rip.c -lrt -ldl
[   40.801768] 
[   40.833191] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_numbering_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_numbering.c -lrt -ldl
[   40.833191] 
[   40.865427] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ldt_gdt_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ldt_gdt.c -lrt -ldl
[   40.865428] 
[   40.896641] gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ptrace_syscall_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ptrace_syscall.c -lrt -ldl
[   40.896655] 
[   40.924275] TAP version 13
[   40.924275] 
[   40.931208] 1..40
[   40.931208] 
[   40.937876] # selftests: x86: single_step_syscall_32
[   40.937877] 
[   40.947279] # [RUN]	Set TF and check nop
[   40.947279] 
[   40.955821] # [OK]	Survived with TF set and 14 traps
[   40.955822] 
[   40.965174] # [RUN]	Set TF and check int80
[   40.965175] 
[   40.973765] # [OK]	Survived with TF set and 14 traps
[   40.973766] 
[   40.983198] # [RUN]	Set TF and check a fast syscall
[   40.983199] 
[   40.992462] # [OK]	Survived with TF set and 43 traps
[   40.992463] 
[   41.001717] # [RUN]	Fast syscall with TF cleared
[   41.001718] 
[   41.010452] # [OK]	Nothing unexpected happened
[   41.010453] 
[   41.019067] # [RUN]	Set TF and check SYSENTER
[   41.019068] 
[   41.027752] # 	Got SIGSEGV with RIP=f7f47569, TF=256
[   41.027753] 
[   41.036965] # [RUN]	Fast syscall with TF cleared
[   41.036966] 
[   41.045663] # [OK]	Nothing unexpected happened
[   41.045664] 
[   41.054145] ok 1 selftests: x86: single_step_syscall_32
[   41.054146] 
[   41.063243] # selftests: x86: sysret_ss_attrs_32
[   41.063244] 
[   41.071897] # [RUN]	Syscalls followed by SS validation
[   41.071898] 
[   41.080563] # [OK]	We survived
[   41.080564] 
[   41.087399] ok 2 selftests: x86: sysret_ss_attrs_32
[   41.087400] 
[   41.095986] # selftests: x86: syscall_nt_32
[   41.095986] 
[   41.103822] # [RUN]	Set NT and issue a syscall
[   41.103823] 
[   41.112165] # [OK]	The syscall worked and flags are still set
[   41.112166] 
[   41.121382] # [RUN]	Set NT|TF and issue a syscall
[   41.121383] 
[   41.129916] # [OK]	The syscall worked and flags are still set
[   41.129916] 
[   41.139053] ok 3 selftests: x86: syscall_nt_32
[   41.139054] 
[   41.146976] # selftests: x86: test_mremap_vdso_32
[   41.146976] 
[   41.154964] # 	AT_SYSINFO_EHDR is 0xf7fbb000
[   41.154965] 
[   41.163309] # [NOTE]	Moving vDSO: [0xf7fbb000, 0xf7fbc000] -> [0xf7fb4000, 0xf7fb5000]
[   41.163311] 
[   41.174869] # [NOTE]	vDSO partial move failed, will try with bigger size
[   41.174870] 
[   41.185419] # [NOTE]	Moving vDSO: [0xf7fbb000, 0xf7fbd000] -> [0xf7fb3000, 0xf7fb5000]
[   41.185420] 
[   41.195949] # [OK]
[   41.195950] 
[   41.201180] ok 4 selftests: x86: test_mremap_vdso_32
[   41.201181] 
[   41.209420] # selftests: x86: check_initial_reg_state_32
[   41.209420] 
[   41.217807] # [OK]	All GPRs except SP are 0
[   41.217808] 
[   41.224926] # [OK]	FLAGS is 0x202
[   41.224927] 
[   41.231639] ok 5 selftests: x86: check_initial_reg_state_32
[   41.231640] 
[   41.240244] # selftests: x86: sigreturn_32
[   41.240245] 
[   41.247595] # [OK]	set_thread_area refused 16-bit data
[   41.247596] 
[   41.256007] # [OK]	set_thread_area refused 16-bit data
[   41.256008] 
[   41.264869] # [RUN]	Valid sigreturn: 64-bit CS (33), 32-bit SS (2b, GDT)
[   41.264870] 
[   41.274745] # [OK]	all registers okay
[   41.274746] 
[   41.282022] # [RUN]	Valid sigreturn: 32-bit CS (23), 32-bit SS (2b, GDT)
[   41.282023] 
[   41.291754] # [OK]	all registers okay
[   41.291755] 
[   41.299166] # [RUN]	Valid sigreturn: 16-bit CS (37), 32-bit SS (2b, GDT)
[   41.299168] 
[   41.308859] # [OK]	all registers okay
[   41.308860] 
[   41.316150] # [RUN]	Valid sigreturn: 64-bit CS (33), 16-bit SS (3f)
[   41.316151] 
[   41.325469] # [OK]	all registers okay
[   41.325470] 
[   41.332696] # [RUN]	Valid sigreturn: 32-bit CS (23), 16-bit SS (3f)
[   41.332697] 
[   41.341920] # [OK]	all registers okay
[   41.341921] 
[   41.349125] # [RUN]	Valid sigreturn: 16-bit CS (37), 16-bit SS (3f)
[   41.349126] 
[   41.358409] # [OK]	all registers okay
[   41.358409] 
[   41.365247] # [RUN]	64-bit CS (33), bogus SS (47)
[   41.365248] 
[   41.373307] # [OK]	Got #GP(0x0) (i.e. Segmentation fault)
[   41.373308] 
[   41.381925] # [RUN]	32-bit CS (23), bogus SS (47)
[   41.381926] 
[   41.390049] # [OK]	Got #GP(0x0) (i.e. Segmentation fault)
[   41.390050] 
[   41.398791] # [RUN]	16-bit CS (37), bogus SS (47)
[   41.398791] 
[   41.406998] # [OK]	Got #GP(0x0) (i.e. Segmentation fault)
[   41.406999] 
[   41.415702] # [RUN]	64-bit CS (33), bogus SS (23)
[   41.415703] 
[   41.424132] # [OK]	Got #GP(0x20) (i.e. GDT index 4, Segmentation fault)
[   41.424133] 
[   41.433967] # [RUN]	32-bit CS (23), bogus SS (23)
[   41.433967] 
[   41.442327] # [OK]	Got #GP(0x20) (i.e. GDT index 4, Segmentation fault)
[   41.442328] 
[   41.452188] # [RUN]	16-bit CS (37), bogus SS (23)
[   41.452189] 
[   41.460438] # [OK]	Got #GP(0x20) (i.e. GDT index 4, Segmentation fault)
[   41.460438] 
[   41.470273] # [RUN]	32-bit CS (4f), bogus SS (2b)
[   41.470274] 
[   41.478449] # [OK]	Got #NP(0x4c) (i.e. LDT index 9, Bus error)
[   41.478450] 
[   41.487492] # [RUN]	32-bit CS (23), bogus SS (57)
[   41.487493] 
[   41.495570] # [OK]	Got #GP(0x0) (i.e. Segmentation fault)
[   41.495571] 
[   41.504189] ok 6 selftests: x86: sigreturn_32
[   41.504190] 
[   41.511761] # selftests: x86: iopl_32
[   41.511762] 
[   41.518343] # [OK]	CLI faulted
[   41.518344] 
[   41.524443] # [OK]	STI faulted
[   41.524444] 
[   41.530502] # [OK]	outb to 0x80 worked
[   41.530503] 
[   41.537385] # [OK]	outb to 0x80 worked
[   41.537386] 
[   41.544145] # [OK]	outb to 0xed failed
[   41.544146] 
[   41.550849] # 	child: set IOPL to 3
[   41.550850] 
[   41.557353] # [RUN]	child: write to 0x80
[   41.557354] 
[   41.564149] # [OK]	CLI faulted
[   41.564150] 
[   41.570042] # [OK]	STI faulted
[   41.570042] 
[   41.576054] # [OK]	outb to 0x80 worked
[   41.576055] 
[   41.582785] # [OK]	outb to 0x80 worked
[   41.582786] 
[   41.589504] # [OK]	outb to 0xed failed
[   41.589505] 
[   41.596104] # [OK]	Child succeeded
[   41.596105] 
[   41.602789] # [RUN]	parent: write to 0x80 (should fail)
[   41.602790] 
[   41.610929] # [OK]	outb to 0x80 failed
[   41.610930] 
[   41.617422] # [OK]	CLI faulted
[   41.617423] 
[   41.623276] # [OK]	STI faulted
[   41.623277] 
[   41.629049] # 	iopl(3)
[   41.629050] 
[   41.634201] # 	Drop privileges
[   41.634202] 
[   41.640429] # [RUN]	iopl(3) unprivileged but with IOPL==3
[   41.640430] 
[   41.648694] # [RUN]	iopl(0) unprivileged
[   41.648695] 
[   41.655479] # [RUN]	iopl(3) unprivileged
[   41.655480] 
[   41.662188] # [OK]	Failed as expected
[   41.662188] 
[   41.668713] ok 7 selftests: x86: iopl_32
[   41.668714] 
[   41.675504] # selftests: x86: ioperm_32
[   41.675505] 
[   41.682153] # [OK]	outb to 0x80 failed
[   41.682154] 
[   41.688563] # [OK]	outb to 0xed failed
[   41.688564] 
[   41.695028] # [RUN]	enable 0x80
[   41.695029] 
[   41.700942] # [OK]	outb to 0x80 worked
[   41.700943] 
[   41.707494] # [OK]	outb to 0xed failed
[   41.707495] 
[   41.713849] # [RUN]	disable 0x80
[   41.713850] 
[   41.719770] # [OK]	outb to 0x80 failed
[   41.719770] 
[   41.726223] # [OK]	outb to 0xed failed
[   41.726224] 
[   41.733062] # [RUN]	child: check that we inherited permissions
[   41.733063] 
[   41.741537] # [OK]	outb to 0x80 worked
[   41.741538] 
[   41.748016] # [OK]	outb to 0xed failed
[   41.748017] 
[   41.754818] # [RUN]	child: Extend permissions to 0x81
[   41.754819] 
[   41.762823] # [RUN]	child: Drop permissions to 0x80
[   41.762823] 
[   41.770375] # [OK]	outb to 0x80 failed
[   41.770375] 
[   41.776844] # [OK]	outb to 0x80 failed
[   41.776845] 
[   41.783306] # [OK]	outb to 0xed failed
[   41.783307] 
[   41.789683] # [RUN]	enable 0x80
[   41.789683] 
[   41.795575] # [OK]	outb to 0x80 worked
[   41.795576] 
[   41.802066] # [OK]	outb to 0xed failed
[   41.802067] 
[   41.808418] # [RUN]	disable 0x80
[   41.808418] 
[   41.814321] # [OK]	outb to 0x80 failed
[   41.814322] 
[   41.820815] # [OK]	outb to 0xed failed
[   41.820816] 
[   41.827227] # [OK]	Child succeeded
[   41.827227] 
[   41.833624] # 	Verify that unsharing the bitmap worked
[   41.833637] 
[   41.841447] # [OK]	outb to 0x80 worked
[   41.841448] 
[   41.847838] # 	Drop privileges
[   41.847839] 
[   41.853481] # [RUN]	disable 0x80
[   41.853482] 
[   41.859245] # [OK]	it worked
[   41.859246] 
[   41.864883] # [RUN]	enable 0x80 again
[   41.864884] 
[   41.871070] # [OK]	it failed
[   41.871071] 
[   41.876838] ok 8 selftests: x86: ioperm_32
[   41.876839] 
[   41.883848] # selftests: x86: protection_keys_32
[   41.883849] 
[   41.890932] # has pku: 0
[   41.890932] 
[   41.896720] # running PKEY tests for unsupported CPU/OS
[   41.896721] 
[   41.904959] ok 9 selftests: x86: protection_keys_32
[   41.904960] 
[   41.912622] # selftests: x86: test_vdso_32
[   41.912623] 
[   41.919907] # Warning: failed to find getcpu in vDSO
[   41.919908] 
[   41.928261] # [RUN]	Testing clock_gettime for clock CLOCK_REALTIME (0)...
[   41.928261] 
[   41.938506] # 	1592703243.509739377 1592703243.509743541 1592703243.509743738
[   41.938507] 
[   41.949128] # [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC (1)...
[   41.949129] 
[   41.959096] # 	37.692899478 37.692899892 37.692900056
[   41.959096] 
[   41.967815] # [RUN]	Testing clock_gettime for clock CLOCK_PROCESS_CPUTIME_ID (2)...
[   41.967816] 
[   41.978484] # 	0.000721539 0.000722258 0.000722811
[   41.978485] 
[   41.986949] # [RUN]	Testing clock_gettime for clock CLOCK_THREAD_CPUTIME_ID (3)...
[   41.986950] 
[   41.997559] # 	0.000724733 0.000725262 0.000725781
[   41.997559] 
[   42.005863] # [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC_RAW (4)...
[   42.005864] 
[   42.016217] # 	36.495366960 36.495367323 36.495367534
[   42.016217] 
[   42.024926] # [RUN]	Testing clock_gettime for clock CLOCK_REALTIME_COARSE (5)...
[   42.024927] 
[   42.035959] # 	1592703243.509355978 1592703243.509355978 1592703243.509355978
[   42.035959] 
[   42.046756] # [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC_COARSE (6)...
[   42.046756] 
[   42.057407] # 	37.692508963 37.692508963 37.692508963
[   42.057408] 
[   42.066003] # [RUN]	Testing clock_gettime for clock CLOCK_BOOTTIME (7)...
[   42.066003] 
[   42.076024] # 	37.692913025 37.692913368 37.692913525
[   42.076025] 
[   42.085317] # [RUN]	Testing clock_gettime for clock CLOCK_REALTIME_ALARM (8)...
[   42.085319] 
[   42.096738] # 	1592703243.509762027 1592703243.509762534 1592703243.509763023
[   42.096739] 
[   42.107702] # [RUN]	Testing clock_gettime for clock CLOCK_BOOTTIME_ALARM (9)...
[   42.107703] 
[   42.118305] # 	37.692917482 37.692917992 37.692918488
[   42.118306] 
[   42.127114] # [RUN]	Testing clock_gettime for clock CLOCK_SGI_CYCLE (10)...
[   42.127115] 
[   42.137067] # [OK]	No such clock.
[   42.137068] 
[   42.144139] # [RUN]	Testing clock_gettime for clock CLOCK_TAI (11)...
[   42.144140] 
[   42.154467] # 	1592703243.509768408 1592703243.509768752 1592703243.509768910
[   42.154468] 
[   42.165356] # [RUN]	Testing clock_gettime for clock invalid (-1)...
[   42.165357] 
[   42.174760] # [OK]	No such clock.
[   42.174761] 
[   42.181986] # [RUN]	Testing clock_gettime for clock invalid (-2147483648)...
[   42.181986] 
[   42.192131] # [OK]	No such clock.
[   42.192132] 
[   42.199320] # [RUN]	Testing clock_gettime for clock invalid (2147483647)...
[   42.199321] 
[   42.209373] # [OK]	No such clock.
[   42.209374] 
[   42.216002] # [RUN]	Testing gettimeofday...
[   42.216003] 
[   42.223929] # 	1592703243.509773 1592703243.509774 1592703243.509774
[   42.223930] 
[   42.233909] # [OK]	timezones match: minuteswest=-480, dsttime=0
[   42.233910] 
[   42.243039] # [RUN]	Testing getcpu...
[   42.243040] 
[   42.250095] # [OK]	CPU 0: syscall: cpu 0, node 0
[   42.250096] 
[   42.258077] # [OK]	CPU 1: syscall: cpu 1, node 0
[   42.258078] 
[   42.266094] # [OK]	CPU 2: syscall: cpu 2, node 0
[   42.266095] 
[   42.274057] # [OK]	CPU 3: syscall: cpu 3, node 0
[   42.274057] 
[   42.282019] # [OK]	CPU 4: syscall: cpu 4, node 0
[   42.282020] 
[   42.289932] # [OK]	CPU 5: syscall: cpu 5, node 0
[   42.289932] 
[   42.297824] # [OK]	CPU 6: syscall: cpu 6, node 0
[   42.297825] 
[   42.305759] # [OK]	CPU 7: syscall: cpu 7, node 0
[   42.305760] 
[   42.313642] ok 10 selftests: x86: test_vdso_32
[   42.313643] 
[   42.321240] # selftests: x86: test_vsyscall_32
[   42.321241] 
[   42.328934] # [NOTE]	failed to find getcpu in vDSO
[   42.328935] 
[   42.336830] # [RUN]	test gettimeofday()
[   42.336831] 
[   42.343954] # 	vDSO time offsets: 0.000004 0.000000
[   42.343955] 
[   42.352209] # [OK]	vDSO gettimeofday()'s timeval was okay
[   42.352210] 
[   42.360505] # [RUN]	test time()
[   42.360506] 
[   42.366758] # [OK]	vDSO time() is okay
[   42.366759] 
[   42.373449] # [RUN]	getcpu() on CPU 0
[   42.373449] 
[   42.380076] # [RUN]	getcpu() on CPU 1
[   42.380077] 
[   42.386908] ok 11 selftests: x86: test_vsyscall_32
[   42.386909] 
[   42.394805] # selftests: x86: mov_ss_trap_32
[   42.394806] 
[   42.402091] # 	SS = 0x2b, &SS = 0x0x804d11c
[   42.402092] 
[   42.409237] # 	PR_SET_PTRACER_ANY succeeded
[   42.409238] 
[   42.416352] # 	Set up a watchpoint
[   42.416353] 
[   42.422956] # 	DR0 = 804d11c, DR1 = 8048863, DR7 = 7000a
[   42.422957] 
[   42.431318] # 	SS = 0x2b, &SS = 0x0x804d11c
[   42.431319] 
[   42.438577] # 	PR_SET_PTRACER_ANY succeeded
[   42.438581] 
[   42.445515] # 	Set up a watchpoint
[   42.445516] 
[   42.452290] # [RUN]	Read from watched memory (should get SIGTRAP)
[   42.452291] 
[   42.461755] # 	Got SIGTRAP with RIP=80486ed, EFLAGS.RF=0
[   42.461756] 
[   42.469932] # [RUN]	MOV SS; INT3
[   42.469932] 
[   42.476339] # 	Got SIGTRAP with RIP=80486fe, EFLAGS.RF=0
[   42.476340] 
[   42.484536] # [RUN]	MOV SS; INT 3
[   42.484537] 
[   42.491024] # 	Got SIGTRAP with RIP=8048710, EFLAGS.RF=0
[   42.491025] 
[   42.499199] # [RUN]	MOV SS; CS CS INT3
[   42.499200] 
[   42.506119] # 	Got SIGTRAP with RIP=8048723, EFLAGS.RF=0
[   42.506120] 
[   42.514288] # [RUN]	MOV SS; CSx14 INT3
[   42.514288] 
[   42.521206] # 	Got SIGTRAP with RIP=8048742, EFLAGS.RF=0
[   42.521206] 
[   42.529263] # [RUN]	MOV SS; INT 4
[   42.529264] 
[   42.535454] # 	Got SIGSEGV with RIP=804876c
[   42.535455] 
[   42.542393] # [RUN]	MOV SS; INTO
[   42.542394] 
[   42.548846] # 	Got SIGTRAP with RIP=804879c, EFLAGS.RF=0
[   42.548847] 
[   42.556897] # [RUN]	MOV SS; ICEBP
[   42.556898] 
[   42.563397] # 	Got SIGTRAP with RIP=8048b11, EFLAGS.RF=0
[   42.563398] 
[   42.571412] # [RUN]	MOV SS; CLI
[   42.571413] 
[   42.577496] # 	Got SIGSEGV with RIP=8048ad6
[   42.577496] 
[   42.584426] # [RUN]	MOV SS; #PF
[   42.584426] 
[   42.590473] # 	Got SIGSEGV with RIP=8048a98
[   42.590474] 
[   42.597364] # [RUN]	MOV SS; INT 1
[   42.597364] 
[   42.603636] # 	Got SIGSEGV with RIP=8048843
[   42.603637] 
[   42.610772] # [RUN]	MOV SS; breakpointed NOP
[   42.610773] 
[   42.618224] # 	Got SIGTRAP with RIP=8048864, EFLAGS.RF=0
[   42.618225] 
[   42.626333] # [RUN]	MOV SS; SYSENTER
[   42.626333] 
[   42.632868] # 	Got SIGSEGV with RIP=f7f3c569
[   42.632869] 
[   42.639972] # [RUN]	MOV SS; INT $0x80
[   42.639973] 
[   42.646356] # [OK]	I aten't dead
[   42.646357] 
[   42.652634] ok 12 selftests: x86: mov_ss_trap_32
[   42.652635] 
[   42.660274] # selftests: x86: syscall_arg_fault_32
[   42.660275] 
[   42.668134] # [RUN]	SYSENTER with invalid state
[   42.668135] 
[   42.675269] # [OK]	Seems okay
[   42.675270] 
[   42.681163] # [RUN]	SYSCALL with invalid state
[   42.681164] 
[   42.688448] # [SKIP]	Illegal instruction
[   42.688448] 
[   42.695468] # [RUN]	SYSENTER with TF and invalid state
[   42.695469] 
[   42.703472] # [OK]	Seems okay
[   42.703473] 
[   42.709892] # [RUN]	SYSCALL with TF and invalid state
[   42.709893] 
[   42.717995] # [SKIP]	Illegal instruction
[   42.717996] 
[   42.725064] ok 13 selftests: x86: syscall_arg_fault_32
[   42.725065] 
[   42.733242] # selftests: x86: entry_from_vm86_32
[   42.733243] 
[   42.740684] # [RUN]	#BR from vm86 mode
[   42.740685] 
[   42.747311] # [SKIP]	vm86 not supported
[   42.747312] 
[   42.754016] # [RUN]	SYSENTER from vm86 mode
[   42.754017] 
[   42.761068] # [SKIP]	vm86 not supported
[   42.761069] 
[   42.767856] # [RUN]	SYSCALL from vm86 mode
[   42.767857] 
[   42.774838] # [SKIP]	vm86 not supported
[   42.774839] 
[   42.781712] # [RUN]	STI with VIP set from vm86 mode
[   42.781713] 
[   42.789395] # [SKIP]	vm86 not supported
[   42.789395] 
[   42.796487] # [RUN]	POPF with VIP set and IF clear from vm86 mode
[   42.796488] 
[   42.805523] # [SKIP]	vm86 not supported
[   42.805524] 
[   42.812607] # [RUN]	POPF with VIP and IF set from vm86 mode
[   42.812608] 
[   42.821002] # [SKIP]	vm86 not supported
[   42.821003] 
[   42.828212] # [RUN]	POPF with VIP clear and IF set from vm86 mode
[   42.828212] 
[   42.837227] # [SKIP]	vm86 not supported
[   42.837228] 
[   42.843962] # [RUN]	INT3 from vm86 mode
[   42.843963] 
[   42.850615] # [SKIP]	vm86 not supported
[   42.850630] 
[   42.857417] # [RUN]	int80 from vm86 mode
[   42.857418] 
[   42.864298] # [SKIP]	vm86 not supported
[   42.864299] 
[   42.871140] # [RUN]	UMIP tests from vm86 mode
[   42.871141] 
[   42.878337] # [SKIP]	vm86 not supported
[   42.878338] 
[   42.885176] # [INFO]	Result from SMSW:[0x0000]
[   42.885177] 
[   42.893107] # [INFO]	Result from SIDT: limit[0x0000]base[0x00000000]
[   42.893108] 
[   42.902943] # [INFO]	Result from SGDT: limit[0x0000]base[0x00000000]
[   42.902944] 
[   42.912533] # [PASS]	All the results from SMSW are identical.
[   42.912534] 
[   42.921535] # [PASS]	All the results from SGDT are identical.
[   42.921535] 
[   42.930739] # [PASS]	All the results from SIDT are identical.
[   42.930740] 
[   42.939648] # [RUN]	STR instruction from vm86 mode
[   42.939649] 
[   42.947358] # [SKIP]	vm86 not supported
[   42.947358] 
[   42.954402] # [RUN]	SLDT instruction from vm86 mode
[   42.954403] 
[   42.962208] # [SKIP]	vm86 not supported
[   42.962209] 
[   42.969250] # [RUN]	Execute null pointer from vm86 mode
[   42.969251] 
[   42.977508] # [SKIP]	vm86 not supported
[   42.977509] 
[   42.984345] # [RUN]	#BR from vm86 mode
[   42.984346] 
[   42.991058] # [SKIP]	vm86 not supported
[   42.991059] 
[   42.997901] # [RUN]	SYSENTER from vm86 mode
[   42.997902] 
[   43.005026] # [SKIP]	vm86 not supported
[   43.005027] 
[   43.011881] # [RUN]	SYSCALL from vm86 mode
[   43.011882] 
[   43.018915] # [SKIP]	vm86 not supported
[   43.018916] 
[   43.025932] # [RUN]	STI with VIP set from vm86 mode
[   43.025933] 
[   43.033725] # [SKIP]	vm86 not supported
[   43.033726] 
[   43.041066] # [RUN]	POPF with VIP set and IF clear from vm86 mode
[   43.041067] 
[   43.050086] # [SKIP]	vm86 not supported
[   43.050087] 
[   43.057216] # [RUN]	POPF with VIP and IF set from vm86 mode
[   43.057217] 
[   43.065713] # [SKIP]	vm86 not supported
[   43.065714] 
[   43.073122] # [RUN]	POPF with VIP clear and IF set from vm86 mode
[   43.073123] 
[   43.082115] # [SKIP]	vm86 not supported
[   43.082116] 
[   43.088970] # [RUN]	INT3 from vm86 mode
[   43.088970] 
[   43.095797] # [SKIP]	vm86 not supported
[   43.095798] 
[   43.102702] # [RUN]	int80 from vm86 mode
[   43.102703] 
[   43.109632] # [SKIP]	vm86 not supported
[   43.109633] 
[   43.116688] # [RUN]	UMIP tests from vm86 mode
[   43.116689] 
[   43.124019] # [SKIP]	vm86 not supported
[   43.124020] 
[   43.130938] # [INFO]	Result from SMSW:[0x0000]
[   43.130939] 
[   43.138975] # [INFO]	Result from SIDT: limit[0x0000]base[0x00000000]
[   43.138975] 
[   43.148903] # [INFO]	Result from SGDT: limit[0x0000]base[0x00000000]
[   43.148904] 
[   43.158555] # [PASS]	All the results from SMSW are identical.
[   43.158556] 
[   43.167675] # [PASS]	All the results from SGDT are identical.
[   43.167676] 
[   43.176823] # [PASS]	All the results from SIDT are identical.
[   43.176823] 
[   43.185715] # [RUN]	STR instruction from vm86 mode
[   43.185716] 
[   43.193633] # [SKIP]	vm86 not supported
[   43.193634] 
[   43.200804] # [RUN]	SLDT instruction from vm86 mode
[   43.200805] 
[   43.208562] # [SKIP]	vm86 not supported
[   43.208563] 
[   43.215690] # [RUN]	Execute null pointer from vm86 mode
[   43.215691] 
[   43.223818] # [SKIP]	vm86 not supported
[   43.223819] 
[   43.230868] ok 14 selftests: x86: entry_from_vm86_32
[   43.230869] 
[   43.238985] # selftests: x86: test_syscall_vdso_32
[   43.238986] 
[   43.247171] # [RUN]	Executing 6-argument 32-bit syscall via VDSO
[   43.247172] 
[   43.256904] # [WARN]	Flags before=0000000000200ed7 id 0 00 o d i s z 0 a 0 p 1 c
[   43.256905] 
[   43.267965] # [WARN]	Flags  after=0000000000200682 id 0 00 d i s 0 0 1 
[   43.267965] 
[   43.278267] # [WARN]	Flags change=0000000000000855 0 00 o z 0 a 0 p 0 c
[   43.278267] 
[   43.288244] # [OK]	Arguments are preserved across syscall
[   43.288245] 
[   43.297666] # [NOTE]	R11 has changed:0000000000200682 - assuming clobbered by SYSRET insn
[   43.297667] 
[   43.309074] # [OK]	R8..R15 did not leak kernel data
[   43.309075] 
[   43.317469] # [RUN]	Executing 6-argument 32-bit syscall via INT 80
[   43.317469] 
[   43.327080] # [OK]	Arguments are preserved across syscall
[   43.327081] 
[   43.335937] # [OK]	R8..R15 did not leak kernel data
[   43.335938] 
[   43.344289] # [RUN]	Executing 6-argument 32-bit syscall via VDSO
[   43.344290] 
[   43.354311] # [WARN]	Flags before=0000000000200ed7 id 0 00 o d i s z 0 a 0 p 1 c
[   43.354312] 
[   43.365357] # [WARN]	Flags  after=0000000000200686 id 0 00 d i s 0 0 p 1 
[   43.365358] 
[   43.375889] # [WARN]	Flags change=0000000000000851 0 00 o z 0 a 0 0 c
[   43.375890] 
[   43.385890] # [OK]	Arguments are preserved across syscall
[   43.385891] 
[   43.395584] # [NOTE]	R11 has changed:0000000000200686 - assuming clobbered by SYSRET insn
[   43.395585] 
[   43.407128] # [OK]	R8..R15 did not leak kernel data
[   43.407129] 
[   43.415748] # [RUN]	Executing 6-argument 32-bit syscall via INT 80
[   43.415748] 
[   43.425410] # [OK]	Arguments are preserved across syscall
[   43.425411] 
[   43.434249] # [OK]	R8..R15 did not leak kernel data
[   43.434250] 
[   43.442525] # [RUN]	Running tests under ptrace
[   43.442526] 
[   43.450410] ok 15 selftests: x86: test_syscall_vdso_32
[   43.450411] 
[   43.458744] # selftests: x86: unwind_vdso_32
[   43.458745] 
[   43.466081] # 	AT_SYSINFO is 0xf7eed560
[   43.466082] 
[   43.473727] # [OK]	AT_SYSINFO maps to linux-gate.so.1, loaded at 0x0xf7eed000
[   43.473728] 
[   43.484309] # [RUN]	Set TF and check a fast syscall
[   43.484310] 
[   43.492941] # 	In vsyscall at 0xf7eed560, returning to 0xf7ca5737
[   43.492942] 
[   43.502107] # 	SIGTRAP at 0xf7eed560
[   43.502108] 
[   43.508593] # 	  0xf7eed560
[   43.508608] 
[   43.514511] # 	  0xf7ca5737
[   43.514512] 
[   43.520750] # [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
[   43.520751] 
[   43.528980] # 	SIGTRAP at 0xf7eed561
[   43.528981] 
[   43.535511] # 	  0xf7eed561
[   43.535512] 
[   43.541263] # 	  0xf7ca5737
[   43.541264] 
[   43.547357] # [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
[   43.547358] 
[   43.555422] # 	SIGTRAP at 0xf7eed562
[   43.555423] 
[   43.561834] # 	  0xf7eed562
[   43.561835] 
[   43.567475] # 	  0xf7ca5737
[   43.567476] 
[   43.573492] # [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
[   43.573493] 
[   43.581530] # 	SIGTRAP at 0xf7eed563
[   43.581530] 
[   43.587844] # 	  0xf7eed563
[   43.587845] 
[   43.593413] # 	  0xf7ca5737
[   43.593414] 
[   43.599305] # [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
[   43.599305] 
[   43.607255] # 	SIGTRAP at 0xf7eed565
[   43.607255] 
[   43.613499] # 	  0xf7eed565
[   43.613500] 
[   43.618954] # 	  0xf7ca5737
[   43.618955] 
[   43.624926] # [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
[   43.624927] 
[   43.632806] # 	SIGTRAP at 0xf7eed56a
[   43.632807] 
[   43.639012] # 	  0xf7eed56a
[   43.639013] 
[   43.644351] # 	  0xf7ca5737
[   43.644352] 
[   43.650214] # [OK]	  NR = 1685, args = 1, 2, 3, 4, 5, 6
[   43.650215] 
[   43.658125] # 	SIGTRAP at 0xf7eed56b
[   43.658126] 
[   43.664182] # 	  0xf7eed56b
[   43.664183] 
[   43.669513] # 	  0xf7ca5737
[   43.669514] 
[   43.675336] # [OK]	  NR = 1685, args = 1, 2, 3, 4, 5, 6
[   43.675337] 
[   43.683285] # 	SIGTRAP at 0xf7eed56c
[   43.683286] 
[   43.689351] # 	  0xf7eed56c
[   43.689352] 
[   43.694585] # 	  0xf7ca5737
[   43.694587] 
[   43.700375] # [OK]	  NR = 1685, args = 1, 2, 3, 4, 5, 6
[   43.700376] 
[   43.708171] # 	Vsyscall is done
[   43.708172] 
[   43.713915] # [OK]	All is well
[   43.713916] 
[   43.719854] ok 16 selftests: x86: unwind_vdso_32
[   43.719855] 
[   43.727315] # selftests: x86: test_FCMOV_32
[   43.727316] 
[   43.734383] # [RUN]	Testing fcmovCC instructions
[   43.734384] 
[   43.741403] # [OK]	fcmovCC
[   43.741404] 
[   43.746941] ok 17 selftests: x86: test_FCMOV_32
[   43.746942] 
[   43.754267] # selftests: x86: test_FCOMI_32
[   43.754268] 
[   43.761414] # [RUN]	Testing f[u]comi[p] instructions
[   43.761415] 
[   43.768998] # [OK]	f[u]comi[p]
[   43.768998] 
[   43.774918] ok 18 selftests: x86: test_FCOMI_32
[   43.774918] 
[   43.782327] # selftests: x86: test_FISTTP_32
[   43.782328] 
[   43.789480] # [RUN]	Testing fisttp instructions
[   43.789481] 
[   43.796469] # [OK]	fisttp
[   43.796470] 
[   43.802045] ok 19 selftests: x86: test_FISTTP_32
[   43.802046] 
[   43.809567] # selftests: x86: vdso_restorer_32
[   43.809568] 
[   43.817219] # [RUN]	Raise a signal, SA_SIGINFO, sa.restorer == NULL
[   43.817219] 
[   43.826637] # [OK]	SA_SIGINFO handler returned successfully
[   43.826638] 
[   43.835520] # [RUN]	Raise a signal, !SA_SIGINFO, sa.restorer == NULL
[   43.835521] 
[   43.845037] # [OK]	!SA_SIGINFO handler returned successfully
[   43.845038] 
[   43.853799] ok 20 selftests: x86: vdso_restorer_32
[   43.853799] 
[   43.861543] # selftests: x86: ldt_gdt_32
[   43.861543] 
[   43.869016] # [NOTE]	set_thread_area is available; will use GDT index 13
[   43.869017] 
[   43.879134] # [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000000A
[   43.879135] 
[   43.888999] # [OK]	LDT entry 0 has AR 0x00C0FB00 and limit 0x0000AFFF
[   43.889000] 
[   43.898368] # [OK]	LDT entry 1 is invalid
[   43.898369] 
[   43.905932] # [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
[   43.905933] 
[   43.915369] # [OK]	LDT entry 1 is invalid
[   43.915370] 
[   43.922877] # [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
[   43.922878] 
[   43.932835] # [OK]	LDT entry 2 has AR 0x00D0FB00 and limit 0x0000AFFF
[   43.932836] 
[   43.942830] # [OK]	LDT entry 2 has AR 0x00D07B00 and limit 0x0000AFFF
[   43.942831] 
[   43.952868] # [OK]	LDT entry 2 has AR 0x00907B00 and limit 0x0000AFFF
[   43.952869] 
[   43.962928] # [OK]	LDT entry 2 has AR 0x00D07300 and limit 0x0000AFFF
[   43.962930] 
[   43.973027] # [OK]	LDT entry 2 has AR 0x00D07100 and limit 0x0000AFFF
[   43.973028] 
[   43.983173] # [OK]	LDT entry 2 has AR 0x00D07500 and limit 0x0000AFFF
[   43.983174] 
[   43.993341] # [OK]	LDT entry 2 has AR 0x00507700 and limit 0x0000000A
[   43.993342] 
[   44.003338] # [OK]	LDT entry 2 has AR 0x00507F00 and limit 0x0000000A
[   44.003339] 
[   44.013398] # [OK]	LDT entry 2 has AR 0x00507D00 and limit 0x0000000A
[   44.013399] 
[   44.023525] # [OK]	LDT entry 2 has AR 0x00507B00 and limit 0x0000000A
[   44.023526] 
[   44.033634] # [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
[   44.033635] 
[   44.043104] # [RUN]	Test fork
[   44.043105] 
[   44.049918] # [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
[   44.049918] 
[   44.059565] # [OK]	LDT entry 1 is invalid
[   44.059566] 
[   44.066909] # [OK]	LDT entry 0 is invalid
[   44.066910] 
[   44.074706] # [NOTE]	set_thread_area is available; will use GDT index 13
[   44.074707] 
[   44.085220] # [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000000A
[   44.085220] 
[   44.095402] # [OK]	LDT entry 0 has AR 0x00C0FB00 and limit 0x0000AFFF
[   44.095403] 
[   44.105094] # [OK]	LDT entry 1 is invalid
[   44.105095] 
[   44.112988] # [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
[   44.112988] 
[   44.122842] # [OK]	LDT entry 1 is invalid
[   44.122843] 
[   44.130586] # [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
[   44.130587] 
[   44.140859] # [OK]	LDT entry 2 has AR 0x00D0FB00 and limit 0x0000AFFF
[   44.140860] 
[   44.151160] # [OK]	LDT entry 2 has AR 0x00D07B00 and limit 0x0000AFFF
[   44.151161] 
[   44.161405] # [OK]	LDT entry 2 has AR 0x00907B00 and limit 0x0000AFFF
[   44.161406] 
[   44.171622] # [OK]	LDT entry 2 has AR 0x00D07300 and limit 0x0000AFFF
[   44.171623] 
[   44.181954] # [OK]	LDT entry 2 has AR 0x00D07100 and limit 0x0000AFFF
[   44.181955] 
[   44.192238] # [OK]	LDT entry 2 has AR 0x00D07500 and limit 0x0000AFFF
[   44.192239] 
[   44.202461] # [OK]	LDT entry 2 has AR 0x00507700 and limit 0x0000000A
[   44.202462] 
[   44.212713] # [OK]	LDT entry 2 has AR 0x00507F00 and limit 0x0000000A
[   44.212714] 
[   44.223065] # [OK]	LDT entry 2 has AR 0x00507D00 and limit 0x0000000A
[   44.223066] 
[   44.233382] # [OK]	LDT entry 2 has AR 0x00507B00 and limit 0x0000000A
[   44.233383] 
[   44.243590] # [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
[   44.243591] 
[   44.253175] # [RUN]	Test fork
[   44.253176] 
[   44.259466] # [OK]	Child succeeded
[   44.259467] 
[   44.265948] # [RUN]	Test size
[   44.265949] 
[   44.272023] # [DONE]	Size test
[   44.272024] 
[   44.278394] # [OK]	modify_ldt failure 22
[   44.278395] 
[   44.286167] # [OK]	LDT entry 0 has AR 0x0000F300 and limit 0x00000000
[   44.286168] 
[   44.296335] # [OK]	LDT entry 0 has AR 0x00007300 and limit 0x00000000
[   44.296336] 
[   44.306540] # [OK]	LDT entry 0 has AR 0x0000F100 and limit 0x00000000
[   44.306541] 
[   44.316738] # [OK]	LDT entry 0 has AR 0x00007300 and limit 0x00000000
[   44.316739] 
[   44.326984] # [OK]	LDT entry 0 has AR 0x00007100 and limit 0x00000001
[   44.326985] 
[   44.337241] # [OK]	LDT entry 0 has AR 0x00007100 and limit 0x00000000
[   44.337242] 
[   44.346944] # [OK]	LDT entry 0 is invalid
[   44.346945] 
[   44.354688] # [OK]	LDT entry 0 has AR 0x0040F300 and limit 0x000FFFFF
[   44.354689] 
[   44.365073] # [OK]	GDT entry 13 has AR 0x0040F300 and limit 0x000FFFFF
[   44.365074] 
[   44.375449] # [OK]	LDT entry 0 has AR 0x00C0F300 and limit 0xFFFFFFFF
[   44.375450] 
[   44.385677] # [OK]	GDT entry 13 has AR 0x00C0F300 and limit 0xFFFFFFFF
[   44.385678] 
[   44.395980] # [OK]	LDT entry 0 has AR 0x00C0F100 and limit 0xFFFFFFFF
[   44.395981] 
[   44.406314] # [OK]	GDT entry 13 has AR 0x00C0F100 and limit 0xFFFFFFFF
[   44.406315] 
[   44.416621] # [OK]	LDT entry 0 has AR 0x00C0F700 and limit 0xFFFFFFFF
[   44.416622] 
[   44.426892] # [OK]	GDT entry 13 has AR 0x00C0F700 and limit 0xFFFFFFFF
[   44.426892] 
[   44.437278] # [OK]	LDT entry 0 has AR 0x00C0F500 and limit 0xFFFFFFFF
[   44.437279] 
[   44.447483] # [OK]	GDT entry 13 has AR 0x00C0F500 and limit 0xFFFFFFFF
[   44.447484] 
[   44.457298] # [OK]	LDT entry 0 is invalid
[   44.457299] 
[   44.464771] # [RUN]	Cross-CPU LDT invalidation
[   44.464772] 
[   44.472781] # [OK]	All 5 iterations succeeded
[   44.472782] 
[   44.480179] # [RUN]	Test exec
[   44.480180] 
[   44.486912] # [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000002A
[   44.486913] 
[   44.496433] # [OK]	Child succeeded
[   44.496434] 
[   44.503469] # [OK]	Invalidate DS with set_thread_area: new DS = 0x0
[   44.503470] 
[   44.513417] # [OK]	Invalidate ES with set_thread_area: new ES = 0x0
[   44.513418] 
[   44.523353] # [OK]	Invalidate FS with set_thread_area: new FS = 0x0
[   44.523354] 
[   44.533303] # [OK]	Invalidate GS with set_thread_area: new GS = 0x0
[   44.533304] 
[   44.542913] ok 21 selftests: x86: ldt_gdt_32
[   44.542914] 
[   44.550531] # selftests: x86: ptrace_syscall_32
[   44.550531] 
[   44.558360] # [RUN]	Check int80 return regs
[   44.558360] 
[   44.565902] # [OK]	getpid() preserves regs
[   44.565903] 
[   44.573446] # [OK]	kill(getpid(), SIGUSR1) preserves regs
[   44.573446] 
[   44.582179] # [RUN]	Check AT_SYSINFO return regs
[   44.582180] 
[   44.590031] # [OK]	getpid() preserves regs
[   44.590032] 
[   44.597724] # [OK]	kill(getpid(), SIGUSR1) preserves regs
[   44.597725] 
[   44.606540] # [RUN]	ptrace-induced syscall restart
[   44.606541] 
[   44.614312] # [RUN]	SYSEMU
[   44.614312] 
[   44.620290] # [OK]	Initial nr and args are correct
[   44.620291] 
[   44.628518] # [RUN]	Restart the syscall (ip = 0xf7f11569)
[   44.628519] 
[   44.637222] # [OK]	Restarted nr and args are correct
[   44.637223] 
[   44.646179] # [RUN]	Change nr and args and restart the syscall (ip = 0xf7f11569)
[   44.646180] 
[   44.657035] # [OK]	Replacement nr and args are correct
[   44.657036] 
[   44.665303] # [OK]	Child exited cleanly
[   44.665304] 
[   44.672488] # [RUN]	kernel syscall restart under ptrace
[   44.672489] 
[   44.680512] # [RUN]	SYSCALL
[   44.680513] 
[   44.686567] # [OK]	Initial nr and args are correct
[   44.686568] 
[   44.694253] # [RUN]	SYSCALL
[   44.694254] 
[   44.700452] # [OK]	Args after SIGUSR1 are correct (ax = -514)
[   44.700453] 
[   44.709113] # [OK]	Child got SIGUSR1
[   44.709114] 
[   44.715501] # [RUN]	Step again
[   44.715502] 
[   44.721732] # [OK]	pause(2) restarted correctly
[   44.721733] 
[   44.729409] ok 22 selftests: x86: ptrace_syscall_32
[   44.729410] 
[   44.737534] # selftests: x86: single_step_syscall_64
[   44.737535] 
[   44.745548] # [RUN]	Set TF and check nop
[   44.745549] 
[   44.752792] # [OK]	Survived with TF set and 9 traps
[   44.752793] 
[   44.761313] # [RUN]	Set TF and check syscall-less opportunistic sysret
[   44.761314] 
[   44.771066] # [OK]	Survived with TF set and 12 traps
[   44.771067] 
[   44.779089] # [RUN]	Set TF and check int80
[   44.779090] 
[   44.786376] # [OK]	Survived with TF set and 9 traps
[   44.786377] 
[   44.794447] # [RUN]	Set TF and check a fast syscall
[   44.794448] 
[   44.802548] # [OK]	Survived with TF set and 22 traps
[   44.802549] 
[   44.810750] # [RUN]	Fast syscall with TF cleared
[   44.810750] 
[   44.818477] # [OK]	Nothing unexpected happened
[   44.818478] 
[   44.825994] # [RUN]	Set TF and check SYSENTER
[   44.825995] 
[   44.833558] # 	Got SIGSEGV with RIP=fb0dc569, TF=256
[   44.833559] 
[   44.841736] # [RUN]	Fast syscall with TF cleared
[   44.841736] 
[   44.849470] # [OK]	Nothing unexpected happened
[   44.849471] 
[   44.857168] ok 23 selftests: x86: single_step_syscall_64
[   44.857169] 
[   44.865625] # selftests: x86: sysret_ss_attrs_64
[   44.865626] 
[   44.873484] # [RUN]	Syscalls followed by SS validation
[   44.873484] 
[   44.881448] # [OK]	We survived
[   44.881449] 
[   44.887773] ok 24 selftests: x86: sysret_ss_attrs_64
[   44.887774] 
[   44.895746] # selftests: x86: syscall_nt_64
[   44.895747] 
[   44.902997] # [RUN]	Set NT and issue a syscall
[   44.902997] 
[   44.910808] # [OK]	The syscall worked and flags are still set
[   44.910809] 
[   44.919722] # [RUN]	Set NT|TF and issue a syscall
[   44.919725] 
[   44.927842] # [OK]	The syscall worked and flags are still set
[   44.927844] 
[   44.936823] ok 25 selftests: x86: syscall_nt_64
[   44.936824] 
[   44.944503] # selftests: x86: test_mremap_vdso_64
[   44.944504] 
[   44.952335] # 	AT_SYSINFO_EHDR is 0x7ffd41fec000
[   44.952336] 
[   44.961007] # [NOTE]	Moving vDSO: [0x7ffd41fec000, 0x7ffd41fed000] -> [0x7f1297c20000, 0x7f1297c21000]
[   44.961008] 
[   44.973804] # [NOTE]	vDSO partial move failed, will try with bigger size
[   44.973805] 
[   44.984813] # [NOTE]	Moving vDSO: [0x7ffd41fec000, 0x7ffd41fee000] -> [0x7f1297bf7000, 0x7f1297bf9000]
[   44.984814] 
[   44.996802] # [OK]
[   44.996803] 
[   45.002143] ok 26 selftests: x86: test_mremap_vdso_64
[   45.002144] 
[   45.010565] # selftests: x86: check_initial_reg_state_64
[   45.010565] 
[   45.018957] # [OK]	All GPRs except SP are 0
[   45.018957] 
[   45.026201] # [OK]	FLAGS is 0x202
[   45.026203] 
[   45.033085] ok 27 selftests: x86: check_initial_reg_state_64
[   45.033086] 
[   45.041837] # selftests: x86: sigreturn_64
[   45.041838] 
[   45.049271] # [OK]	set_thread_area refused 16-bit data
[   45.049272] 
[   45.057807] # [OK]	set_thread_area refused 16-bit data
[   45.057808] 
[   45.066586] # [RUN]	Valid sigreturn: 64-bit CS (33), 32-bit SS (2b, GDT)
[   45.066587] 
[   45.076276] # [OK]	all registers okay
[   45.076277] 
[   45.083508] # [RUN]	Valid sigreturn: 32-bit CS (23), 32-bit SS (2b, GDT)
[   45.083509] 
[   45.093452] # [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
[   45.093453] 
[   45.101499] # [OK]	all registers okay
[   45.101500] 
[   45.108929] # [RUN]	Valid sigreturn: 16-bit CS (37), 32-bit SS (2b, GDT)
[   45.108930] 
[   45.118982] # [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
[   45.118983] 
[   45.127046] # [OK]	all registers okay
[   45.127047] 
[   45.134243] # [RUN]	Valid sigreturn: 64-bit CS (33), 16-bit SS (3f)
[   45.134244] 
[   45.143567] # [OK]	all registers okay
[   45.143568] 
[   45.150889] # [RUN]	Valid sigreturn: 32-bit CS (23), 16-bit SS (3f)
[   45.150890] 
[   45.160436] # [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
[   45.160437] 
[   45.168572] # [OK]	all registers okay
[   45.168573] 
[   45.176028] # [RUN]	Valid sigreturn: 16-bit CS (37), 16-bit SS (3f)
[   45.176029] 
[   45.185727] # [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
[   45.185727] 
[   45.193856] # [OK]	all registers okay
[   45.193857] 
[   45.201251] # [RUN]	Valid sigreturn: 32-bit CS (23), 32-bit SS (2b, GDT)
[   45.201252] 
[   45.211257] # 	Corrupting SS on return to 64-bit mode
[   45.211258] 
[   45.219691] # [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
[   45.219692] 
[   45.227801] # [OK]	all registers okay
[   45.227802] 
[   45.235135] # [RUN]	Valid sigreturn: 32-bit CS (23), 16-bit SS (3f)
[   45.235136] 
[   45.244774] # 	Corrupting SS on return to 64-bit mode
[   45.244775] 
[   45.253132] # [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
[   45.253133] 
[   45.261206] # [OK]	all registers okay
[   45.261207] 
[   45.268122] # [RUN]	64-bit CS (33), bogus SS (47)
[   45.268123] 
[   45.276160] # [OK]	Got #GP(0x0) (i.e. Segmentation fault)
[   45.276161] 
[   45.284766] # [RUN]	32-bit CS (23), bogus SS (47)
[   45.284767] 
[   45.292923] # [OK]	Got #GP(0x0) (i.e. Segmentation fault)
[   45.292923] 
[   45.301565] # [RUN]	16-bit CS (37), bogus SS (47)
[   45.301566] 
[   45.309851] # [OK]	Got #GP(0x0) (i.e. Segmentation fault)
[   45.309852] 
[   45.318451] # [RUN]	64-bit CS (33), bogus SS (33)
[   45.318452] 
[   45.326769] # [OK]	Got #GP(0x30) (i.e. GDT index 6, Segmentation fault)
[   45.326770] 
[   45.336619] # [RUN]	32-bit CS (23), bogus SS (33)
[   45.336620] 
[   45.344966] # [OK]	Got #GP(0x30) (i.e. GDT index 6, Segmentation fault)
[   45.344967] 
[   45.354961] # [RUN]	16-bit CS (37), bogus SS (33)
[   45.354962] 
[   45.363301] # [OK]	Got #GP(0x30) (i.e. GDT index 6, Segmentation fault)
[   45.363302] 
[   45.373181] # [RUN]	32-bit CS (4f), bogus SS (2b)
[   45.373182] 
[   45.381367] # [OK]	Got #NP(0x4c) (i.e. LDT index 9, Bus error)
[   45.381368] 
[   45.390480] # [RUN]	32-bit CS (23), bogus SS (57)
[   45.390481] 
[   45.398610] # [OK]	Got #GP(0x0) (i.e. Segmentation fault)
[   45.398611] 
[   45.407470] # [RUN]	Clear UC_STRICT_RESTORE_SS and corrupt SS
[   45.407471] 
[   45.416224] # [OK]	It worked
[   45.416225] 
[   45.422472] ok 28 selftests: x86: sigreturn_64
[   45.422473] 
[   45.430071] # selftests: x86: iopl_64
[   45.430072] 
[   45.436614] # [OK]	CLI faulted
[   45.436615] 
[   45.442638] # [OK]	STI faulted
[   45.442639] 
[   45.448698] # [OK]	outb to 0x80 worked
[   45.448699] 
[   45.455494] # [OK]	outb to 0x80 worked
[   45.455495] 
[   45.462293] # [OK]	outb to 0xed failed
[   45.462294] 
[   45.468983] # 	child: set IOPL to 3
[   45.468985] 
[   45.475522] # [RUN]	child: write to 0x80
[   45.475523] 
[   45.482275] # [OK]	CLI faulted
[   45.482275] 
[   45.488249] # [OK]	STI faulted
[   45.488250] 
[   45.494381] # [OK]	outb to 0x80 worked
[   45.494382] 
[   45.501061] # [OK]	outb to 0x80 worked
[   45.501062] 
[   45.507733] # [OK]	outb to 0xed failed
[   45.507734] 
[   45.514413] # [OK]	Child succeeded
[   45.514414] 
[   45.521029] # [RUN]	parent: write to 0x80 (should fail)
[   45.521030] 
[   45.529191] # [OK]	outb to 0x80 failed
[   45.529192] 
[   45.535701] # [OK]	CLI faulted
[   45.535702] 
[   45.541462] # [OK]	STI faulted
[   45.541462] 
[   45.547180] # 	iopl(3)
[   45.547181] 
[   45.552300] # 	Drop privileges
[   45.552301] 
[   45.558785] # [RUN]	iopl(3) unprivileged but with IOPL==3
[   45.558786] 
[   45.567189] # [RUN]	iopl(0) unprivileged
[   45.567190] 
[   45.574073] # [RUN]	iopl(3) unprivileged
[   45.574074] 
[   45.580771] # [OK]	Failed as expected
[   45.580772] 
[   45.587241] ok 29 selftests: x86: iopl_64
[   45.587242] 
[   45.594013] # selftests: x86: ioperm_64
[   45.594014] 
[   45.600550] # [OK]	outb to 0x80 failed
[   45.600550] 
[   45.607029] # [OK]	outb to 0xed failed
[   45.607030] 
[   45.613371] # [RUN]	enable 0x80
[   45.613372] 
[   45.619247] # [OK]	outb to 0x80 worked
[   45.619247] 
[   45.625723] # [OK]	outb to 0xed failed
[   45.625723] 
[   45.632106] # [RUN]	disable 0x80
[   45.632107] 
[   45.638119] # [OK]	outb to 0x80 failed
[   45.638119] 
[   45.644514] # [OK]	outb to 0xed failed
[   45.644515] 
[   45.651381] # [RUN]	child: check that we inherited permissions
[   45.651382] 
[   45.659925] # [OK]	outb to 0x80 worked
[   45.659925] 
[   45.666538] # [OK]	outb to 0xed failed
[   45.666539] 
[   45.673317] # [RUN]	child: Extend permissions to 0x81
[   45.673318] 
[   45.681383] # [RUN]	child: Drop permissions to 0x80
[   45.681384] 
[   45.689021] # [OK]	outb to 0x80 failed
[   45.689022] 
[   45.695550] # [OK]	outb to 0x80 failed
[   45.695551] 
[   45.702121] # [OK]	outb to 0xed failed
[   45.702122] 
[   45.708518] # [RUN]	enable 0x80
[   45.708519] 
[   45.714452] # [OK]	outb to 0x80 worked
[   45.714453] 
[   45.720935] # [OK]	outb to 0xed failed
[   45.720936] 
[   45.727428] # [RUN]	disable 0x80
[   45.727429] 
[   45.733407] # [OK]	outb to 0x80 failed
[   45.733407] 
[   45.739887] # [OK]	outb to 0xed failed
[   45.739888] 
[   45.746344] # [OK]	Child succeeded
[   45.746345] 
[   45.752833] # 	Verify that unsharing the bitmap worked
[   45.752834] 
[   45.760711] # [OK]	outb to 0x80 worked
[   45.760712] 
[   45.767127] # 	Drop privileges
[   45.767128] 
[   45.772953] # [RUN]	disable 0x80
[   45.772954] 
[   45.778767] # [OK]	it worked
[   45.778768] 
[   45.784388] # [RUN]	enable 0x80 again
[   45.784388] 
[   45.790546] # [OK]	it failed
[   45.790547] 
[   45.796317] ok 30 selftests: x86: ioperm_64
[   45.796318] 
[   45.803419] # selftests: x86: protection_keys_64
[   45.803420] 
[   45.810445] # has pku: 0
[   45.810446] 
[   45.816024] # running PKEY tests for unsupported CPU/OS
[   45.816024] 
[   45.824259] ok 31 selftests: x86: protection_keys_64
[   45.824259] 
[   45.832024] # selftests: x86: test_vdso_64
[   45.832025] 
[   45.839491] # [RUN]	Testing clock_gettime for clock CLOCK_REALTIME (0)...
[   45.839492] 
[   45.849782] # 	1592703243.874277468 1592703243.874279945 1592703243.874280100
[   45.849783] 
[   45.860335] # [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC (1)...
[   45.860336] 
[   45.870313] # 	38.057434990 38.057435414 38.057435549
[   45.870314] 
[   45.879149] # [RUN]	Testing clock_gettime for clock CLOCK_PROCESS_CPUTIME_ID (2)...
[   45.879150] 
[   45.889880] # 	0.000511917 0.000512569 0.000513104
[   45.889881] 
[   45.898672] # [RUN]	Testing clock_gettime for clock CLOCK_THREAD_CPUTIME_ID (3)...
[   45.898673] 
[   45.909277] # 	0.000514396 0.000514928 0.000515432
[   45.909278] 
[   45.917574] # [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC_RAW (4)...
[   45.917575] 
[   45.927887] # 	36.859901097 36.859901462 36.859901594
[   45.927888] 
[   45.936517] # [RUN]	Testing clock_gettime for clock CLOCK_REALTIME_COARSE (5)...
[   45.936518] 
[   45.947464] # 	1592703243.873355977 1592703243.873355977 1592703243.873355977
[   45.947464] 
[   45.958345] # [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC_COARSE (6)...
[   45.958346] 
[   45.969054] # 	38.056508962 38.056508962 38.056508962
[   45.969055] 
[   45.977690] # [RUN]	Testing clock_gettime for clock CLOCK_BOOTTIME (7)...
[   45.977691] 
[   45.987788] # 	38.057446213 38.057446568 38.057446697
[   45.987789] 
[   45.996562] # [RUN]	Testing clock_gettime for clock CLOCK_REALTIME_ALARM (8)...
[   45.996563] 
[   46.007557] # 	1592703243.874294924 1592703243.874295411 1592703243.874295887
[   46.007558] 
[   46.018534] # [RUN]	Testing clock_gettime for clock CLOCK_BOOTTIME_ALARM (9)...
[   46.018535] 
[   46.029200] # 	38.057449863 38.057450360 38.057450848
[   46.029201] 
[   46.037984] # [RUN]	Testing clock_gettime for clock CLOCK_SGI_CYCLE (10)...
[   46.037985] 
[   46.047966] # [OK]	No such clock.
[   46.047967] 
[   46.054984] # [RUN]	Testing clock_gettime for clock CLOCK_TAI (11)...
[   46.054985] 
[   46.065235] # 	1592703243.874300587 1592703243.874300943 1592703243.874301081
[   46.065236] 
[   46.076148] # [RUN]	Testing clock_gettime for clock invalid (-1)...
[   46.076149] 
[   46.085460] # [OK]	No such clock.
[   46.085461] 
[   46.092623] # [RUN]	Testing clock_gettime for clock invalid (-2147483648)...
[   46.092624] 
[   46.102862] # [OK]	No such clock.
[   46.102863] 
[   46.110125] # [RUN]	Testing clock_gettime for clock invalid (2147483647)...
[   46.110126] 
[   46.120197] # [OK]	No such clock.
[   46.120197] 
[   46.126827] # [RUN]	Testing gettimeofday...
[   46.126828] 
[   46.134756] # 	1592703243.874305 1592703243.874305 1592703243.874305
[   46.134756] 
[   46.144812] # [OK]	timezones match: minuteswest=-480, dsttime=0
[   46.144813] 
[   46.153893] # [RUN]	Testing getcpu...
[   46.153894] 
[   46.161872] # [OK]	CPU 0: syscall: cpu 0, node 0 vdso: cpu 0, node 0 vsyscall: cpu 0, node 0
[   46.161873] 
[   46.174475] # [OK]	CPU 1: syscall: cpu 1, node 0 vdso: cpu 1, node 0 vsyscall: cpu 1, node 0
[   46.174475] 
[   46.187063] # [OK]	CPU 2: syscall: cpu 2, node 0 vdso: cpu 2, node 0 vsyscall: cpu 2, node 0
[   46.187064] 
[   46.199843] # [OK]	CPU 3: syscall: cpu 3, node 0 vdso: cpu 3, node 0 vsyscall: cpu 3, node 0
[   46.199843] 
[   46.212498] # [OK]	CPU 4: syscall: cpu 4, node 0 vdso: cpu 4, node 0 vsyscall: cpu 4, node 0
[   46.212499] 
[   46.225187] # [OK]	CPU 5: syscall: cpu 5, node 0 vdso: cpu 5, node 0 vsyscall: cpu 5, node 0
[   46.225187] 
[   46.237883] # [OK]	CPU 6: syscall: cpu 6, node 0 vdso: cpu 6, node 0 vsyscall: cpu 6, node 0
[   46.237884] 
[   46.250613] # [OK]	CPU 7: syscall: cpu 7, node 0 vdso: cpu 7, node 0 vsyscall: cpu 7, node 0
[   46.250614] 
[   46.262507] ok 32 selftests: x86: test_vdso_64
[   46.262508] 
[   46.270428] # selftests: x86: test_vsyscall_64
[   46.270429] 
[   46.279535] # 	vsyscall map: ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]
[   46.279536] 
[   46.293070] # 	vsyscall permissions are r-x
[   46.293071] 
[   46.300788] # [RUN]	test gettimeofday()
[   46.300789] 
[   46.308198] # 	vDSO time offsets: 0.000002 0.000001
[   46.308199] 
[   46.316649] # [OK]	vDSO gettimeofday()'s timeval was okay
[   46.316663] 
[   46.325567] # 	vsyscall time offsets: 0.000003 0.000000
[   46.325568] 
[   46.334419] # [OK]	vsyscall gettimeofday()'s timeval was okay
[   46.334420] 
[   46.343388] # [RUN]	test time()
[   46.343389] 
[   46.349802] # [OK]	vDSO time() is okay
[   46.349803] 
[   46.357060] # [OK]	vsyscall time() is okay
[   46.357061] 
[   46.364420] # [RUN]	getcpu() on CPU 0
[   46.364421] 
[   46.371417] # [OK]	vDSO reported correct CPU
[   46.371418] 
[   46.378968] # [OK]	vDSO reported correct node
[   46.378969] 
[   46.386684] # [OK]	vsyscall reported correct CPU
[   46.386685] 
[   46.394686] # [OK]	vsyscall reported correct node
[   46.394687] 
[   46.402597] # [RUN]	getcpu() on CPU 1
[   46.402614] 
[   46.409538] # [OK]	vDSO reported correct CPU
[   46.409539] 
[   46.417108] # [OK]	vDSO reported correct node
[   46.417108] 
[   46.424908] # [OK]	vsyscall reported correct CPU
[   46.424909] 
[   46.433004] # [OK]	vsyscall reported correct node
[   46.433005] 
[   46.441236] # [RUN]	Checking read access to the vsyscall page
[   46.441237] 
[   46.450142] # [OK]	We have read access
[   46.450143] 
[   46.457342] # [RUN]	process_vm_readv() from vsyscall page
[   46.457343] 
[   46.466049] # [OK]	It worked and read correct data
[   46.466050] 
[   46.474214] # [RUN]	checking that vsyscalls are emulated
[   46.474214] 
[   46.483306] # [OK]	vsyscalls are emulated (1 instructions in vsyscall page)
[   46.483306] 
[   46.493591] ok 33 selftests: x86: test_vsyscall_64
[   46.493592] 
[   46.501589] # selftests: x86: mov_ss_trap_64
[   46.501590] 
[   46.508921] # 	SS = 0x2b, &SS = 0x0x604188
[   46.508922] 
[   46.516078] # 	PR_SET_PTRACER_ANY succeeded
[   46.516079] 
[   46.523126] # 	Set up a watchpoint
[   46.523127] 
[   46.529804] # 	DR0 = 604188, DR1 = 400a13, DR7 = 7000a
[   46.529805] 
[   46.537994] # 	SS = 0x2b, &SS = 0x0x604188
[   46.537995] 
[   46.545131] # 	PR_SET_PTRACER_ANY succeeded
[   46.545132] 
[   46.552207] # 	Set up a watchpoint
[   46.552208] 
[   46.559116] # [RUN]	Read from watched memory (should get SIGTRAP)
[   46.559116] 
[   46.568373] # 	Got SIGTRAP with RIP=4008c8, EFLAGS.RF=0
[   46.568374] 
[   46.576356] # [RUN]	MOV SS; INT3
[   46.576357] 
[   46.582869] # 	Got SIGTRAP with RIP=4008db, EFLAGS.RF=0
[   46.582870] 
[   46.590913] # [RUN]	MOV SS; INT 3
[   46.590914] 
[   46.597489] # 	Got SIGTRAP with RIP=4008ef, EFLAGS.RF=0
[   46.597489] 
[   46.605694] # [RUN]	MOV SS; CS CS INT3
[   46.605695] 
[   46.612771] # 	Got SIGTRAP with RIP=400904, EFLAGS.RF=0
[   46.612771] 
[   46.620964] # [RUN]	MOV SS; CSx14 INT3
[   46.620965] 
[   46.628042] # 	Got SIGTRAP with RIP=400925, EFLAGS.RF=0
[   46.628043] 
[   46.636143] # [RUN]	MOV SS; INT 4
[   46.636144] 
[   46.642486] # 	Got SIGSEGV with RIP=40094f
[   46.642487] 
[   46.649508] # [RUN]	MOV SS; ICEBP
[   46.649509] 
[   46.656028] # 	Got SIGTRAP with RIP=400ca3, EFLAGS.RF=0
[   46.656028] 
[   46.664051] # [RUN]	MOV SS; CLI
[   46.664052] 
[   46.670251] # 	Got SIGSEGV with RIP=400c74
[   46.670252] 
[   46.677220] # [RUN]	MOV SS; #PF
[   46.677221] 
[   46.683400] # 	Got SIGSEGV with RIP=400c3f
[   46.683401] 
[   46.690384] # [RUN]	MOV SS; INT 1
[   46.690385] 
[   46.696763] # 	Got SIGSEGV with RIP=400c10
[   46.696764] 
[   46.703706] # [RUN]	MOV SS; SYSCALL
[   46.703707] 
[   46.710098] # [RUN]	MOV SS; breakpointed NOP
[   46.710099] 
[   46.717620] # 	Got SIGTRAP with RIP=400a14, EFLAGS.RF=0
[   46.717621] 
[   46.725585] # [RUN]	MOV SS; SYSENTER
[   46.725586] 
[   46.732068] # 	Got SIGSEGV with RIP=e29bd569
[   46.732069] 
[   46.739106] # [RUN]	MOV SS; INT $0x80
[   46.739107] 
[   46.745436] # [OK]	I aten't dead
[   46.745437] 
[   46.751703] ok 34 selftests: x86: mov_ss_trap_64
[   46.751704] 
[   46.759326] # selftests: x86: syscall_arg_fault_64
[   46.759327] 
[   46.767100] # [RUN]	SYSENTER with invalid state
[   46.767101] 
[   46.774325] # [OK]	Seems okay
[   46.774325] 
[   46.780252] # [RUN]	SYSCALL with invalid state
[   46.780252] 
[   46.787743] # [OK]	SYSCALL returned normally
[   46.787744] 
[   46.795139] # [RUN]	SYSENTER with TF and invalid state
[   46.795140] 
[   46.803040] # [OK]	Seems okay
[   46.803041] 
[   46.809094] # [RUN]	SYSCALL with TF and invalid state
[   46.809094] 
[   46.817041] # [OK]	SYSCALL returned normally
[   46.817042] 
[   46.824399] ok 35 selftests: x86: syscall_arg_fault_64
[   46.824399] 
[   46.832389] # selftests: x86: fsgsbase_64
[   46.832389] 
[   46.839459] # 	FSGSBASE instructions are disabled
[   46.839460] 
[   46.847007] # [RUN]	ARCH_SET_GS to 0x0
[   46.847008] 
[   46.854031] # [OK]	GSBASE was set as expected (selector 0x0)
[   46.854031] 
[   46.863037] # [OK]	ARCH_GET_GS worked as expected (selector 0x0)
[   46.863037] 
[   46.871882] # [RUN]	ARCH_SET_GS to 0x1
[   46.871883] 
[   46.878984] # [OK]	GSBASE was set as expected (selector 0x0)
[   46.878985] 
[   46.888028] # [OK]	ARCH_GET_GS worked as expected (selector 0x0)
[   46.888029] 
[   46.897010] # [RUN]	ARCH_SET_GS to 0x200000000
[   46.897011] 
[   46.904847] # [OK]	GSBASE was set as expected (selector 0x0)
[   46.904848] 
[   46.913930] # [OK]	ARCH_GET_GS worked as expected (selector 0x0)
[   46.913931] 
[   46.922837] # [RUN]	ARCH_SET_GS to 0x0
[   46.922838] 
[   46.929994] # [OK]	GSBASE was set as expected (selector 0x0)
[   46.929995] 
[   46.939156] # [OK]	ARCH_GET_GS worked as expected (selector 0x0)
[   46.939157] 
[   46.948165] # [RUN]	ARCH_SET_GS to 0x200000000
[   46.948165] 
[   46.956116] # [OK]	GSBASE was set as expected (selector 0x0)
[   46.956117] 
[   46.965164] # [OK]	ARCH_GET_GS worked as expected (selector 0x0)
[   46.965165] 
[   46.974091] # [RUN]	ARCH_SET_GS to 0x1
[   46.974092] 
[   46.981151] # [OK]	GSBASE was set as expected (selector 0x0)
[   46.981151] 
[   46.990258] # [OK]	ARCH_GET_GS worked as expected (selector 0x0)
[   46.990259] 
[   46.999622] # [RUN]	ARCH_SET_GS to 0x0 then mov 0 to %gs
[   46.999623] 
[   47.007800] # [OK]	GSBASE is 0x0
[   47.007801] 
[   47.014340] # [RUN]	ARCH_SET_GS to 0x1 then mov 0 to %gs
[   47.014341] 
[   47.022527] # [OK]	GSBASE is 0x0
[   47.022528] 
[   47.029149] # [RUN]	ARCH_SET_GS to 0x200000000 then mov 0 to %gs
[   47.029150] 
[   47.037997] # [OK]	GSBASE is 0x0
[   47.037997] 
[   47.044793] # [RUN]	ARCH_SET_GS to 0x0 then mov 0 to %gs and schedule 
[   47.044794] 
[   47.054164] # [OK]	GSBASE is 0x0
[   47.054165] 
[   47.060971] # [RUN]	ARCH_SET_GS to 0x1 then mov 0 to %gs and schedule 
[   47.060972] 
[   47.070362] # [OK]	GSBASE is 0x0
[   47.070363] 
[   47.077394] # [RUN]	ARCH_SET_GS to 0x200000000 then mov 0 to %gs and schedule 
[   47.077395] 
[   47.087469] # [OK]	GSBASE is 0x0
[   47.087469] 
[   47.094122] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
[   47.094123] 
[   47.103076] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.103077] 
[   47.111859] # [OK]	GS/BASE remained 0x0/0x0
[   47.111859] 
[   47.119421] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
[   47.119422] 
[   47.128187] # 	Before schedule, set selector to 0x1
[   47.128188] 
[   47.136454] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.136455] 
[   47.145154] # [OK]	GS/BASE remained 0x1/0x0
[   47.145154] 
[   47.152905] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
[   47.152905] 
[   47.161809] # 	Before schedule, set selector to 0x2
[   47.161810] 
[   47.170118] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.170119] 
[   47.178859] # [OK]	GS/BASE remained 0x2/0x0
[   47.178860] 
[   47.186371] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
[   47.186372] 
[   47.195120] # 	Before schedule, set selector to 0x3
[   47.195121] 
[   47.203375] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.203376] 
[   47.212033] # [OK]	GS/BASE remained 0x3/0x0
[   47.212034] 
[   47.219570] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
[   47.219571] 
[   47.228251] # 	Before schedule, set selector to 0x2b
[   47.228252] 
[   47.236519] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.236520] 
[   47.245157] # [OK]	GS/BASE remained 0x2b/0x0
[   47.245158] 
[   47.253034] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
[   47.253035] 
[   47.263423] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   47.263423] 
[   47.273208] # [OK]	GS/BASE remained 0x0/0x0
[   47.273209] 
[   47.280981] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
[   47.280981] 
[   47.290989] # 	Before schedule, set selector to 0x1
[   47.290990] 
[   47.299443] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   47.299444] 
[   47.309221] # [OK]	GS/BASE remained 0x1/0x0
[   47.309222] 
[   47.317071] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
[   47.317072] 
[   47.327120] # 	Before schedule, set selector to 0x2
[   47.327121] 
[   47.335765] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   47.335766] 
[   47.345678] # [OK]	GS/BASE remained 0x2/0x0
[   47.345679] 
[   47.353518] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
[   47.353518] 
[   47.363635] # 	Before schedule, set selector to 0x3
[   47.363636] 
[   47.372220] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   47.372221] 
[   47.382105] # [OK]	GS/BASE remained 0x3/0x0
[   47.382106] 
[   47.389983] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
[   47.389983] 
[   47.400103] # 	Before schedule, set selector to 0x2b
[   47.400104] 
[   47.408803] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   47.408804] 
[   47.418787] # [OK]	GS/BASE remained 0x2b/0x0
[   47.418788] 
[   47.426444] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
[   47.426444] 
[   47.435358] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   47.435359] 
[   47.444099] # [OK]	GS/BASE remained 0x0/0x0
[   47.444100] 
[   47.451807] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
[   47.451808] 
[   47.460764] # 	Before schedule, set selector to 0x1
[   47.460765] 
[   47.469120] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   47.469121] 
[   47.477896] # [OK]	GS/BASE remained 0x1/0x0
[   47.477897] 
[   47.485477] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
[   47.485478] 
[   47.494274] # 	Before schedule, set selector to 0x2
[   47.494275] 
[   47.502583] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   47.502584] 
[   47.511338] # [OK]	GS/BASE remained 0x2/0x0
[   47.511339] 
[   47.519136] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
[   47.519137] 
[   47.527915] # 	Before schedule, set selector to 0x3
[   47.527916] 
[   47.536227] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   47.536228] 
[   47.544942] # [OK]	GS/BASE remained 0x3/0x0
[   47.544943] 
[   47.552482] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
[   47.552483] 
[   47.561225] # 	Before schedule, set selector to 0x2b
[   47.561226] 
[   47.569735] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   47.569736] 
[   47.578465] # [OK]	GS/BASE remained 0x2b/0x0
[   47.578466] 
[   47.586275] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
[   47.586276] 
[   47.596026] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   47.596027] 
[   47.605405] # [OK]	GS/BASE remained 0x0/0x0
[   47.605406] 
[   47.613116] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
[   47.613117] 
[   47.622529] # 	Before schedule, set selector to 0x1
[   47.622530] 
[   47.631014] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   47.631015] 
[   47.640364] # [OK]	GS/BASE remained 0x1/0x0
[   47.640365] 
[   47.648055] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
[   47.648057] 
[   47.657438] # 	Before schedule, set selector to 0x2
[   47.657439] 
[   47.665881] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   47.665882] 
[   47.675267] # [OK]	GS/BASE remained 0x2/0x0
[   47.675268] 
[   47.683110] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
[   47.683111] 
[   47.692693] # 	Before schedule, set selector to 0x3
[   47.692694] 
[   47.701196] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   47.701197] 
[   47.710522] # [OK]	GS/BASE remained 0x3/0x0
[   47.710523] 
[   47.718224] # [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
[   47.718224] 
[   47.727723] # 	Before schedule, set selector to 0x2b
[   47.727724] 
[   47.736240] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   47.736241] 
[   47.745802] # [OK]	GS/BASE remained 0x2b/0x0
[   47.745803] 
[   47.753648] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
[   47.753649] 
[   47.763777] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.763777] 
[   47.772536] # [OK]	GS/BASE remained 0x0/0x0
[   47.772537] 
[   47.780372] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
[   47.780373] 
[   47.790233] # 	Before schedule, set selector to 0x1
[   47.790234] 
[   47.798509] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.798510] 
[   47.807164] # [OK]	GS/BASE remained 0x1/0x0
[   47.807165] 
[   47.814983] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
[   47.814984] 
[   47.824960] # 	Before schedule, set selector to 0x2
[   47.824960] 
[   47.833241] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.833242] 
[   47.842018] # [OK]	GS/BASE remained 0x2/0x0
[   47.842019] 
[   47.849890] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
[   47.849891] 
[   47.859916] # 	Before schedule, set selector to 0x3
[   47.859917] 
[   47.868258] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.868259] 
[   47.877016] # [OK]	GS/BASE remained 0x3/0x0
[   47.877016] 
[   47.884824] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
[   47.884825] 
[   47.894747] # 	Before schedule, set selector to 0x2b
[   47.894748] 
[   47.903207] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   47.903208] 
[   47.911926] # [OK]	GS/BASE remained 0x2b/0x0
[   47.911927] 
[   47.920205] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
[   47.920206] 
[   47.931879] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   47.931880] 
[   47.941823] # [OK]	GS/BASE remained 0x0/0x0
[   47.941824] 
[   47.949980] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
[   47.949980] 
[   47.961261] # 	Before schedule, set selector to 0x1
[   47.961262] 
[   47.969954] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   47.969954] 
[   47.979936] # [OK]	GS/BASE remained 0x1/0x0
[   47.979937] 
[   47.988089] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
[   47.988090] 
[   47.999266] # 	Before schedule, set selector to 0x2
[   47.999267] 
[   48.007785] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   48.007786] 
[   48.017798] # [OK]	GS/BASE remained 0x2/0x0
[   48.017799] 
[   48.026033] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
[   48.026034] 
[   48.037281] # 	Before schedule, set selector to 0x3
[   48.037282] 
[   48.045903] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   48.045904] 
[   48.055872] # [OK]	GS/BASE remained 0x3/0x0
[   48.055873] 
[   48.064192] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
[   48.064193] 
[   48.075488] # 	Before schedule, set selector to 0x2b
[   48.075489] 
[   48.084182] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   48.084183] 
[   48.094122] # [OK]	GS/BASE remained 0x2b/0x0
[   48.094123] 
[   48.102103] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
[   48.102104] 
[   48.112347] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.112349] 
[   48.121121] # [OK]	GS/BASE remained 0x0/0x0
[   48.121122] 
[   48.129048] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
[   48.129049] 
[   48.139097] # 	Before schedule, set selector to 0x1
[   48.139098] 
[   48.147475] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.147476] 
[   48.156266] # [OK]	GS/BASE remained 0x1/0x0
[   48.156267] 
[   48.164221] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
[   48.164221] 
[   48.174289] # 	Before schedule, set selector to 0x2
[   48.174290] 
[   48.182940] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.182941] 
[   48.191852] # [OK]	GS/BASE remained 0x2/0x0
[   48.191852] 
[   48.199827] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
[   48.199828] 
[   48.209846] # 	Before schedule, set selector to 0x3
[   48.209847] 
[   48.218208] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.218209] 
[   48.226995] # [OK]	GS/BASE remained 0x3/0x0
[   48.226996] 
[   48.234896] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
[   48.234897] 
[   48.244981] # 	Before schedule, set selector to 0x2b
[   48.244982] 
[   48.253414] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.253414] 
[   48.262182] # [OK]	GS/BASE remained 0x2b/0x0
[   48.262182] 
[   48.270358] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
[   48.270359] 
[   48.281311] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   48.281312] 
[   48.290810] # [OK]	GS/BASE remained 0x0/0x0
[   48.290811] 
[   48.298810] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
[   48.298810] 
[   48.309438] # 	Before schedule, set selector to 0x1
[   48.309438] 
[   48.317994] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   48.317995] 
[   48.327434] # [OK]	GS/BASE remained 0x1/0x0
[   48.327435] 
[   48.335452] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
[   48.335452] 
[   48.346124] # 	Before schedule, set selector to 0x2
[   48.346124] 
[   48.354640] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   48.354641] 
[   48.364105] # [OK]	GS/BASE remained 0x2/0x0
[   48.364106] 
[   48.372187] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
[   48.372187] 
[   48.382896] # 	Before schedule, set selector to 0x3
[   48.382897] 
[   48.391415] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   48.391416] 
[   48.400992] # [OK]	GS/BASE remained 0x3/0x0
[   48.400993] 
[   48.409050] # [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
[   48.409051] 
[   48.419707] # 	Before schedule, set selector to 0x2b
[   48.419708] 
[   48.428268] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   48.428269] 
[   48.437823] # [OK]	GS/BASE remained 0x2b/0x0
[   48.437824] 
[   48.445574] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
[   48.445576] 
[   48.454538] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   48.454538] 
[   48.463240] # [OK]	GS/BASE remained 0x0/0x1
[   48.463241] 
[   48.470849] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
[   48.470850] 
[   48.479707] # 	Before schedule, set selector to 0x1
[   48.479708] 
[   48.488179] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   48.488181] 
[   48.496990] # [OK]	GS/BASE remained 0x1/0x0
[   48.496991] 
[   48.504569] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
[   48.504570] 
[   48.513321] # 	Before schedule, set selector to 0x2
[   48.513322] 
[   48.521686] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   48.521687] 
[   48.530457] # [OK]	GS/BASE remained 0x2/0x0
[   48.530458] 
[   48.538174] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
[   48.538175] 
[   48.547003] # 	Before schedule, set selector to 0x3
[   48.547004] 
[   48.555339] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   48.555340] 
[   48.564101] # [OK]	GS/BASE remained 0x3/0x0
[   48.564102] 
[   48.571879] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
[   48.571879] 
[   48.580819] # 	Before schedule, set selector to 0x2b
[   48.580820] 
[   48.589292] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   48.589293] 
[   48.598103] # [OK]	GS/BASE remained 0x2b/0x0
[   48.598104] 
[   48.606177] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
[   48.606178] 
[   48.616700] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   48.616701] 
[   48.626632] # [OK]	GS/BASE remained 0x0/0x1
[   48.626633] 
[   48.634554] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
[   48.634555] 
[   48.644719] # 	Before schedule, set selector to 0x1
[   48.644720] 
[   48.653266] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   48.653267] 
[   48.663149] # [OK]	GS/BASE remained 0x1/0x0
[   48.663150] 
[   48.671092] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
[   48.671093] 
[   48.681188] # 	Before schedule, set selector to 0x2
[   48.681189] 
[   48.689777] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   48.689778] 
[   48.699811] # [OK]	GS/BASE remained 0x2/0x0
[   48.699812] 
[   48.707762] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
[   48.707763] 
[   48.717950] # 	Before schedule, set selector to 0x3
[   48.717950] 
[   48.726532] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   48.726533] 
[   48.736488] # [OK]	GS/BASE remained 0x3/0x0
[   48.736489] 
[   48.744354] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
[   48.744355] 
[   48.754467] # 	Before schedule, set selector to 0x2b
[   48.754468] 
[   48.763192] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   48.763193] 
[   48.773122] # [OK]	GS/BASE remained 0x2b/0x0
[   48.773123] 
[   48.780946] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
[   48.780947] 
[   48.789984] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.789985] 
[   48.798876] # [OK]	GS/BASE remained 0x0/0x1
[   48.798877] 
[   48.806516] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
[   48.806516] 
[   48.815273] # 	Before schedule, set selector to 0x1
[   48.815274] 
[   48.823743] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.823744] 
[   48.832497] # [OK]	GS/BASE remained 0x1/0x0
[   48.832498] 
[   48.840207] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
[   48.840208] 
[   48.849087] # 	Before schedule, set selector to 0x2
[   48.849088] 
[   48.857440] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.857441] 
[   48.866219] # [OK]	GS/BASE remained 0x2/0x0
[   48.866220] 
[   48.873988] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
[   48.873989] 
[   48.883005] # 	Before schedule, set selector to 0x3
[   48.883006] 
[   48.891339] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.891340] 
[   48.900115] # [OK]	GS/BASE remained 0x3/0x0
[   48.900116] 
[   48.908017] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
[   48.908018] 
[   48.916933] # 	Before schedule, set selector to 0x2b
[   48.916934] 
[   48.925324] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   48.925325] 
[   48.934122] # [OK]	GS/BASE remained 0x2b/0x0
[   48.934123] 
[   48.941996] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
[   48.941997] 
[   48.951836] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   48.951837] 
[   48.961264] # [OK]	GS/BASE remained 0x0/0x1
[   48.961264] 
[   48.969070] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
[   48.969071] 
[   48.978527] # 	Before schedule, set selector to 0x1
[   48.978528] 
[   48.987061] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   48.987062] 
[   48.996626] # [OK]	GS/BASE remained 0x1/0x0
[   48.996628] 
[   49.004359] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
[   49.004360] 
[   49.013910] # 	Before schedule, set selector to 0x2
[   49.013911] 
[   49.022347] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   49.022348] 
[   49.031795] # [OK]	GS/BASE remained 0x2/0x0
[   49.031796] 
[   49.039536] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
[   49.039537] 
[   49.049005] # 	Before schedule, set selector to 0x3
[   49.049006] 
[   49.057433] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   49.057434] 
[   49.066879] # [OK]	GS/BASE remained 0x3/0x0
[   49.066880] 
[   49.074533] # [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
[   49.074534] 
[   49.084004] # 	Before schedule, set selector to 0x2b
[   49.084005] 
[   49.092489] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   49.092490] 
[   49.101932] # [OK]	GS/BASE remained 0x2b/0x0
[   49.101933] 
[   49.109881] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
[   49.109882] 
[   49.119523] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   49.119523] 
[   49.128301] # [OK]	GS/BASE remained 0x0/0x200000000
[   49.128302] 
[   49.136842] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
[   49.136843] 
[   49.146286] # 	Before schedule, set selector to 0x1
[   49.146286] 
[   49.154710] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   49.154711] 
[   49.163430] # [OK]	GS/BASE remained 0x1/0x0
[   49.163431] 
[   49.171219] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
[   49.171220] 
[   49.180860] # 	Before schedule, set selector to 0x2
[   49.180861] 
[   49.189205] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   49.189206] 
[   49.197962] # [OK]	GS/BASE remained 0x2/0x0
[   49.197963] 
[   49.205775] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
[   49.205776] 
[   49.215257] # 	Before schedule, set selector to 0x3
[   49.215258] 
[   49.223774] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   49.223775] 
[   49.232534] # [OK]	GS/BASE remained 0x3/0x0
[   49.232535] 
[   49.240272] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
[   49.240273] 
[   49.249834] # 	Before schedule, set selector to 0x2b
[   49.249835] 
[   49.258298] # 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
[   49.258299] 
[   49.267130] # [OK]	GS/BASE remained 0x2b/0x0
[   49.267131] 
[   49.275280] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
[   49.275281] 
[   49.286413] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   49.286414] 
[   49.296454] # [OK]	GS/BASE remained 0x0/0x200000000
[   49.296454] 
[   49.305251] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
[   49.305252] 
[   49.316079] # 	Before schedule, set selector to 0x1
[   49.316080] 
[   49.324576] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   49.324577] 
[   49.334457] # [OK]	GS/BASE remained 0x1/0x0
[   49.334458] 
[   49.342538] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
[   49.342539] 
[   49.353268] # 	Before schedule, set selector to 0x2
[   49.353269] 
[   49.361876] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   49.361877] 
[   49.371863] # [OK]	GS/BASE remained 0x2/0x0
[   49.371864] 
[   49.379959] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
[   49.379960] 
[   49.390891] # 	Before schedule, set selector to 0x3
[   49.390892] 
[   49.399471] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   49.399472] 
[   49.409455] # [OK]	GS/BASE remained 0x3/0x0
[   49.409456] 
[   49.417570] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
[   49.417571] 
[   49.428386] # 	Before schedule, set selector to 0x2b
[   49.428387] 
[   49.437085] # 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
[   49.437085] 
[   49.447018] # [OK]	GS/BASE remained 0x2b/0x0
[   49.447019] 
[   49.455106] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
[   49.455106] 
[   49.465016] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   49.465018] 
[   49.474029] # [OK]	GS/BASE remained 0x0/0x200000000
[   49.474030] 
[   49.482490] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
[   49.482491] 
[   49.492027] # 	Before schedule, set selector to 0x1
[   49.492028] 
[   49.500357] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   49.500358] 
[   49.509125] # [OK]	GS/BASE remained 0x1/0x0
[   49.509126] 
[   49.517121] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
[   49.517122] 
[   49.526715] # 	Before schedule, set selector to 0x2
[   49.526729] 
[   49.535136] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   49.535137] 
[   49.543941] # [OK]	GS/BASE remained 0x2/0x0
[   49.543942] 
[   49.551884] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
[   49.551885] 
[   49.561500] # 	Before schedule, set selector to 0x3
[   49.561502] 
[   49.569944] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   49.569945] 
[   49.578748] # [OK]	GS/BASE remained 0x3/0x0
[   49.578749] 
[   49.586475] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
[   49.586476] 
[   49.596030] # 	Before schedule, set selector to 0x2b
[   49.596031] 
[   49.604421] # 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
[   49.604422] 
[   49.613222] # [OK]	GS/BASE remained 0x2b/0x0
[   49.613223] 
[   49.621373] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
[   49.621374] 
[   49.631978] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   49.631979] 
[   49.641784] # [OK]	GS/BASE remained 0x0/0x200000000
[   49.641785] 
[   49.650467] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
[   49.650468] 
[   49.660703] # 	Before schedule, set selector to 0x1
[   49.660704] 
[   49.669209] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   49.669210] 
[   49.678807] # [OK]	GS/BASE remained 0x1/0x0
[   49.678808] 
[   49.686798] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
[   49.686799] 
[   49.696994] # 	Before schedule, set selector to 0x2
[   49.696995] 
[   49.705418] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   49.705419] 
[   49.714963] # [OK]	GS/BASE remained 0x2/0x0
[   49.714964] 
[   49.722918] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
[   49.722919] 
[   49.733077] # 	Before schedule, set selector to 0x3
[   49.733077] 
[   49.741536] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   49.741537] 
[   49.750997] # [OK]	GS/BASE remained 0x3/0x0
[   49.750998] 
[   49.759039] # [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
[   49.759041] 
[   49.769204] # 	Before schedule, set selector to 0x2b
[   49.769205] 
[   49.777821] # 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
[   49.777822] 
[   49.787336] # [OK]	GS/BASE remained 0x2b/0x0
[   49.787337] 
[   49.795688] # [RUN]	ARCH_SET_GS(0), clear gs, then manipulate GSBASE in a different thread
[   49.795689] 
[   49.806899] # 	using LDT slot 0
[   49.806900] 
[   49.813164] # [OK]	GSBASE remained 0
[   49.813165] 
[   49.819951] # [OK]	GS was reset as expected
[   49.819951] 
[   49.827368] ok 36 selftests: x86: fsgsbase_64
[   49.827368] 
[   49.834895] # selftests: x86: sysret_rip_64
[   49.834896] 
[   49.842406] # [RUN]	sigreturn to 0x800000000000
[   49.842407] 
[   49.850317] # [OK]	Got SIGSEGV at RIP=0x800000000000
[   49.850317] 
[   49.858563] # [RUN]	sigreturn to 0x1000000000000
[   49.858564] 
[   49.866647] # [OK]	Got SIGSEGV at RIP=0x1000000000000
[   49.866648] 
[   49.874948] # [RUN]	sigreturn to 0x2000000000000
[   49.874949] 
[   49.882969] # [OK]	Got SIGSEGV at RIP=0x2000000000000
[   49.882970] 
[   49.891217] # [RUN]	sigreturn to 0x4000000000000
[   49.891218] 
[   49.899209] # [OK]	Got SIGSEGV at RIP=0x4000000000000
[   49.899210] 
[   49.907509] # [RUN]	sigreturn to 0x8000000000000
[   49.907510] 
[   49.915408] # [OK]	Got SIGSEGV at RIP=0x8000000000000
[   49.915409] 
[   49.923694] # [RUN]	sigreturn to 0x10000000000000
[   49.923695] 
[   49.931725] # [OK]	Got SIGSEGV at RIP=0x10000000000000
[   49.931726] 
[   49.940113] # [RUN]	sigreturn to 0x20000000000000
[   49.940114] 
[   49.948094] # [OK]	Got SIGSEGV at RIP=0x20000000000000
[   49.948095] 
[   49.956418] # [RUN]	sigreturn to 0x40000000000000
[   49.956419] 
[   49.964544] # [OK]	Got SIGSEGV at RIP=0x40000000000000
[   49.964544] 
[   49.972888] # [RUN]	sigreturn to 0x80000000000000
[   49.972889] 
[   49.980948] # [OK]	Got SIGSEGV at RIP=0x80000000000000
[   49.980948] 
[   49.989280] # [RUN]	sigreturn to 0x100000000000000
[   49.989281] 
[   49.997319] # [OK]	Got SIGSEGV at RIP=0x100000000000000
[   49.997320] 
[   50.005783] # [RUN]	sigreturn to 0x200000000000000
[   50.005797] 
[   50.014011] # [OK]	Got SIGSEGV at RIP=0x200000000000000
[   50.014012] 
[   50.022446] # [RUN]	sigreturn to 0x400000000000000
[   50.022447] 
[   50.030542] # [OK]	Got SIGSEGV at RIP=0x400000000000000
[   50.030543] 
[   50.038949] # [RUN]	sigreturn to 0x800000000000000
[   50.038950] 
[   50.047001] # [OK]	Got SIGSEGV at RIP=0x800000000000000
[   50.047002] 
[   50.055391] # [RUN]	sigreturn to 0x1000000000000000
[   50.055392] 
[   50.063511] # [OK]	Got SIGSEGV at RIP=0x1000000000000000
[   50.063512] 
[   50.072023] # [RUN]	sigreturn to 0x2000000000000000
[   50.072024] 
[   50.080204] # [OK]	Got SIGSEGV at RIP=0x2000000000000000
[   50.080205] 
[   50.088769] # [RUN]	sigreturn to 0x4000000000000000
[   50.088770] 
[   50.096959] # [OK]	Got SIGSEGV at RIP=0x4000000000000000
[   50.096960] 
[   50.105555] # [RUN]	sigreturn to 0x8000000000000000
[   50.105556] 
[   50.113803] # [OK]	Got SIGSEGV at RIP=0x8000000000000000
[   50.113804] 
[   50.122706] # [RUN]	Trying a SYSCALL that falls through to 0x7fffffffe000
[   50.122707] 
[   50.132362] # [OK]	We survived
[   50.132363] 
[   50.139039] # [RUN]	Trying a SYSCALL that falls through to 0x7ffffffff000
[   50.139039] 
[   50.148682] # [OK]	We survived
[   50.148683] 
[   50.155386] # [RUN]	Trying a SYSCALL that falls through to 0x800000000000
[   50.155387] 
[   50.165455] # [OK]	mremap to 0x7ffffffff000 failed
[   50.165456] 
[   50.173874] # [RUN]	Trying a SYSCALL that falls through to 0xfffffffff000
[   50.173875] 
[   50.183976] # [OK]	mremap to 0xffffffffe000 failed
[   50.183976] 
[   50.192382] # [RUN]	Trying a SYSCALL that falls through to 0x1000000000000
[   50.192383] 
[   50.202475] # [OK]	mremap to 0xfffffffff000 failed
[   50.202476] 
[   50.210998] # [RUN]	Trying a SYSCALL that falls through to 0x1fffffffff000
[   50.210999] 
[   50.221160] # [OK]	mremap to 0x1ffffffffe000 failed
[   50.221161] 
[   50.229713] # [RUN]	Trying a SYSCALL that falls through to 0x2000000000000
[   50.229714] 
[   50.239956] # [OK]	mremap to 0x1fffffffff000 failed
[   50.239956] 
[   50.248505] # [RUN]	Trying a SYSCALL that falls through to 0x3fffffffff000
[   50.248506] 
[   50.258899] # [OK]	mremap to 0x3ffffffffe000 failed
[   50.258900] 
[   50.267465] # [RUN]	Trying a SYSCALL that falls through to 0x4000000000000
[   50.267466] 
[   50.277657] # [OK]	mremap to 0x3fffffffff000 failed
[   50.277658] 
[   50.286330] # [RUN]	Trying a SYSCALL that falls through to 0x7fffffffff000
[   50.286331] 
[   50.296711] # [OK]	mremap to 0x7ffffffffe000 failed
[   50.296711] 
[   50.305293] # [RUN]	Trying a SYSCALL that falls through to 0x8000000000000
[   50.305294] 
[   50.315471] # [OK]	mremap to 0x7fffffffff000 failed
[   50.315472] 
[   50.324173] # [RUN]	Trying a SYSCALL that falls through to 0xffffffffff000
[   50.324173] 
[   50.334334] # [OK]	mremap to 0xfffffffffe000 failed
[   50.334334] 
[   50.343057] # [RUN]	Trying a SYSCALL that falls through to 0x10000000000000
[   50.343058] 
[   50.353344] # [OK]	mremap to 0xffffffffff000 failed
[   50.353345] 
[   50.362006] # [RUN]	Trying a SYSCALL that falls through to 0x1ffffffffff000
[   50.362006] 
[   50.372361] # [OK]	mremap to 0x1fffffffffe000 failed
[   50.372362] 
[   50.381230] # [RUN]	Trying a SYSCALL that falls through to 0x20000000000000
[   50.381231] 
[   50.391608] # [OK]	mremap to 0x1ffffffffff000 failed
[   50.391609] 
[   50.400392] # [RUN]	Trying a SYSCALL that falls through to 0x3ffffffffff000
[   50.400393] 
[   50.410918] # [OK]	mremap to 0x3fffffffffe000 failed
[   50.410919] 
[   50.419720] # [RUN]	Trying a SYSCALL that falls through to 0x40000000000000
[   50.419721] 
[   50.430127] # [OK]	mremap to 0x3ffffffffff000 failed
[   50.430128] 
[   50.439071] # [RUN]	Trying a SYSCALL that falls through to 0x7ffffffffff000
[   50.439072] 
[   50.449522] # [OK]	mremap to 0x7fffffffffe000 failed
[   50.449523] 
[   50.458435] # [RUN]	Trying a SYSCALL that falls through to 0x80000000000000
[   50.458436] 
[   50.468873] # [OK]	mremap to 0x7ffffffffff000 failed
[   50.468874] 
[   50.477721] # [RUN]	Trying a SYSCALL that falls through to 0xfffffffffff000
[   50.477722] 
[   50.488199] # [OK]	mremap to 0xffffffffffe000 failed
[   50.488200] 
[   50.497222] # [RUN]	Trying a SYSCALL that falls through to 0x100000000000000
[   50.497223] 
[   50.507795] # [OK]	mremap to 0xfffffffffff000 failed
[   50.507796] 
[   50.516659] # [RUN]	Trying a SYSCALL that falls through to 0x1fffffffffff000
[   50.516660] 
[   50.527138] # [OK]	mremap to 0x1ffffffffffe000 failed
[   50.527139] 
[   50.536078] # [RUN]	Trying a SYSCALL that falls through to 0x200000000000000
[   50.536079] 
[   50.546654] # [OK]	mremap to 0x1fffffffffff000 failed
[   50.546656] 
[   50.555639] # [RUN]	Trying a SYSCALL that falls through to 0x3fffffffffff000
[   50.555640] 
[   50.566240] # [OK]	mremap to 0x3ffffffffffe000 failed
[   50.566243] 
[   50.575294] # [RUN]	Trying a SYSCALL that falls through to 0x400000000000000
[   50.575294] 
[   50.585944] # [OK]	mremap to 0x3fffffffffff000 failed
[   50.585945] 
[   50.594989] # [RUN]	Trying a SYSCALL that falls through to 0x7fffffffffff000
[   50.594990] 
[   50.605518] # [OK]	mremap to 0x7ffffffffffe000 failed
[   50.605519] 
[   50.614443] # [RUN]	Trying a SYSCALL that falls through to 0x800000000000000
[   50.614443] 
[   50.625015] # [OK]	mremap to 0x7fffffffffff000 failed
[   50.625016] 
[   50.634055] # [RUN]	Trying a SYSCALL that falls through to 0xffffffffffff000
[   50.634056] 
[   50.644655] # [OK]	mremap to 0xfffffffffffe000 failed
[   50.644656] 
[   50.653687] # [RUN]	Trying a SYSCALL that falls through to 0x1000000000000000
[   50.653688] 
[   50.664290] # [OK]	mremap to 0xffffffffffff000 failed
[   50.664291] 
[   50.673423] # [RUN]	Trying a SYSCALL that falls through to 0x1ffffffffffff000
[   50.673424] 
[   50.684123] # [OK]	mremap to 0x1fffffffffffe000 failed
[   50.684125] 
[   50.693284] # [RUN]	Trying a SYSCALL that falls through to 0x2000000000000000
[   50.693285] 
[   50.704039] # [OK]	mremap to 0x1ffffffffffff000 failed
[   50.704040] 
[   50.713200] # [RUN]	Trying a SYSCALL that falls through to 0x3ffffffffffff000
[   50.713201] 
[   50.723961] # [OK]	mremap to 0x3fffffffffffe000 failed
[   50.723962] 
[   50.733091] # [RUN]	Trying a SYSCALL that falls through to 0x4000000000000000
[   50.733092] 
[   50.743846] # [OK]	mremap to 0x3ffffffffffff000 failed
[   50.743847] 
[   50.753125] # [RUN]	Trying a SYSCALL that falls through to 0x7ffffffffffff000
[   50.753126] 
[   50.763843] # [OK]	mremap to 0x7fffffffffffe000 failed
[   50.763844] 
[   50.773060] # [RUN]	Trying a SYSCALL that falls through to 0x8000000000000000
[   50.773061] 
[   50.783787] # [OK]	mremap to 0x7ffffffffffff000 failed
[   50.783788] 
[   50.792328] ok 37 selftests: x86: sysret_rip_64
[   50.792329] 
[   50.800287] # selftests: x86: syscall_numbering_64
[   50.800288] 
[   50.808545] # 	Checking for x32... not supported
[   50.808546] 
[   50.816473] # [RUN]	Checking syscalls 512-547
[   50.816474] 
[   50.824420] # [RUN]	Checking some 64-bit syscalls in x32 range
[   50.824420] 
[   50.833887] # [RUN]	Checking numbers above 2^32-1
[   50.833889] 
[   50.842010] # [OK]	They all returned -ENOSYS
[   50.842011] 
[   50.849779] ok 38 selftests: x86: syscall_numbering_64
[   50.849780] 
[   50.858129] # selftests: x86: ldt_gdt_64
[   50.858129] 
[   50.865893] # [NOTE]	set_thread_area is available; will use GDT index 12
[   50.865894] 
[   50.876324] # [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000000A
[   50.876325] 
[   50.886424] # [OK]	LDT entry 0 has AR 0x00C0FB00 and limit 0x0000AFFF
[   50.886425] 
[   50.896092] # [OK]	LDT entry 1 is invalid
[   50.896093] 
[   50.903961] # [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
[   50.903962] 
[   50.913634] # [OK]	LDT entry 1 is invalid
[   50.913635] 
[   50.921305] # [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
[   50.921306] 
[   50.931412] # [OK]	LDT entry 2 has AR 0x00D0FB00 and limit 0x0000AFFF
[   50.931413] 
[   50.941571] # [OK]	LDT entry 2 has AR 0x00D07B00 and limit 0x0000AFFF
[   50.941572] 
[   50.951707] # [OK]	LDT entry 2 has AR 0x00907B00 and limit 0x0000AFFF
[   50.951708] 
[   50.961948] # [OK]	LDT entry 2 has AR 0x00D07300 and limit 0x0000AFFF
[   50.961949] 
[   50.972233] # [OK]	LDT entry 2 has AR 0x00D07100 and limit 0x0000AFFF
[   50.972234] 
[   50.982424] # [OK]	LDT entry 2 has AR 0x00D07500 and limit 0x0000AFFF
[   50.982425] 
[   50.992837] # [OK]	LDT entry 2 has AR 0x00507700 and limit 0x0000000A
[   50.992838] 
0m] Stopped targ
[   51.003143] 
et Sound Card.
[   51.014488] # [OK]	LDT entry 2 has AR 0x00507D00 and limit 0x0000000A
[   51.014489] 
         Stoppin
[   51.024962] # [OK]	LDT entry 2 has AR 0x00507B00 and limit 0x0000000A
g NFS status mon
[   51.024963] 
itor for NFSv2/3 locking....
[   51.036315] # [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
[   51.036316] 
0m] Stopped targ
[   51.047356] 
et RPC Port Mapp
[   51.057932] # [RUN]	Test fork
er.
[   51.057933] 
0m] Stopped targ
[   51.065256] 
et Timers.
[   51.076146] # [OK]	LDT entry 1 is invalid
[   51.076146] 
0m] Stopped Dail
[   51.083582] 
y Cleanup of Temporary Directori
[   51.093040] # [NOTE]	set_thread_area is available; will use GDT index 12
es.
[   51.093041] 
0m] Stopped Dail
[   51.104593] 
y apt upgrade and clean activiti
[   51.116149] # [OK]	LDT entry 0 has AR 0x00C0FB00 and limit 0x0000AFFF
es.
[   51.116150] 
0m] Stopped Dail
[   51.127001] 
y apt download activities.
[   51.136476] # [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
[   51.136477] 
0m] Stopped targ
[   51.146911] 
et System Time Synchronized.
[   51.156324] # [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
[   51.156325] 
         Stoppin
[   51.167569] # [OK]	LDT entry 2 has AR 0x00D0FB00 and limit 0x0000AFFF
g System Logging
[   51.167570] 
 Service...
[   51.178948] # [OK]	LDT entry 2 has AR 0x00D07B00 and limit 0x0000AFFF
[   51.178949] 
         Stoppin
[   51.189347] # [OK]	LDT entry 2 has AR 0x00907B00 and limit 0x0000AFFF
g LSB: Load kern
[   51.189348] 
el image with kexec...
[   51.200699] # [OK]	LDT entry 2 has AR 0x00D07300 and limit 0x0000AFFF
[   51.200700] 
         Stoppin
[   51.211845] # [OK]	LDT entry 2 has AR 0x00D07100 and limit 0x0000AFFF
g D-Bus System M
[   51.211846] 
essage Bus...
[   51.223098] # [OK]	LDT entry 2 has AR 0x00D07500 and limit 0x0000AFFF
[   51.223099] 
0m] Stopped LKP 
[   51.233392] 
bootstrap.
[   51.244744] # [OK]	LDT entry 2 has AR 0x00507F00 and limit 0x0000000A
[   51.244745] 
         Stoppin
[   51.255260] # [OK]	LDT entry 2 has AR 0x00507D00 and limit 0x0000000A
g OpenBSD Secure
[   51.255261] 
 Shell server...
[   51.266619] # [OK]	LDT entry 2 has AR 0x00507B00 and limit 0x0000000A
[   51.266620] 
         Stoppin
[   51.277102] # [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
g LSB: Start and
[   51.277103] 
 stop bmc-watchdog...
[   51.288400] # [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
[   51.288401] 
         Stoppin
[   51.298507] # [RUN]	Test fork
g Regular backgr
[   51.298508] 
ound program pro
[   51.306470] # [OK]	Child succeeded
cessing daemon..
[   51.306471] 
.
[   51.314012] # [RUN]	Test size
[   51.314013] 
0m] Stopped targ
[   51.320198] 
et Login Prompts
[   51.328335] # [OK]	modify_ldt failure 22
.
[   51.328336] 
         Stoppin
[   51.336378] # [OK]	LDT entry 0 has AR 0x0000F300 and limit 0x00000000
g Getty on tty1.
[   51.336379] 
..
[   51.347793] # [OK]	LDT entry 0 has AR 0x00007300 and limit 0x00000000
[   51.347794] 
         Stoppin
[   51.358220] # [OK]	LDT entry 0 has AR 0x0000F100 and limit 0x00000000
g Login Service.
[   51.358221] 
..
[   51.369428] # [OK]	LDT entry 0 has AR 0x00007300 and limit 0x00000000
[   51.369429] 
         Unmount
[   51.379845] # [OK]	LDT entry 0 has AR 0x00007100 and limit 0x00000001
ing RPC Pipe Fil
[   51.379846] 
e System...
[   51.391050] # [OK]	LDT entry 0 has AR 0x00007100 and limit 0x00000000
[   51.391051] 
0m] Stopped Regu
[   51.400839] 
lar background program processin
[   51.410240] # [OK]	LDT entry 0 has AR 0x0040F300 and limit 0x000FFFFF
g daemon.
[   51.410241] 
0m] Stopped Syst
[   51.421885] 
em Logging Service.
[   51.433345] # [OK]	LDT entry 0 has AR 0x00C0F100 and limit 0xFFFFFFFF
[   51.433345] 
0m] Stopped D-Bu
[   51.443835] 
s System Message Bus.
[   51.455186] # [OK]	LDT entry 0 has AR 0x00C0F500 and limit 0xFFFFFFFF
[   51.455187] 
0m] Stopped Open
[   51.465213] 
BSD Secure Shell
[   51.474185] # [RUN]	Cross-CPU LDT invalidation
 server.
[   51.474186] 
[   51.482288] # [OK]	All 5 iterations succeeded
[   51.482289] 
[   51.482572] # [RUN]	Test exec
[   51.482573] 
[   51.483567] # [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000002A
[   51.483567] 
[   51.483981] # [OK]	Child succeeded
[   51.483982] 
[   51.484971] # [OK]	Invalidate DS with set_thread_area: new DS = 0x0
[   51.484972] 
[   51.485929] # [OK]	Invalidate ES with set_thread_area: new ES = 0x0
[   51.485930] 
[   51.486963] # [OK]	Invalidate FS with set_thread_area: new FS = 0x0
[   51.486963] 
[   51.487402] # [OK]	New FSBASE was zero
[   51.487403] 
[   51.488426] # [OK]	Invalidate GS with set_thread_area: new GS = 0x0
[   51.488426] 
0m] Stopped Gett
[   51.547502] 
y on tty1.
[   51.555631] ok 39 selftests: x86: ldt_gdt_64
[   51.555632] 
[   51.562449] 
0m] Stopped NFS 
[   51.569875] # [RUN]	Check int80 return regs
[   51.569876] 
status monitor f
[   51.576955] # [OK]	getpid() preserves regs
[   51.576956] 
or NFSv2/3 locki
[   51.584199] # [OK]	kill(getpid(), SIGUSR1) preserves regs
[   51.584200] 
ng..
[   51.592234] # [RUN]	ptrace-induced syscall restart
[   51.592235] 
0m] Unmounted RP
[   51.598763] 
C Pipe File Syst
[   51.606340] # [OK]	Initial nr and args are correct
[   51.606340] 
em.
[   51.614221] # [RUN]	Restart the syscall (ip = 0x7f877c0d2f49)
[   51.614222] 
0m] Stopped Logi
[   51.622200] 
n Service.
[   51.632308] # [RUN]	Change nr and args and restart the syscall (ip = 0x7f877c0d2f49)
[   51.632309] 
[   51.642308] # [OK]	Replacement nr and args are correct
[   51.642310] 
         Stoppin
[   51.649493] # [OK]	Child exited cleanly
g Permit User Se
[   51.649494] 
ssions...
[   51.657959] # [RUN]	kernel syscall restart under ptrace
[   51.657960] 
         Stopping /etc/rc.local Compatibility...
         Unmounting /inn/result...
         Stopping LSB: Execute the kexec -e command to reboot system...
         Stopping Raise network interfaces...
         Stopping Load/Save Random Seed...
         Stopping Network Time Synchronization...
         Stopping Update UTMP about System Boot/Shutdown...
         Unmounting /tmp...
         Unmounting /opt/rootfs...
         Starting Reboot...
[   52.282863] watchdog: watchdog0: watchdog did not stop!
Failed to read r
[   52.311887] kvm: exiting hardware virtualization
eboot parameter file: No such file or directory
[   52.382825] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[   52.390632] e1000e: EEE TX LPI TIMER: 00000011
reboot: Restarting system

[-- Attachment #5: kernel-selftests --]
[-- Type: text/plain, Size: 63966 bytes --]

KERNEL SELFTESTS: linux_headers_dir is /usr/src/linux-headers-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749
2020-06-21 09:33:59 ln -sf /usr/bin/clang
2020-06-21 09:33:59 ln -sf /usr/bin/llc
2020-06-21 09:33:59 sed -i s/default_timeout=45/default_timeout=300/ kselftest/runner.sh
2020-06-21 09:33:59 make run_tests -C x86
make: Entering directory '/usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86'
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/single_step_syscall_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 single_step_syscall.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sysret_ss_attrs_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sysret_ss_attrs.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_nt_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_nt.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_mremap_vdso_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_mremap_vdso.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/check_initial_reg_state_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -Wl,-ereal_start -static -DCAN_BUILD_32 -DCAN_BUILD_64 check_initial_reg_state.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sigreturn_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sigreturn.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/iopl_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 iopl.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ioperm_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ioperm.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/protection_keys_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 protection_keys.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_vdso_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_vdso.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_vsyscall_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_vsyscall.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/mov_ss_trap_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 mov_ss_trap.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_arg_fault_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_arg_fault.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/entry_from_vm86_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 entry_from_vm86.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_syscall_vdso_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_syscall_vdso.c thunks_32.S -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/unwind_vdso_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 unwind_vdso.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_FCMOV_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_FCMOV.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_FCOMI_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_FCOMI.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_FISTTP_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_FISTTP.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/vdso_restorer_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 vdso_restorer.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ldt_gdt_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ldt_gdt.c -lrt -ldl -lm
gcc -m32 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ptrace_syscall_32 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ptrace_syscall.c raw_syscall_helper_32.S -lrt -ldl -lm
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/single_step_syscall_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 single_step_syscall.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sysret_ss_attrs_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sysret_ss_attrs.c thunks.S -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_nt_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_nt.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_mremap_vdso_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_mremap_vdso.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/check_initial_reg_state_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -Wl,-ereal_start -static -DCAN_BUILD_32 -DCAN_BUILD_64 check_initial_reg_state.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sigreturn_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sigreturn.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/iopl_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 iopl.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ioperm_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ioperm.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/protection_keys_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 protection_keys.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_vdso_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_vdso.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/test_vsyscall_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 test_vsyscall.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/mov_ss_trap_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 mov_ss_trap.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_arg_fault_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_arg_fault.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/fsgsbase_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 fsgsbase.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/sysret_rip_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 sysret_rip.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/syscall_numbering_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 syscall_numbering.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ldt_gdt_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ldt_gdt.c -lrt -ldl
gcc -m64 -o /usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86/ptrace_syscall_64 -O2 -g -std=gnu99 -pthread -Wall -no-pie -DCAN_BUILD_32 -DCAN_BUILD_64 ptrace_syscall.c -lrt -ldl
TAP version 13
1..40
# selftests: x86: single_step_syscall_32
# [RUN]	Set TF and check nop
# [OK]	Survived with TF set and 14 traps
# [RUN]	Set TF and check int80
# [OK]	Survived with TF set and 14 traps
# [RUN]	Set TF and check a fast syscall
# [OK]	Survived with TF set and 43 traps
# [RUN]	Fast syscall with TF cleared
# [OK]	Nothing unexpected happened
# [RUN]	Set TF and check SYSENTER
# 	Got SIGSEGV with RIP=f7f47569, TF=256
# [RUN]	Fast syscall with TF cleared
# [OK]	Nothing unexpected happened
ok 1 selftests: x86: single_step_syscall_32
# selftests: x86: sysret_ss_attrs_32
# [RUN]	Syscalls followed by SS validation
# [OK]	We survived
ok 2 selftests: x86: sysret_ss_attrs_32
# selftests: x86: syscall_nt_32
# [RUN]	Set NT and issue a syscall
# [OK]	The syscall worked and flags are still set
# [RUN]	Set NT|TF and issue a syscall
# [OK]	The syscall worked and flags are still set
ok 3 selftests: x86: syscall_nt_32
# selftests: x86: test_mremap_vdso_32
# 	AT_SYSINFO_EHDR is 0xf7fbb000
# [NOTE]	Moving vDSO: [0xf7fbb000, 0xf7fbc000] -> [0xf7fb4000, 0xf7fb5000]
# [NOTE]	vDSO partial move failed, will try with bigger size
# [NOTE]	Moving vDSO: [0xf7fbb000, 0xf7fbd000] -> [0xf7fb3000, 0xf7fb5000]
# [OK]
ok 4 selftests: x86: test_mremap_vdso_32
# selftests: x86: check_initial_reg_state_32
# [OK]	All GPRs except SP are 0
# [OK]	FLAGS is 0x202
ok 5 selftests: x86: check_initial_reg_state_32
# selftests: x86: sigreturn_32
# [OK]	set_thread_area refused 16-bit data
# [OK]	set_thread_area refused 16-bit data
# [RUN]	Valid sigreturn: 64-bit CS (33), 32-bit SS (2b, GDT)
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 32-bit CS (23), 32-bit SS (2b, GDT)
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 16-bit CS (37), 32-bit SS (2b, GDT)
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 64-bit CS (33), 16-bit SS (3f)
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 32-bit CS (23), 16-bit SS (3f)
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 16-bit CS (37), 16-bit SS (3f)
# [OK]	all registers okay
# [RUN]	64-bit CS (33), bogus SS (47)
# [OK]	Got #GP(0x0) (i.e. Segmentation fault)
# [RUN]	32-bit CS (23), bogus SS (47)
# [OK]	Got #GP(0x0) (i.e. Segmentation fault)
# [RUN]	16-bit CS (37), bogus SS (47)
# [OK]	Got #GP(0x0) (i.e. Segmentation fault)
# [RUN]	64-bit CS (33), bogus SS (23)
# [OK]	Got #GP(0x20) (i.e. GDT index 4, Segmentation fault)
# [RUN]	32-bit CS (23), bogus SS (23)
# [OK]	Got #GP(0x20) (i.e. GDT index 4, Segmentation fault)
# [RUN]	16-bit CS (37), bogus SS (23)
# [OK]	Got #GP(0x20) (i.e. GDT index 4, Segmentation fault)
# [RUN]	32-bit CS (4f), bogus SS (2b)
# [OK]	Got #NP(0x4c) (i.e. LDT index 9, Bus error)
# [RUN]	32-bit CS (23), bogus SS (57)
# [OK]	Got #GP(0x0) (i.e. Segmentation fault)
ok 6 selftests: x86: sigreturn_32
# selftests: x86: iopl_32
# [OK]	CLI faulted
# [OK]	STI faulted
# [OK]	outb to 0x80 worked
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# 	child: set IOPL to 3
# [RUN]	child: write to 0x80
# [OK]	CLI faulted
# [OK]	STI faulted
# [OK]	outb to 0x80 worked
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# [OK]	Child succeeded
# [RUN]	parent: write to 0x80 (should fail)
# [OK]	outb to 0x80 failed
# [OK]	CLI faulted
# [OK]	STI faulted
# 	iopl(3)
# 	Drop privileges
# [RUN]	iopl(3) unprivileged but with IOPL==3
# [RUN]	iopl(0) unprivileged
# [RUN]	iopl(3) unprivileged
# [OK]	Failed as expected
ok 7 selftests: x86: iopl_32
# selftests: x86: ioperm_32
# [OK]	outb to 0x80 failed
# [OK]	outb to 0xed failed
# [RUN]	enable 0x80
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# [RUN]	disable 0x80
# [OK]	outb to 0x80 failed
# [OK]	outb to 0xed failed
# [RUN]	child: check that we inherited permissions
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# [RUN]	child: Extend permissions to 0x81
# [RUN]	child: Drop permissions to 0x80
# [OK]	outb to 0x80 failed
# [OK]	outb to 0x80 failed
# [OK]	outb to 0xed failed
# [RUN]	enable 0x80
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# [RUN]	disable 0x80
# [OK]	outb to 0x80 failed
# [OK]	outb to 0xed failed
# [OK]	Child succeeded
# 	Verify that unsharing the bitmap worked
# [OK]	outb to 0x80 worked
# 	Drop privileges
# [RUN]	disable 0x80
# [OK]	it worked
# [RUN]	enable 0x80 again
# [OK]	it failed
ok 8 selftests: x86: ioperm_32
# selftests: x86: protection_keys_32
# has pku: 0
# running PKEY tests for unsupported CPU/OS
ok 9 selftests: x86: protection_keys_32
# selftests: x86: test_vdso_32
# Warning: failed to find getcpu in vDSO
# [RUN]	Testing clock_gettime for clock CLOCK_REALTIME (0)...
# 	1592703243.509739377 1592703243.509743541 1592703243.509743738
# [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC (1)...
# 	37.692899478 37.692899892 37.692900056
# [RUN]	Testing clock_gettime for clock CLOCK_PROCESS_CPUTIME_ID (2)...
# 	0.000721539 0.000722258 0.000722811
# [RUN]	Testing clock_gettime for clock CLOCK_THREAD_CPUTIME_ID (3)...
# 	0.000724733 0.000725262 0.000725781
# [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC_RAW (4)...
# 	36.495366960 36.495367323 36.495367534
# [RUN]	Testing clock_gettime for clock CLOCK_REALTIME_COARSE (5)...
# 	1592703243.509355978 1592703243.509355978 1592703243.509355978
# [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC_COARSE (6)...
# 	37.692508963 37.692508963 37.692508963
# [RUN]	Testing clock_gettime for clock CLOCK_BOOTTIME (7)...
# 	37.692913025 37.692913368 37.692913525
# [RUN]	Testing clock_gettime for clock CLOCK_REALTIME_ALARM (8)...
# 	1592703243.509762027 1592703243.509762534 1592703243.509763023
# [RUN]	Testing clock_gettime for clock CLOCK_BOOTTIME_ALARM (9)...
# 	37.692917482 37.692917992 37.692918488
# [RUN]	Testing clock_gettime for clock CLOCK_SGI_CYCLE (10)...
# [OK]	No such clock.
# [RUN]	Testing clock_gettime for clock CLOCK_TAI (11)...
# 	1592703243.509768408 1592703243.509768752 1592703243.509768910
# [RUN]	Testing clock_gettime for clock invalid (-1)...
# [OK]	No such clock.
# [RUN]	Testing clock_gettime for clock invalid (-2147483648)...
# [OK]	No such clock.
# [RUN]	Testing clock_gettime for clock invalid (2147483647)...
# [OK]	No such clock.
# [RUN]	Testing gettimeofday...
# 	1592703243.509773 1592703243.509774 1592703243.509774
# [OK]	timezones match: minuteswest=-480, dsttime=0
# [RUN]	Testing getcpu...
# [OK]	CPU 0: syscall: cpu 0, node 0
# [OK]	CPU 1: syscall: cpu 1, node 0
# [OK]	CPU 2: syscall: cpu 2, node 0
# [OK]	CPU 3: syscall: cpu 3, node 0
# [OK]	CPU 4: syscall: cpu 4, node 0
# [OK]	CPU 5: syscall: cpu 5, node 0
# [OK]	CPU 6: syscall: cpu 6, node 0
# [OK]	CPU 7: syscall: cpu 7, node 0
ok 10 selftests: x86: test_vdso_32
# selftests: x86: test_vsyscall_32
# [NOTE]	failed to find getcpu in vDSO
# [RUN]	test gettimeofday()
# 	vDSO time offsets: 0.000004 0.000000
# [OK]	vDSO gettimeofday()'s timeval was okay
# [RUN]	test time()
# [OK]	vDSO time() is okay
# [RUN]	getcpu() on CPU 0
# [RUN]	getcpu() on CPU 1
ok 11 selftests: x86: test_vsyscall_32
# selftests: x86: mov_ss_trap_32
# 	SS = 0x2b, &SS = 0x0x804d11c
# 	PR_SET_PTRACER_ANY succeeded
# 	Set up a watchpoint
# 	DR0 = 804d11c, DR1 = 8048863, DR7 = 7000a
# 	SS = 0x2b, &SS = 0x0x804d11c
# 	PR_SET_PTRACER_ANY succeeded
# 	Set up a watchpoint
# [RUN]	Read from watched memory (should get SIGTRAP)
# 	Got SIGTRAP with RIP=80486ed, EFLAGS.RF=0
# [RUN]	MOV SS; INT3
# 	Got SIGTRAP with RIP=80486fe, EFLAGS.RF=0
# [RUN]	MOV SS; INT 3
# 	Got SIGTRAP with RIP=8048710, EFLAGS.RF=0
# [RUN]	MOV SS; CS CS INT3
# 	Got SIGTRAP with RIP=8048723, EFLAGS.RF=0
# [RUN]	MOV SS; CSx14 INT3
# 	Got SIGTRAP with RIP=8048742, EFLAGS.RF=0
# [RUN]	MOV SS; INT 4
# 	Got SIGSEGV with RIP=804876c
# [RUN]	MOV SS; INTO
# 	Got SIGTRAP with RIP=804879c, EFLAGS.RF=0
# [RUN]	MOV SS; ICEBP
# 	Got SIGTRAP with RIP=8048b11, EFLAGS.RF=0
# [RUN]	MOV SS; CLI
# 	Got SIGSEGV with RIP=8048ad6
# [RUN]	MOV SS; #PF
# 	Got SIGSEGV with RIP=8048a98
# [RUN]	MOV SS; INT 1
# 	Got SIGSEGV with RIP=8048843
# [RUN]	MOV SS; breakpointed NOP
# 	Got SIGTRAP with RIP=8048864, EFLAGS.RF=0
# [RUN]	MOV SS; SYSENTER
# 	Got SIGSEGV with RIP=f7f3c569
# [RUN]	MOV SS; INT $0x80
# [OK]	I aten't dead
ok 12 selftests: x86: mov_ss_trap_32
# selftests: x86: syscall_arg_fault_32
# [RUN]	SYSENTER with invalid state
# [OK]	Seems okay
# [RUN]	SYSCALL with invalid state
# [SKIP]	Illegal instruction
# [RUN]	SYSENTER with TF and invalid state
# [OK]	Seems okay
# [RUN]	SYSCALL with TF and invalid state
# [SKIP]	Illegal instruction
ok 13 selftests: x86: syscall_arg_fault_32
# selftests: x86: entry_from_vm86_32
# [RUN]	#BR from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	SYSENTER from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	SYSCALL from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	STI with VIP set from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	POPF with VIP set and IF clear from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	POPF with VIP and IF set from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	POPF with VIP clear and IF set from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	INT3 from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	int80 from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	UMIP tests from vm86 mode
# [SKIP]	vm86 not supported
# [INFO]	Result from SMSW:[0x0000]
# [INFO]	Result from SIDT: limit[0x0000]base[0x00000000]
# [INFO]	Result from SGDT: limit[0x0000]base[0x00000000]
# [PASS]	All the results from SMSW are identical.
# [PASS]	All the results from SGDT are identical.
# [PASS]	All the results from SIDT are identical.
# [RUN]	STR instruction from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	SLDT instruction from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	Execute null pointer from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	#BR from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	SYSENTER from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	SYSCALL from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	STI with VIP set from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	POPF with VIP set and IF clear from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	POPF with VIP and IF set from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	POPF with VIP clear and IF set from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	INT3 from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	int80 from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	UMIP tests from vm86 mode
# [SKIP]	vm86 not supported
# [INFO]	Result from SMSW:[0x0000]
# [INFO]	Result from SIDT: limit[0x0000]base[0x00000000]
# [INFO]	Result from SGDT: limit[0x0000]base[0x00000000]
# [PASS]	All the results from SMSW are identical.
# [PASS]	All the results from SGDT are identical.
# [PASS]	All the results from SIDT are identical.
# [RUN]	STR instruction from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	SLDT instruction from vm86 mode
# [SKIP]	vm86 not supported
# [RUN]	Execute null pointer from vm86 mode
# [SKIP]	vm86 not supported
ok 14 selftests: x86: entry_from_vm86_32
# selftests: x86: test_syscall_vdso_32
# [RUN]	Executing 6-argument 32-bit syscall via VDSO
# [WARN]	Flags before=0000000000200ed7 id 0 00 o d i s z 0 a 0 p 1 c
# [WARN]	Flags  after=0000000000200682 id 0 00 d i s 0 0 1 
# [WARN]	Flags change=0000000000000855 0 00 o z 0 a 0 p 0 c
# [OK]	Arguments are preserved across syscall
# [NOTE]	R11 has changed:0000000000200682 - assuming clobbered by SYSRET insn
# [OK]	R8..R15 did not leak kernel data
# [RUN]	Executing 6-argument 32-bit syscall via INT 80
# [OK]	Arguments are preserved across syscall
# [OK]	R8..R15 did not leak kernel data
# [RUN]	Executing 6-argument 32-bit syscall via VDSO
# [WARN]	Flags before=0000000000200ed7 id 0 00 o d i s z 0 a 0 p 1 c
# [WARN]	Flags  after=0000000000200686 id 0 00 d i s 0 0 p 1 
# [WARN]	Flags change=0000000000000851 0 00 o z 0 a 0 0 c
# [OK]	Arguments are preserved across syscall
# [NOTE]	R11 has changed:0000000000200686 - assuming clobbered by SYSRET insn
# [OK]	R8..R15 did not leak kernel data
# [RUN]	Executing 6-argument 32-bit syscall via INT 80
# [OK]	Arguments are preserved across syscall
# [OK]	R8..R15 did not leak kernel data
# [RUN]	Running tests under ptrace
ok 15 selftests: x86: test_syscall_vdso_32
# selftests: x86: unwind_vdso_32
# 	AT_SYSINFO is 0xf7eed560
# [OK]	AT_SYSINFO maps to linux-gate.so.1, loaded at 0x0xf7eed000
# [RUN]	Set TF and check a fast syscall
# 	In vsyscall at 0xf7eed560, returning to 0xf7ca5737
# 	SIGTRAP at 0xf7eed560
# 	  0xf7eed560
# 	  0xf7ca5737
# [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
# 	SIGTRAP at 0xf7eed561
# 	  0xf7eed561
# 	  0xf7ca5737
# [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
# 	SIGTRAP at 0xf7eed562
# 	  0xf7eed562
# 	  0xf7ca5737
# [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
# 	SIGTRAP at 0xf7eed563
# 	  0xf7eed563
# 	  0xf7ca5737
# [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
# 	SIGTRAP at 0xf7eed565
# 	  0xf7eed565
# 	  0xf7ca5737
# [OK]	  NR = 20, args = 1, 2, 3, 4, 5, 6
# 	SIGTRAP at 0xf7eed56a
# 	  0xf7eed56a
# 	  0xf7ca5737
# [OK]	  NR = 1685, args = 1, 2, 3, 4, 5, 6
# 	SIGTRAP at 0xf7eed56b
# 	  0xf7eed56b
# 	  0xf7ca5737
# [OK]	  NR = 1685, args = 1, 2, 3, 4, 5, 6
# 	SIGTRAP at 0xf7eed56c
# 	  0xf7eed56c
# 	  0xf7ca5737
# [OK]	  NR = 1685, args = 1, 2, 3, 4, 5, 6
# 	Vsyscall is done
# [OK]	All is well
ok 16 selftests: x86: unwind_vdso_32
# selftests: x86: test_FCMOV_32
# [RUN]	Testing fcmovCC instructions
# [OK]	fcmovCC
ok 17 selftests: x86: test_FCMOV_32
# selftests: x86: test_FCOMI_32
# [RUN]	Testing f[u]comi[p] instructions
# [OK]	f[u]comi[p]
ok 18 selftests: x86: test_FCOMI_32
# selftests: x86: test_FISTTP_32
# [RUN]	Testing fisttp instructions
# [OK]	fisttp
ok 19 selftests: x86: test_FISTTP_32
# selftests: x86: vdso_restorer_32
# [RUN]	Raise a signal, SA_SIGINFO, sa.restorer == NULL
# [OK]	SA_SIGINFO handler returned successfully
# [RUN]	Raise a signal, !SA_SIGINFO, sa.restorer == NULL
# [OK]	!SA_SIGINFO handler returned successfully
ok 20 selftests: x86: vdso_restorer_32
# selftests: x86: ldt_gdt_32
# [NOTE]	set_thread_area is available; will use GDT index 13
# [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000000A
# [OK]	LDT entry 0 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07B00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00907B00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07300 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07100 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07500 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00507700 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507F00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507D00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507B00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
# [RUN]	Test fork
# [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 0 is invalid
# [NOTE]	set_thread_area is available; will use GDT index 13
# [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000000A
# [OK]	LDT entry 0 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07B00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00907B00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07300 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07100 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07500 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00507700 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507F00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507D00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507B00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
# [RUN]	Test fork
# [OK]	Child succeeded
# [RUN]	Test size
# [DONE]	Size test
# [OK]	modify_ldt failure 22
# [OK]	LDT entry 0 has AR 0x0000F300 and limit 0x00000000
# [OK]	LDT entry 0 has AR 0x00007300 and limit 0x00000000
# [OK]	LDT entry 0 has AR 0x0000F100 and limit 0x00000000
# [OK]	LDT entry 0 has AR 0x00007300 and limit 0x00000000
# [OK]	LDT entry 0 has AR 0x00007100 and limit 0x00000001
# [OK]	LDT entry 0 has AR 0x00007100 and limit 0x00000000
# [OK]	LDT entry 0 is invalid
# [OK]	LDT entry 0 has AR 0x0040F300 and limit 0x000FFFFF
# [OK]	GDT entry 13 has AR 0x0040F300 and limit 0x000FFFFF
# [OK]	LDT entry 0 has AR 0x00C0F300 and limit 0xFFFFFFFF
# [OK]	GDT entry 13 has AR 0x00C0F300 and limit 0xFFFFFFFF
# [OK]	LDT entry 0 has AR 0x00C0F100 and limit 0xFFFFFFFF
# [OK]	GDT entry 13 has AR 0x00C0F100 and limit 0xFFFFFFFF
# [OK]	LDT entry 0 has AR 0x00C0F700 and limit 0xFFFFFFFF
# [OK]	GDT entry 13 has AR 0x00C0F700 and limit 0xFFFFFFFF
# [OK]	LDT entry 0 has AR 0x00C0F500 and limit 0xFFFFFFFF
# [OK]	GDT entry 13 has AR 0x00C0F500 and limit 0xFFFFFFFF
# [OK]	LDT entry 0 is invalid
# [RUN]	Cross-CPU LDT invalidation
# [OK]	All 5 iterations succeeded
# [RUN]	Test exec
# [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000002A
# [OK]	Child succeeded
# [OK]	Invalidate DS with set_thread_area: new DS = 0x0
# [OK]	Invalidate ES with set_thread_area: new ES = 0x0
# [OK]	Invalidate FS with set_thread_area: new FS = 0x0
# [OK]	Invalidate GS with set_thread_area: new GS = 0x0
ok 21 selftests: x86: ldt_gdt_32
# selftests: x86: ptrace_syscall_32
# [RUN]	Check int80 return regs
# [OK]	getpid() preserves regs
# [OK]	kill(getpid(), SIGUSR1) preserves regs
# [RUN]	Check AT_SYSINFO return regs
# [OK]	getpid() preserves regs
# [OK]	kill(getpid(), SIGUSR1) preserves regs
# [RUN]	ptrace-induced syscall restart
# [RUN]	SYSEMU
# [OK]	Initial nr and args are correct
# [RUN]	Restart the syscall (ip = 0xf7f11569)
# [OK]	Restarted nr and args are correct
# [RUN]	Change nr and args and restart the syscall (ip = 0xf7f11569)
# [OK]	Replacement nr and args are correct
# [OK]	Child exited cleanly
# [RUN]	kernel syscall restart under ptrace
# [RUN]	SYSCALL
# [OK]	Initial nr and args are correct
# [RUN]	SYSCALL
# [OK]	Args after SIGUSR1 are correct (ax = -514)
# [OK]	Child got SIGUSR1
# [RUN]	Step again
# [OK]	pause(2) restarted correctly
ok 22 selftests: x86: ptrace_syscall_32
# selftests: x86: single_step_syscall_64
# [RUN]	Set TF and check nop
# [OK]	Survived with TF set and 9 traps
# [RUN]	Set TF and check syscall-less opportunistic sysret
# [OK]	Survived with TF set and 12 traps
# [RUN]	Set TF and check int80
# [OK]	Survived with TF set and 9 traps
# [RUN]	Set TF and check a fast syscall
# [OK]	Survived with TF set and 22 traps
# [RUN]	Fast syscall with TF cleared
# [OK]	Nothing unexpected happened
# [RUN]	Set TF and check SYSENTER
# 	Got SIGSEGV with RIP=fb0dc569, TF=256
# [RUN]	Fast syscall with TF cleared
# [OK]	Nothing unexpected happened
ok 23 selftests: x86: single_step_syscall_64
# selftests: x86: sysret_ss_attrs_64
# [RUN]	Syscalls followed by SS validation
# [OK]	We survived
ok 24 selftests: x86: sysret_ss_attrs_64
# selftests: x86: syscall_nt_64
# [RUN]	Set NT and issue a syscall
# [OK]	The syscall worked and flags are still set
# [RUN]	Set NT|TF and issue a syscall
# [OK]	The syscall worked and flags are still set
ok 25 selftests: x86: syscall_nt_64
# selftests: x86: test_mremap_vdso_64
# 	AT_SYSINFO_EHDR is 0x7ffd41fec000
# [NOTE]	Moving vDSO: [0x7ffd41fec000, 0x7ffd41fed000] -> [0x7f1297c20000, 0x7f1297c21000]
# [NOTE]	vDSO partial move failed, will try with bigger size
# [NOTE]	Moving vDSO: [0x7ffd41fec000, 0x7ffd41fee000] -> [0x7f1297bf7000, 0x7f1297bf9000]
# [OK]
ok 26 selftests: x86: test_mremap_vdso_64
# selftests: x86: check_initial_reg_state_64
# [OK]	All GPRs except SP are 0
# [OK]	FLAGS is 0x202
ok 27 selftests: x86: check_initial_reg_state_64
# selftests: x86: sigreturn_64
# [OK]	set_thread_area refused 16-bit data
# [OK]	set_thread_area refused 16-bit data
# [RUN]	Valid sigreturn: 64-bit CS (33), 32-bit SS (2b, GDT)
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 32-bit CS (23), 32-bit SS (2b, GDT)
# [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 16-bit CS (37), 32-bit SS (2b, GDT)
# [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 64-bit CS (33), 16-bit SS (3f)
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 32-bit CS (23), 16-bit SS (3f)
# [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 16-bit CS (37), 16-bit SS (3f)
# [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 32-bit CS (23), 32-bit SS (2b, GDT)
# 	Corrupting SS on return to 64-bit mode
# [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
# [OK]	all registers okay
# [RUN]	Valid sigreturn: 32-bit CS (23), 16-bit SS (3f)
# 	Corrupting SS on return to 64-bit mode
# [NOTE]	SP: 8badf00d5aadc0de -> 5aadc0de
# [OK]	all registers okay
# [RUN]	64-bit CS (33), bogus SS (47)
# [OK]	Got #GP(0x0) (i.e. Segmentation fault)
# [RUN]	32-bit CS (23), bogus SS (47)
# [OK]	Got #GP(0x0) (i.e. Segmentation fault)
# [RUN]	16-bit CS (37), bogus SS (47)
# [OK]	Got #GP(0x0) (i.e. Segmentation fault)
# [RUN]	64-bit CS (33), bogus SS (33)
# [OK]	Got #GP(0x30) (i.e. GDT index 6, Segmentation fault)
# [RUN]	32-bit CS (23), bogus SS (33)
# [OK]	Got #GP(0x30) (i.e. GDT index 6, Segmentation fault)
# [RUN]	16-bit CS (37), bogus SS (33)
# [OK]	Got #GP(0x30) (i.e. GDT index 6, Segmentation fault)
# [RUN]	32-bit CS (4f), bogus SS (2b)
# [OK]	Got #NP(0x4c) (i.e. LDT index 9, Bus error)
# [RUN]	32-bit CS (23), bogus SS (57)
# [OK]	Got #GP(0x0) (i.e. Segmentation fault)
# [RUN]	Clear UC_STRICT_RESTORE_SS and corrupt SS
# [OK]	It worked
ok 28 selftests: x86: sigreturn_64
# selftests: x86: iopl_64
# [OK]	CLI faulted
# [OK]	STI faulted
# [OK]	outb to 0x80 worked
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# 	child: set IOPL to 3
# [RUN]	child: write to 0x80
# [OK]	CLI faulted
# [OK]	STI faulted
# [OK]	outb to 0x80 worked
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# [OK]	Child succeeded
# [RUN]	parent: write to 0x80 (should fail)
# [OK]	outb to 0x80 failed
# [OK]	CLI faulted
# [OK]	STI faulted
# 	iopl(3)
# 	Drop privileges
# [RUN]	iopl(3) unprivileged but with IOPL==3
# [RUN]	iopl(0) unprivileged
# [RUN]	iopl(3) unprivileged
# [OK]	Failed as expected
ok 29 selftests: x86: iopl_64
# selftests: x86: ioperm_64
# [OK]	outb to 0x80 failed
# [OK]	outb to 0xed failed
# [RUN]	enable 0x80
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# [RUN]	disable 0x80
# [OK]	outb to 0x80 failed
# [OK]	outb to 0xed failed
# [RUN]	child: check that we inherited permissions
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# [RUN]	child: Extend permissions to 0x81
# [RUN]	child: Drop permissions to 0x80
# [OK]	outb to 0x80 failed
# [OK]	outb to 0x80 failed
# [OK]	outb to 0xed failed
# [RUN]	enable 0x80
# [OK]	outb to 0x80 worked
# [OK]	outb to 0xed failed
# [RUN]	disable 0x80
# [OK]	outb to 0x80 failed
# [OK]	outb to 0xed failed
# [OK]	Child succeeded
# 	Verify that unsharing the bitmap worked
# [OK]	outb to 0x80 worked
# 	Drop privileges
# [RUN]	disable 0x80
# [OK]	it worked
# [RUN]	enable 0x80 again
# [OK]	it failed
ok 30 selftests: x86: ioperm_64
# selftests: x86: protection_keys_64
# has pku: 0
# running PKEY tests for unsupported CPU/OS
ok 31 selftests: x86: protection_keys_64
# selftests: x86: test_vdso_64
# [RUN]	Testing clock_gettime for clock CLOCK_REALTIME (0)...
# 	1592703243.874277468 1592703243.874279945 1592703243.874280100
# [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC (1)...
# 	38.057434990 38.057435414 38.057435549
# [RUN]	Testing clock_gettime for clock CLOCK_PROCESS_CPUTIME_ID (2)...
# 	0.000511917 0.000512569 0.000513104
# [RUN]	Testing clock_gettime for clock CLOCK_THREAD_CPUTIME_ID (3)...
# 	0.000514396 0.000514928 0.000515432
# [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC_RAW (4)...
# 	36.859901097 36.859901462 36.859901594
# [RUN]	Testing clock_gettime for clock CLOCK_REALTIME_COARSE (5)...
# 	1592703243.873355977 1592703243.873355977 1592703243.873355977
# [RUN]	Testing clock_gettime for clock CLOCK_MONOTONIC_COARSE (6)...
# 	38.056508962 38.056508962 38.056508962
# [RUN]	Testing clock_gettime for clock CLOCK_BOOTTIME (7)...
# 	38.057446213 38.057446568 38.057446697
# [RUN]	Testing clock_gettime for clock CLOCK_REALTIME_ALARM (8)...
# 	1592703243.874294924 1592703243.874295411 1592703243.874295887
# [RUN]	Testing clock_gettime for clock CLOCK_BOOTTIME_ALARM (9)...
# 	38.057449863 38.057450360 38.057450848
# [RUN]	Testing clock_gettime for clock CLOCK_SGI_CYCLE (10)...
# [OK]	No such clock.
# [RUN]	Testing clock_gettime for clock CLOCK_TAI (11)...
# 	1592703243.874300587 1592703243.874300943 1592703243.874301081
# [RUN]	Testing clock_gettime for clock invalid (-1)...
# [OK]	No such clock.
# [RUN]	Testing clock_gettime for clock invalid (-2147483648)...
# [OK]	No such clock.
# [RUN]	Testing clock_gettime for clock invalid (2147483647)...
# [OK]	No such clock.
# [RUN]	Testing gettimeofday...
# 	1592703243.874305 1592703243.874305 1592703243.874305
# [OK]	timezones match: minuteswest=-480, dsttime=0
# [RUN]	Testing getcpu...
# [OK]	CPU 0: syscall: cpu 0, node 0 vdso: cpu 0, node 0 vsyscall: cpu 0, node 0
# [OK]	CPU 1: syscall: cpu 1, node 0 vdso: cpu 1, node 0 vsyscall: cpu 1, node 0
# [OK]	CPU 2: syscall: cpu 2, node 0 vdso: cpu 2, node 0 vsyscall: cpu 2, node 0
# [OK]	CPU 3: syscall: cpu 3, node 0 vdso: cpu 3, node 0 vsyscall: cpu 3, node 0
# [OK]	CPU 4: syscall: cpu 4, node 0 vdso: cpu 4, node 0 vsyscall: cpu 4, node 0
# [OK]	CPU 5: syscall: cpu 5, node 0 vdso: cpu 5, node 0 vsyscall: cpu 5, node 0
# [OK]	CPU 6: syscall: cpu 6, node 0 vdso: cpu 6, node 0 vsyscall: cpu 6, node 0
# [OK]	CPU 7: syscall: cpu 7, node 0 vdso: cpu 7, node 0 vsyscall: cpu 7, node 0
ok 32 selftests: x86: test_vdso_64
# selftests: x86: test_vsyscall_64
# 	vsyscall map: ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]
# 	vsyscall permissions are r-x
# [RUN]	test gettimeofday()
# 	vDSO time offsets: 0.000002 0.000001
# [OK]	vDSO gettimeofday()'s timeval was okay
# 	vsyscall time offsets: 0.000003 0.000000
# [OK]	vsyscall gettimeofday()'s timeval was okay
# [RUN]	test time()
# [OK]	vDSO time() is okay
# [OK]	vsyscall time() is okay
# [RUN]	getcpu() on CPU 0
# [OK]	vDSO reported correct CPU
# [OK]	vDSO reported correct node
# [OK]	vsyscall reported correct CPU
# [OK]	vsyscall reported correct node
# [RUN]	getcpu() on CPU 1
# [OK]	vDSO reported correct CPU
# [OK]	vDSO reported correct node
# [OK]	vsyscall reported correct CPU
# [OK]	vsyscall reported correct node
# [RUN]	Checking read access to the vsyscall page
# [OK]	We have read access
# [RUN]	process_vm_readv() from vsyscall page
# [OK]	It worked and read correct data
# [RUN]	checking that vsyscalls are emulated
# [OK]	vsyscalls are emulated (1 instructions in vsyscall page)
ok 33 selftests: x86: test_vsyscall_64
# selftests: x86: mov_ss_trap_64
# 	SS = 0x2b, &SS = 0x0x604188
# 	PR_SET_PTRACER_ANY succeeded
# 	Set up a watchpoint
# 	DR0 = 604188, DR1 = 400a13, DR7 = 7000a
# 	SS = 0x2b, &SS = 0x0x604188
# 	PR_SET_PTRACER_ANY succeeded
# 	Set up a watchpoint
# [RUN]	Read from watched memory (should get SIGTRAP)
# 	Got SIGTRAP with RIP=4008c8, EFLAGS.RF=0
# [RUN]	MOV SS; INT3
# 	Got SIGTRAP with RIP=4008db, EFLAGS.RF=0
# [RUN]	MOV SS; INT 3
# 	Got SIGTRAP with RIP=4008ef, EFLAGS.RF=0
# [RUN]	MOV SS; CS CS INT3
# 	Got SIGTRAP with RIP=400904, EFLAGS.RF=0
# [RUN]	MOV SS; CSx14 INT3
# 	Got SIGTRAP with RIP=400925, EFLAGS.RF=0
# [RUN]	MOV SS; INT 4
# 	Got SIGSEGV with RIP=40094f
# [RUN]	MOV SS; ICEBP
# 	Got SIGTRAP with RIP=400ca3, EFLAGS.RF=0
# [RUN]	MOV SS; CLI
# 	Got SIGSEGV with RIP=400c74
# [RUN]	MOV SS; #PF
# 	Got SIGSEGV with RIP=400c3f
# [RUN]	MOV SS; INT 1
# 	Got SIGSEGV with RIP=400c10
# [RUN]	MOV SS; SYSCALL
# [RUN]	MOV SS; breakpointed NOP
# 	Got SIGTRAP with RIP=400a14, EFLAGS.RF=0
# [RUN]	MOV SS; SYSENTER
# 	Got SIGSEGV with RIP=e29bd569
# [RUN]	MOV SS; INT $0x80
# [OK]	I aten't dead
ok 34 selftests: x86: mov_ss_trap_64
# selftests: x86: syscall_arg_fault_64
# [RUN]	SYSENTER with invalid state
# [OK]	Seems okay
# [RUN]	SYSCALL with invalid state
# [OK]	SYSCALL returned normally
# [RUN]	SYSENTER with TF and invalid state
# [OK]	Seems okay
# [RUN]	SYSCALL with TF and invalid state
# [OK]	SYSCALL returned normally
ok 35 selftests: x86: syscall_arg_fault_64
# selftests: x86: fsgsbase_64
# 	FSGSBASE instructions are disabled
# [RUN]	ARCH_SET_GS to 0x0
# [OK]	GSBASE was set as expected (selector 0x0)
# [OK]	ARCH_GET_GS worked as expected (selector 0x0)
# [RUN]	ARCH_SET_GS to 0x1
# [OK]	GSBASE was set as expected (selector 0x0)
# [OK]	ARCH_GET_GS worked as expected (selector 0x0)
# [RUN]	ARCH_SET_GS to 0x200000000
# [OK]	GSBASE was set as expected (selector 0x0)
# [OK]	ARCH_GET_GS worked as expected (selector 0x0)
# [RUN]	ARCH_SET_GS to 0x0
# [OK]	GSBASE was set as expected (selector 0x0)
# [OK]	ARCH_GET_GS worked as expected (selector 0x0)
# [RUN]	ARCH_SET_GS to 0x200000000
# [OK]	GSBASE was set as expected (selector 0x0)
# [OK]	ARCH_GET_GS worked as expected (selector 0x0)
# [RUN]	ARCH_SET_GS to 0x1
# [OK]	GSBASE was set as expected (selector 0x0)
# [OK]	ARCH_GET_GS worked as expected (selector 0x0)
# [RUN]	ARCH_SET_GS to 0x0 then mov 0 to %gs
# [OK]	GSBASE is 0x0
# [RUN]	ARCH_SET_GS to 0x1 then mov 0 to %gs
# [OK]	GSBASE is 0x0
# [RUN]	ARCH_SET_GS to 0x200000000 then mov 0 to %gs
# [OK]	GSBASE is 0x0
# [RUN]	ARCH_SET_GS to 0x0 then mov 0 to %gs and schedule 
# [OK]	GSBASE is 0x0
# [RUN]	ARCH_SET_GS to 0x1 then mov 0 to %gs and schedule 
# [OK]	GSBASE is 0x0
# [RUN]	ARCH_SET_GS to 0x200000000 then mov 0 to %gs and schedule 
# [OK]	GSBASE is 0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x0
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x1
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x0), then schedule to 0x200000000
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x0
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x1
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x0) and clear gs, then schedule to 0x200000000
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x1
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x0
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x1
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x1
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x1
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x1
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x1), then schedule to 0x200000000
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x200000000
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x0
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x0) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x200000000
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0xa1fa5f343cb85fa4
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x0) and clear gs -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x200000000
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x1
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x1) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x0/0x200000000
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
# 	Before schedule, set selector to 0x1
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x1/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
# 	Before schedule, set selector to 0x2
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x2/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
# 	Before schedule, set selector to 0x3
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x3/0x0
# [RUN]	ARCH_SET_GS(0x200000000), then schedule to 0x200000000
# 	Before schedule, set selector to 0x2b
# 	other thread: ARCH_SET_GS(0x200000000) -- sel is 0x0
# [OK]	GS/BASE remained 0x2b/0x0
# [RUN]	ARCH_SET_GS(0), clear gs, then manipulate GSBASE in a different thread
# 	using LDT slot 0
# [OK]	GSBASE remained 0
# [OK]	GS was reset as expected
ok 36 selftests: x86: fsgsbase_64
# selftests: x86: sysret_rip_64
# [RUN]	sigreturn to 0x800000000000
# [OK]	Got SIGSEGV at RIP=0x800000000000
# [RUN]	sigreturn to 0x1000000000000
# [OK]	Got SIGSEGV at RIP=0x1000000000000
# [RUN]	sigreturn to 0x2000000000000
# [OK]	Got SIGSEGV at RIP=0x2000000000000
# [RUN]	sigreturn to 0x4000000000000
# [OK]	Got SIGSEGV at RIP=0x4000000000000
# [RUN]	sigreturn to 0x8000000000000
# [OK]	Got SIGSEGV at RIP=0x8000000000000
# [RUN]	sigreturn to 0x10000000000000
# [OK]	Got SIGSEGV at RIP=0x10000000000000
# [RUN]	sigreturn to 0x20000000000000
# [OK]	Got SIGSEGV at RIP=0x20000000000000
# [RUN]	sigreturn to 0x40000000000000
# [OK]	Got SIGSEGV at RIP=0x40000000000000
# [RUN]	sigreturn to 0x80000000000000
# [OK]	Got SIGSEGV at RIP=0x80000000000000
# [RUN]	sigreturn to 0x100000000000000
# [OK]	Got SIGSEGV at RIP=0x100000000000000
# [RUN]	sigreturn to 0x200000000000000
# [OK]	Got SIGSEGV at RIP=0x200000000000000
# [RUN]	sigreturn to 0x400000000000000
# [OK]	Got SIGSEGV at RIP=0x400000000000000
# [RUN]	sigreturn to 0x800000000000000
# [OK]	Got SIGSEGV at RIP=0x800000000000000
# [RUN]	sigreturn to 0x1000000000000000
# [OK]	Got SIGSEGV at RIP=0x1000000000000000
# [RUN]	sigreturn to 0x2000000000000000
# [OK]	Got SIGSEGV at RIP=0x2000000000000000
# [RUN]	sigreturn to 0x4000000000000000
# [OK]	Got SIGSEGV at RIP=0x4000000000000000
# [RUN]	sigreturn to 0x8000000000000000
# [OK]	Got SIGSEGV at RIP=0x8000000000000000
# [RUN]	Trying a SYSCALL that falls through to 0x7fffffffe000
# [OK]	We survived
# [RUN]	Trying a SYSCALL that falls through to 0x7ffffffff000
# [OK]	We survived
# [RUN]	Trying a SYSCALL that falls through to 0x800000000000
# [OK]	mremap to 0x7ffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0xfffffffff000
# [OK]	mremap to 0xffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x1000000000000
# [OK]	mremap to 0xfffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x1fffffffff000
# [OK]	mremap to 0x1ffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x2000000000000
# [OK]	mremap to 0x1fffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x3fffffffff000
# [OK]	mremap to 0x3ffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x4000000000000
# [OK]	mremap to 0x3fffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x7fffffffff000
# [OK]	mremap to 0x7ffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x8000000000000
# [OK]	mremap to 0x7fffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0xffffffffff000
# [OK]	mremap to 0xfffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x10000000000000
# [OK]	mremap to 0xffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x1ffffffffff000
# [OK]	mremap to 0x1fffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x20000000000000
# [OK]	mremap to 0x1ffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x3ffffffffff000
# [OK]	mremap to 0x3fffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x40000000000000
# [OK]	mremap to 0x3ffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x7ffffffffff000
# [OK]	mremap to 0x7fffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x80000000000000
# [OK]	mremap to 0x7ffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0xfffffffffff000
# [OK]	mremap to 0xffffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x100000000000000
# [OK]	mremap to 0xfffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x1fffffffffff000
# [OK]	mremap to 0x1ffffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x200000000000000
# [OK]	mremap to 0x1fffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x3fffffffffff000
# [OK]	mremap to 0x3ffffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x400000000000000
# [OK]	mremap to 0x3fffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x7fffffffffff000
# [OK]	mremap to 0x7ffffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x800000000000000
# [OK]	mremap to 0x7fffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0xffffffffffff000
# [OK]	mremap to 0xfffffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x1000000000000000
# [OK]	mremap to 0xffffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x1ffffffffffff000
# [OK]	mremap to 0x1fffffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x2000000000000000
# [OK]	mremap to 0x1ffffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x3ffffffffffff000
# [OK]	mremap to 0x3fffffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x4000000000000000
# [OK]	mremap to 0x3ffffffffffff000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x7ffffffffffff000
# [OK]	mremap to 0x7fffffffffffe000 failed
# [RUN]	Trying a SYSCALL that falls through to 0x8000000000000000
# [OK]	mremap to 0x7ffffffffffff000 failed
ok 37 selftests: x86: sysret_rip_64
# selftests: x86: syscall_numbering_64
# 	Checking for x32... not supported
# [RUN]	Checking syscalls 512-547
# [RUN]	Checking some 64-bit syscalls in x32 range
# [RUN]	Checking numbers above 2^32-1
# [OK]	They all returned -ENOSYS
ok 38 selftests: x86: syscall_numbering_64
# selftests: x86: ldt_gdt_64
# [NOTE]	set_thread_area is available; will use GDT index 12
# [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000000A
# [OK]	LDT entry 0 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07B00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00907B00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07300 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07100 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07500 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00507700 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507F00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507D00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507B00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
# [RUN]	Test fork
# [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 0 is invalid
# [NOTE]	set_thread_area is available; will use GDT index 12
# [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000000A
# [OK]	LDT entry 0 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 1 is invalid
# [OK]	LDT entry 2 has AR 0x00C0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D0FB00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07B00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00907B00 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07300 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07100 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00D07500 and limit 0x0000AFFF
# [OK]	LDT entry 2 has AR 0x00507700 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507F00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507D00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507B00 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
# [OK]	LDT entry 2 has AR 0x00507900 and limit 0x0000000A
# [RUN]	Test fork
# [OK]	Child succeeded
# [RUN]	Test size
# [DONE]	Size test
# [OK]	modify_ldt failure 22
# [OK]	LDT entry 0 has AR 0x0000F300 and limit 0x00000000
# [OK]	LDT entry 0 has AR 0x00007300 and limit 0x00000000
# [OK]	LDT entry 0 has AR 0x0000F100 and limit 0x00000000
# [OK]	LDT entry 0 has AR 0x00007300 and limit 0x00000000
# [OK]	LDT entry 0 has AR 0x00007100 and limit 0x00000001
# [OK]	LDT entry 0 has AR 0x00007100 and limit 0x00000000
# [OK]	LDT entry 0 is invalid
# [OK]	LDT entry 0 has AR 0x0040F300 and limit 0x000FFFFF
# [OK]	LDT entry 0 has AR 0x00C0F300 and limit 0xFFFFFFFF
# [OK]	LDT entry 0 has AR 0x00C0F100 and limit 0xFFFFFFFF
# [OK]	LDT entry 0 has AR 0x00C0F700 and limit 0xFFFFFFFF
# [OK]	LDT entry 0 has AR 0x00C0F500 and limit 0xFFFFFFFF
# [OK]	LDT entry 0 is invalid
# [RUN]	Cross-CPU LDT invalidation
# [OK]	All 5 iterations succeeded
# [RUN]	Test exec
# [OK]	LDT entry 0 has AR 0x0040FB00 and limit 0x0000002A
# [OK]	Child succeeded
# [OK]	Invalidate DS with set_thread_area: new DS = 0x0
# [OK]	Invalidate ES with set_thread_area: new ES = 0x0
# [OK]	Invalidate FS with set_thread_area: new FS = 0x0
# [OK]	New FSBASE was zero
# [OK]	Invalidate GS with set_thread_area: new GS = 0x0
# [OK]	New GSBASE was zero
ok 39 selftests: x86: ldt_gdt_64
# selftests: x86: ptrace_syscall_64
# [RUN]	Check int80 return regs
# [OK]	getpid() preserves regs
# [OK]	kill(getpid(), SIGUSR1) preserves regs
# [RUN]	ptrace-induced syscall restart
# [RUN]	SYSEMU
# [OK]	Initial nr and args are correct
# [RUN]	Restart the syscall (ip = 0x7f877c0d2f49)
# [OK]	Restarted nr and args are correct
# [RUN]	Change nr and args and restart the syscall (ip = 0x7f877c0d2f49)
# [OK]	Replacement nr and args are correct
# [OK]	Child exited cleanly
# [RUN]	kernel syscall restart under ptrace
# [RUN]	SYSCALL
# [OK]	Initial nr and args are correct
# [RUN]	SYSCALL
# [OK]	Args after SIGUSR1 are correct (ax = -514)
# [OK]	Child got SIGUSR1
# [RUN]	Step again
# [OK]	pause(2) restarted correctly
ok 40 selftests: x86: ptrace_syscall_64
make: Leaving directory '/usr/src/perf_selftests-x86_64-rhel-7.6-d83f959b5e7a6378a4afbff23de2a2d064d95749/tools/testing/selftests/x86'

[-- Attachment #6: job.yaml --]
[-- Type: text/plain, Size: 4878 bytes --]

---

#! jobs/kernel-selftests-x86.yaml
suite: kernel-selftests
testcase: kernel-selftests
category: functional
need_memory: 2G
need_cpu: 2
kernel-selftests:
  group: kselftests-x86
kernel_cmdline: erst_disable
job_origin: "/lkp-src/allot/cyclic:p1:linux-devel:devel-hourly/lkp-skl-d01/kernel-selftests-x86.yaml"

#! queue options
queue_cmdline_keys:
- branch
- commit
queue: bisect
testbox: lkp-skl-d01
tbox_group: lkp-skl-d01
kconfig: x86_64-rhel-7.6
submit_id: 5eeea2bf81e6c221c69cbf90
job_file: "/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-8646-dktou8-0.yaml"
id: 5a08a9af18d0fc664f0fed4d83c35e5c19e6014a
queuer_version: "/lkp-src"

#! hosts/lkp-skl-d01
model: Skylake
nr_cpu: 8
memory: 16G
nr_hdd_partitions: 1
hdd_partitions: "/dev/disk/by-id/ata-WDC_WD10EZEX-75WN4A0_WD-WCC6Y2JD9SLU-part1"
swap_partitions: "/dev/disk/by-id/ata-WDC_WD10EZEX-75WN4A0_WD-WCC6Y2JD9SLU-part3"
rootfs_partition: "/dev/disk/by-id/ata-WDC_WD10EZEX-75WN4A0_WD-WCC6Y2JD9SLU-part2"
brand: Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz
cpu_info: skylake i7-6700
bios_version: 1.2.8

#! include/category/functional
kmsg: 
heartbeat: 
meminfo: 

#! include/queue/cyclic
commit: d83f959b5e7a6378a4afbff23de2a2d064d95749

#! include/testbox/lkp-skl-d01
need_kconfig_hw:
- CONFIG_E1000E=y
- CONFIG_SATA_AHCI
ucode: '0xdc'

#! include/kernel-selftests
need_kernel_headers: true
need_kernel_selftests: true
need_kconfig:
- CONFIG_POSIX_TIMERS=y ~ ">= v4.10-rc1"
enqueue_time: 2020-06-21 07:58:55.999800978 +08:00
_id: 5eeea2bf81e6c221c69cbf90
_rt: "/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749"

#! schedule options
user: lkp
compiler: gcc-9
head_commit: 5738b9d0c91e26c87c93a03972cc1a5a809d4af6
base_commit: b3a9e3b9622ae10064826dccb4f7a52bd88c7407
branch: linux-devel/devel-hourly-2020061608
rootfs: debian-x86_64-20191114.cgz
result_root: "/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/0"
scheduler_version: "/lkp/lkp/.src-20200619-190700"
LKP_SERVER: inn
arch: x86_64
max_uptime: 3600
initrd: "/osimage/debian/debian-x86_64-20191114.cgz"
bootloader_append:
- root=/dev/ram0
- user=lkp
- job=/lkp/jobs/scheduled/lkp-skl-d01/kernel-selftests-kselftests-x86-ucode=0xdc-debian-x86_64-20191114.cgz-d83f959b5e7a6378a4afbff23de2a2d064d95749-20200621-8646-dktou8-0.yaml
- ARCH=x86_64
- kconfig=x86_64-rhel-7.6
- branch=linux-devel/devel-hourly-2020061608
- commit=d83f959b5e7a6378a4afbff23de2a2d064d95749
- BOOT_IMAGE=/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/vmlinuz-5.7.0-01787-gd83f959b5e7a6
- erst_disable
- max_uptime=3600
- RESULT_ROOT=/result/kernel-selftests/kselftests-x86-ucode=0xdc/lkp-skl-d01/debian-x86_64-20191114.cgz/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/0
- LKP_SERVER=inn
- nokaslr
- selinux=0
- debug
- apic=debug
- sysrq_always_enabled
- rcupdate.rcu_cpu_stall_timeout=100
- net.ifnames=0
- printk.devkmsg=on
- panic=-1
- softlockup_panic=1
- nmi_watchdog=panic
- oops=panic
- load_ramdisk=2
- prompt_ramdisk=0
- drbd.minor_count=8
- systemd.log_level=err
- ignore_loglevel
- console=tty0
- earlyprintk=ttyS0,115200
- console=ttyS0,115200
- vga=normal
- rw
modules_initrd: "/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/modules.cgz"
bm_initrd: "/osimage/deps/debian-x86_64-20180403.cgz/run-ipconfig_2018-04-03.cgz,/osimage/deps/debian-x86_64-20180403.cgz/lkp_2019-08-05.cgz,/osimage/deps/debian-x86_64-20180403.cgz/rsync-rootfs_2018-04-03.cgz,/osimage/deps/debian-x86_64-20180403.cgz/kernel-selftests_20200428.cgz,/osimage/pkg/debian-x86_64-20180403.cgz/kernel-selftests-x86_64-468f787f-1_20200612.cgz,/osimage/deps/debian-x86_64-20180403.cgz/hw_2020-01-02.cgz"
linux_headers_initrd: "/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/linux-headers.cgz"
linux_selftests_initrd: "/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/linux-selftests.cgz"
ucode_initrd: "/osimage/ucode/intel-ucode-20191114.cgz"
lkp_initrd: "/osimage/user/lkp/lkp-x86_64.cgz"
site: inn

#! /lkp/lkp/.src-20200618-180844/include/site/inn
LKP_CGI_PORT: 80
LKP_CIFS_PORT: 139
oom-killer: 
watchdog: 

#! runtime status
last_kernel: 4.20.0
schedule_notify_address: 

#! user overrides
kernel: "/pkg/linux/x86_64-rhel-7.6/gcc-9/d83f959b5e7a6378a4afbff23de2a2d064d95749/vmlinuz-5.7.0-01787-gd83f959b5e7a6"
dequeue_time: 2020-06-21 08:10:16.603357361 +08:00

#! /lkp/lkp/.src-20200619-190700/include/site/inn
job_state: finished
loadavg: 0.86 0.21 0.07 3/175 2088
start_time: '1592698265'
end_time: '1592698269'
version: "/lkp/lkp/.src-20200619-190732:c0ef8a7a:3391efd8c"

[-- Attachment #7: reproduce --]
[-- Type: text/plain, Size: 165 bytes --]

 "ln" "-sf" "/usr/bin/clang"
 "ln" "-sf" "/usr/bin/llc"
 "sed" "-i" "s/default_timeout=45/default_timeout=300/" "kselftest/runner.sh"
 "make" "run_tests" "-C" "x86"

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

* Re: [cpufreq] d83f959b5e: kmsg.cpufreq:cpufreq_online:Failed_to_initialize_policy_for_cpu:#(-#)
  2020-06-22  0:54   ` [cpufreq] d83f959b5e: kmsg.cpufreq:cpufreq_online:Failed_to_initialize_policy_for_cpu:#(-#) kernel test robot
@ 2020-06-23  9:25     ` Quentin Perret
  0 siblings, 0 replies; 14+ messages in thread
From: Quentin Perret @ 2020-06-23  9:25 UTC (permalink / raw)
  To: kernel test robot
  Cc: rjw, rafael, viresh.kumar, arnd, mpe, benh, paulus, mingo,
	peterz, juri.lelli, vincent.guittot, linuxppc-dev, linux-kernel,
	linux-pm, kernel-team, tkjos, adharmap, lkp

Hi,

Thanks for the report.

On Monday 22 Jun 2020 at 08:54:57 (+0800), kernel test robot wrote:
> Greeting,
> 
> FYI, we noticed the following commit (built with gcc-9):
> 
> commit: d83f959b5e7a6378a4afbff23de2a2d064d95749 ("[PATCH 2/2] cpufreq: Specify default governor on command line")
> url: https://github.com/0day-ci/linux/commits/Quentin-Perret/cpufreq-Specify-the-default-governor-on-command-line/20200616-005920
> base: https://git.kernel.org/cgit/linux/kernel/git/rafael/linux-pm.git linux-next
> 
> in testcase: kernel-selftests
> with following parameters:
> 
> 	group: kselftests-x86
> 	ucode: 0xdc
> 
> test-description: The kernel contains a set of "self tests" under the tools/testing/selftests/ directory. These are intended to be small unit tests to exercise individual code paths in the kernel.
> test-url: https://www.kernel.org/doc/Documentation/kselftest.txt
> 
> 
> on test machine: 8 threads Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz with 16G memory
> 
> caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
> 
> 
> 
> 
> If you fix the issue, kindly add following tag
> Reported-by: kernel test robot <rong.a.chen@intel.com>
> 
> 
> 
> [    8.715369] intel_pstate: Intel P-state driver initializing
> [    8.721146] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 0 (-61)
> [    8.728900] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 1 (-61)
> [    8.736615] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 2 (-61)
> [    8.744400] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 3 (-61)
> [    8.752222] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 4 (-61)
> [    8.760010] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 5 (-61)
> [    8.768077] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 6 (-61)
> [    8.775891] cpufreq: cpufreq_online: Failed to initialize policy for cpu: 7 (-61)

That, I think, is because of the issue I reported here:

    https://lore.kernel.org/lkml/20200615174141.GA235811@google.com/

The v2 (to be posted shortly) will address this.

Thanks,
Quentin

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

end of thread, other threads:[~2020-06-23  9:25 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-15 16:55 [PATCH 0/2] cpufreq: Specify the default governor on command line Quentin Perret
2020-06-15 16:55 ` [PATCH 1/2] cpufreq: Register governors at core_initcall Quentin Perret
2020-06-16  4:28   ` Viresh Kumar
2020-06-16  8:31     ` Quentin Perret
2020-06-15 16:55 ` [PATCH 2/2] cpufreq: Specify default governor on command line Quentin Perret
2020-06-15 17:41   ` Quentin Perret
2020-06-16  4:31   ` Viresh Kumar
2020-06-16  8:31     ` Quentin Perret
2020-06-16  9:27       ` Viresh Kumar
2020-06-16  9:48         ` Quentin Perret
2020-06-16  9:54           ` Viresh Kumar
2020-06-16  9:56             ` Quentin Perret
2020-06-22  0:54   ` [cpufreq] d83f959b5e: kmsg.cpufreq:cpufreq_online:Failed_to_initialize_policy_for_cpu:#(-#) kernel test robot
2020-06-23  9:25     ` Quentin Perret

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).