All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH tip/core/rcu 0/2] Callback-offloading changes for 3.17
@ 2014-07-07 22:48 Paul E. McKenney
  2014-07-11 13:35 ` [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-07-07 22:48 UTC (permalink / raw)
  To: linux-kernel
  Cc: mingo, laijs, dipankar, akpm, mathieu.desnoyers, josh, niv, tglx,
	peterz, rostedt, dhowells, edumazet, dvhart, fweisbec, oleg, sbw

Hello!

This series provides a couple of callback-offloading changes:

1.	Parallelize and economize NOCB kthread wakeups to better handle
	cases where callback offloading is used on workloads that have
	many context switches and thus many grace periods.

2.	Don't offload callbacks for a given CPU unless it has been
	explicitly requested for that CPU, either directly at build
	time or boot time, or indirectly at boot time due to that
	CPU being a nohz_full CPU.

							Thanx, Paul

------------------------------------------------------------------------

 b/Documentation/kernel-parameters.txt |    7 
 b/init/Kconfig                        |    4 
 b/kernel/rcu/tree.h                   |   28 +++
 b/kernel/rcu/tree_plugin.h            |  255 ++++++++++++++++++++++++++++------
 4 files changed, 249 insertions(+), 45 deletions(-)


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

* [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-07-07 22:48 [PATCH tip/core/rcu 0/2] Callback-offloading changes for 3.17 Paul E. McKenney
@ 2014-07-11 13:35 ` Paul E. McKenney
  2014-07-11 13:35   ` [PATCH tip/core/rcu 2/2] rcu: Don't offload callbacks unless specifically requested Paul E. McKenney
  2014-08-08  8:40   ` [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups Amit Shah
  0 siblings, 2 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-07-11 13:35 UTC (permalink / raw)
  To: linux-kernel
  Cc: mingo, laijs, dipankar, akpm, mathieu.desnoyers, josh, niv, tglx,
	peterz, rostedt, dhowells, edumazet, dvhart, fweisbec, oleg, sbw,
	Paul E. McKenney

From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>

An 80-CPU system with a context-switch-heavy workload can require so
many NOCB kthread wakeups that the RCU grace-period kthreads spend several
tens of percent of a CPU just awakening things.  This clearly will not
scale well: If you add enough CPUs, the RCU grace-period kthreads would
get behind, increasing grace-period latency.

To avoid this problem, this commit divides the NOCB kthreads into leaders
and followers, where the grace-period kthreads awaken the leaders each of
whom in turn awakens its followers.  By default, the number of groups of
kthreads is the square root of the number of CPUs, but this default may
be overridden using the rcutree.rcu_nocb_leader_stride boot parameter.
This reduces the number of wakeups done per grace period by the RCU
grace-period kthread by the square root of the number of CPUs, but of
course by shifting those wakeups to the leaders.  In addition, because
the leaders do grace periods on behalf of their respective followers,
the number of wakeups of the followers decreases by up to a factor of two.
Instead of being awakened once when new callbacks arrive and again
at the end of the grace period, the followers are awakened only at
the end of the grace period.

For a numerical example, in a 4096-CPU system, the grace-period kthread
would awaken 64 leaders, each of which would awaken its 63 followers
at the end of the grace period.  This compares favorably with the 79
wakeups for the grace-period kthread on an 80-CPU system.

Reported-by: Rik van Riel <riel@redhat.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
---
 Documentation/kernel-parameters.txt |   7 +
 kernel/rcu/tree.h                   |  28 +++-
 kernel/rcu/tree_plugin.h            | 252 ++++++++++++++++++++++++++++++------
 3 files changed, 244 insertions(+), 43 deletions(-)

diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 910c3829f81d..770662c42c9f 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -2802,6 +2802,13 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
 			quiescent states.  Units are jiffies, minimum
 			value is one, and maximum value is HZ.
 
+	rcutree.rcu_nocb_leader_stride= [KNL]
+			Set the number of NOCB kthread groups, which
+			defaults to the square root of the number of
+			CPUs.  Larger numbers reduces the wakeup overhead
+			on the per-CPU grace-period kthreads, but increases
+			that same overhead on each group's leader.
+
 	rcutree.qhimark= [KNL]
 			Set threshold of queued RCU callbacks beyond which
 			batch limiting is disabled.
diff --git a/kernel/rcu/tree.h b/kernel/rcu/tree.h
index 0f69a79c5b7d..e996d1e53c84 100644
--- a/kernel/rcu/tree.h
+++ b/kernel/rcu/tree.h
@@ -334,11 +334,29 @@ struct rcu_data {
 	struct rcu_head **nocb_tail;
 	atomic_long_t nocb_q_count;	/* # CBs waiting for kthread */
 	atomic_long_t nocb_q_count_lazy; /*  (approximate). */
+	struct rcu_head *nocb_follower_head; /* CBs ready to invoke. */
+	struct rcu_head **nocb_follower_tail;
+	atomic_long_t nocb_follower_count; /* # CBs ready to invoke. */
+	atomic_long_t nocb_follower_count_lazy; /*  (approximate). */
 	int nocb_p_count;		/* # CBs being invoked by kthread */
 	int nocb_p_count_lazy;		/*  (approximate). */
 	wait_queue_head_t nocb_wq;	/* For nocb kthreads to sleep on. */
 	struct task_struct *nocb_kthread;
 	bool nocb_defer_wakeup;		/* Defer wakeup of nocb_kthread. */
+
+	/* The following fields are used by the leader, hence own cacheline. */
+	struct rcu_head *nocb_gp_head ____cacheline_internodealigned_in_smp;
+					/* CBs waiting for GP. */
+	struct rcu_head **nocb_gp_tail;
+	long nocb_gp_count;
+	long nocb_gp_count_lazy;
+	bool nocb_leader_wake;		/* Is the nocb leader thread awake? */
+	struct rcu_data *nocb_next_follower;
+					/* Next follower in wakeup chain. */
+
+	/* The following fields are used by the follower, hence new cachline. */
+	struct rcu_data *nocb_leader ____cacheline_internodealigned_in_smp;
+					/* Leader CPU takes GP-end wakeups. */
 #endif /* #ifdef CONFIG_RCU_NOCB_CPU */
 
 	/* 8) RCU CPU stall data. */
@@ -587,8 +605,14 @@ static bool rcu_nohz_full_cpu(struct rcu_state *rsp);
 /* Sum up queue lengths for tracing. */
 static inline void rcu_nocb_q_lengths(struct rcu_data *rdp, long *ql, long *qll)
 {
-	*ql = atomic_long_read(&rdp->nocb_q_count) + rdp->nocb_p_count;
-	*qll = atomic_long_read(&rdp->nocb_q_count_lazy) + rdp->nocb_p_count_lazy;
+	*ql = atomic_long_read(&rdp->nocb_q_count) +
+	      rdp->nocb_p_count +
+	      atomic_long_read(&rdp->nocb_follower_count) +
+	      rdp->nocb_p_count + rdp->nocb_gp_count;
+	*qll = atomic_long_read(&rdp->nocb_q_count_lazy) +
+	       rdp->nocb_p_count_lazy +
+	       atomic_long_read(&rdp->nocb_follower_count_lazy) +
+	       rdp->nocb_p_count_lazy + rdp->nocb_gp_count_lazy;
 }
 #else /* #ifdef CONFIG_RCU_NOCB_CPU */
 static inline void rcu_nocb_q_lengths(struct rcu_data *rdp, long *ql, long *qll)
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
index 02ac0fb186b8..b27b86c7bbfa 100644
--- a/kernel/rcu/tree_plugin.h
+++ b/kernel/rcu/tree_plugin.h
@@ -2060,6 +2060,22 @@ bool rcu_is_nocb_cpu(int cpu)
 #endif /* #ifndef CONFIG_RCU_NOCB_CPU_ALL */
 
 /*
+ * Kick the leader kthread for this NOCB group.
+ */
+static void wake_nocb_leader(struct rcu_data *rdp, bool force)
+{
+	struct rcu_data *rdp_leader = rdp->nocb_leader;
+
+	if (!ACCESS_ONCE(rdp_leader->nocb_kthread))
+		return;
+	if (!ACCESS_ONCE(rdp_leader->nocb_leader_wake) || force) {
+		/* Prior xchg orders against prior callback enqueue. */
+		ACCESS_ONCE(rdp_leader->nocb_leader_wake) = true;
+		wake_up(&rdp_leader->nocb_wq);
+	}
+}
+
+/*
  * Enqueue the specified string of rcu_head structures onto the specified
  * CPU's no-CBs lists.  The CPU is specified by rdp, the head of the
  * string by rhp, and the tail of the string by rhtp.  The non-lazy/lazy
@@ -2093,7 +2109,8 @@ static void __call_rcu_nocb_enqueue(struct rcu_data *rdp,
 	len = atomic_long_read(&rdp->nocb_q_count);
 	if (old_rhpp == &rdp->nocb_head) {
 		if (!irqs_disabled_flags(flags)) {
-			wake_up(&rdp->nocb_wq); /* ... if queue was empty ... */
+			/* ... if queue was empty ... */
+			wake_nocb_leader(rdp, false);
 			trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
 					    TPS("WakeEmpty"));
 		} else {
@@ -2103,7 +2120,8 @@ static void __call_rcu_nocb_enqueue(struct rcu_data *rdp,
 		}
 		rdp->qlen_last_fqs_check = 0;
 	} else if (len > rdp->qlen_last_fqs_check + qhimark) {
-		wake_up_process(t); /* ... or if many callbacks queued. */
+		/* ... or if many callbacks queued. */
+		wake_nocb_leader(rdp, true);
 		rdp->qlen_last_fqs_check = LONG_MAX / 2;
 		trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu, TPS("WakeOvf"));
 	} else {
@@ -2213,13 +2231,150 @@ static void rcu_nocb_wait_gp(struct rcu_data *rdp)
 }
 
 /*
+ * Leaders come here to wait for additional callbacks to show up.
+ * This function does not return until callbacks appear.
+ */
+static void nocb_leader_wait(struct rcu_data *my_rdp)
+{
+	bool firsttime = true;
+	bool gotcbs;
+	struct rcu_data *rdp;
+	struct rcu_head **tail;
+
+wait_again:
+
+	/* Wait for callbacks to appear. */
+	if (!rcu_nocb_poll) {
+		trace_rcu_nocb_wake(my_rdp->rsp->name, my_rdp->cpu, "Sleep");
+		wait_event_interruptible(my_rdp->nocb_wq,
+					 ACCESS_ONCE(my_rdp->nocb_leader_wake));
+		/* Memory barrier handled by smp_mb() calls below and repoll. */
+	} else if (firsttime) {
+		firsttime = false; /* Don't drown trace log with "Poll"! */
+		trace_rcu_nocb_wake(my_rdp->rsp->name, my_rdp->cpu, "Poll");
+	}
+
+	/*
+	 * Each pass through the following loop checks a follower for CBs.
+	 * We are our own first follower.  Any CBs found are moved to
+	 * nocb_gp_head, where they await a grace period.
+	 */
+	gotcbs = false;
+	for (rdp = my_rdp; rdp; rdp = rdp->nocb_next_follower) {
+		rdp->nocb_gp_head = ACCESS_ONCE(rdp->nocb_head);
+		if (!rdp->nocb_gp_head)
+			continue;  /* No CBs here, try next follower. */
+
+		/* Move callbacks to wait-for-GP list, which is empty. */
+		ACCESS_ONCE(rdp->nocb_head) = NULL;
+		rdp->nocb_gp_tail = xchg(&rdp->nocb_tail, &rdp->nocb_head);
+		rdp->nocb_gp_count = atomic_long_xchg(&rdp->nocb_q_count, 0);
+		rdp->nocb_gp_count_lazy =
+			atomic_long_xchg(&rdp->nocb_q_count_lazy, 0);
+		gotcbs = true;
+	}
+
+	/*
+	 * If there were no callbacks, sleep a bit, rescan after a
+	 * memory barrier, and go retry.
+	 */
+	if (unlikely(!gotcbs)) {
+		if (!rcu_nocb_poll)
+			trace_rcu_nocb_wake(my_rdp->rsp->name, my_rdp->cpu,
+					    "WokeEmpty");
+		flush_signals(current);
+		schedule_timeout_interruptible(1);
+
+		/* Rescan in case we were a victim of memory ordering. */
+		my_rdp->nocb_leader_wake = false;
+		smp_mb();  /* Ensure _wake false before scan. */
+		for (rdp = my_rdp; rdp; rdp = rdp->nocb_next_follower)
+			if (ACCESS_ONCE(rdp->nocb_head)) {
+				/* Found CB, so short-circuit next wait. */
+				my_rdp->nocb_leader_wake = true;
+				break;
+			}
+		goto wait_again;
+	}
+
+	/* Wait for one grace period. */
+	rcu_nocb_wait_gp(my_rdp);
+
+	/*
+	 * We left ->nocb_leader_wake set to reduce cache thrashing.
+	 * We clear it now, but recheck for new callbacks while
+	 * traversing our follower list.
+	 */
+	my_rdp->nocb_leader_wake = false;
+	smp_mb(); /* Ensure _wake false before scan of ->nocb_head. */
+
+	/* Each pass through the following loop wakes a follower, if needed. */
+	for (rdp = my_rdp; rdp; rdp = rdp->nocb_next_follower) {
+		if (ACCESS_ONCE(rdp->nocb_head))
+			my_rdp->nocb_leader_wake = true; /* No need to wait. */
+		if (!rdp->nocb_gp_head)
+			continue; /* No CBs, so no need to wake follower. */
+
+		/* Append callbacks to follower's "done" list. */
+		tail = xchg(&rdp->nocb_follower_tail, rdp->nocb_gp_tail);
+		*tail = rdp->nocb_gp_head;
+		atomic_long_add(rdp->nocb_gp_count, &rdp->nocb_follower_count);
+		atomic_long_add(rdp->nocb_gp_count_lazy,
+				&rdp->nocb_follower_count_lazy);
+		if (rdp != my_rdp && tail == &rdp->nocb_follower_head) {
+			/*
+			 * List was empty, wake up the follower.
+			 * Memory barriers supplied by atomic_long_add().
+			 */
+			wake_up(&rdp->nocb_wq);
+		}
+	}
+
+	/* If we (the leader) don't have CBs, go wait some more. */
+	if (!my_rdp->nocb_follower_head)
+		goto wait_again;
+}
+
+/*
+ * Followers come here to wait for additional callbacks to show up.
+ * This function does not return until callbacks appear.
+ */
+static void nocb_follower_wait(struct rcu_data *rdp)
+{
+	bool firsttime = true;
+
+	for (;;) {
+		if (!rcu_nocb_poll) {
+			trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
+					    "FollowerSleep");
+			wait_event_interruptible(rdp->nocb_wq,
+						 ACCESS_ONCE(rdp->nocb_follower_head));
+		} else if (firsttime) {
+			/* Don't drown trace log with "Poll"! */
+			firsttime = false;
+			trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu, "Poll");
+		}
+		if (smp_load_acquire(&rdp->nocb_follower_head)) {
+			/* ^^^ Ensure CB invocation follows _head test. */
+			return;
+		}
+		if (!rcu_nocb_poll)
+			trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
+					    "WokeEmpty");
+		flush_signals(current);
+		schedule_timeout_interruptible(1);
+	}
+}
+
+/*
  * Per-rcu_data kthread, but only for no-CBs CPUs.  Each kthread invokes
- * callbacks queued by the corresponding no-CBs CPU.
+ * callbacks queued by the corresponding no-CBs CPU, however, there is
+ * an optional leader-follower relationship so that the grace-period
+ * kthreads don't have to do quite so many wakeups.
  */
 static int rcu_nocb_kthread(void *arg)
 {
 	int c, cl;
-	bool firsttime = 1;
 	struct rcu_head *list;
 	struct rcu_head *next;
 	struct rcu_head **tail;
@@ -2227,41 +2382,22 @@ static int rcu_nocb_kthread(void *arg)
 
 	/* Each pass through this loop invokes one batch of callbacks */
 	for (;;) {
-		/* If not polling, wait for next batch of callbacks. */
-		if (!rcu_nocb_poll) {
-			trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
-					    TPS("Sleep"));
-			wait_event_interruptible(rdp->nocb_wq, rdp->nocb_head);
-			/* Memory barrier provide by xchg() below. */
-		} else if (firsttime) {
-			firsttime = 0;
-			trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
-					    TPS("Poll"));
-		}
-		list = ACCESS_ONCE(rdp->nocb_head);
-		if (!list) {
-			if (!rcu_nocb_poll)
-				trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
-						    TPS("WokeEmpty"));
-			schedule_timeout_interruptible(1);
-			flush_signals(current);
-			continue;
-		}
-		firsttime = 1;
-		trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu,
-				    TPS("WokeNonEmpty"));
-
-		/*
-		 * Extract queued callbacks, update counts, and wait
-		 * for a grace period to elapse.
-		 */
-		ACCESS_ONCE(rdp->nocb_head) = NULL;
-		tail = xchg(&rdp->nocb_tail, &rdp->nocb_head);
-		c = atomic_long_xchg(&rdp->nocb_q_count, 0);
-		cl = atomic_long_xchg(&rdp->nocb_q_count_lazy, 0);
-		ACCESS_ONCE(rdp->nocb_p_count) += c;
-		ACCESS_ONCE(rdp->nocb_p_count_lazy) += cl;
-		rcu_nocb_wait_gp(rdp);
+		/* Wait for callbacks. */
+		if (rdp->nocb_leader == rdp)
+			nocb_leader_wait(rdp);
+		else
+			nocb_follower_wait(rdp);
+
+		/* Pull the ready-to-invoke callbacks onto local list. */
+		list = ACCESS_ONCE(rdp->nocb_follower_head);
+		BUG_ON(!list);
+		trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu, "WokeNonEmpty");
+		ACCESS_ONCE(rdp->nocb_follower_head) = NULL;
+		tail = xchg(&rdp->nocb_follower_tail, &rdp->nocb_follower_head);
+		c = atomic_long_xchg(&rdp->nocb_follower_count, 0);
+		cl = atomic_long_xchg(&rdp->nocb_follower_count_lazy, 0);
+		rdp->nocb_p_count += c;
+		rdp->nocb_p_count_lazy += cl;
 
 		/* Each pass through the following loop invokes a callback. */
 		trace_rcu_batch_start(rdp->rsp->name, cl, c, -1);
@@ -2305,7 +2441,7 @@ static void do_nocb_deferred_wakeup(struct rcu_data *rdp)
 	if (!rcu_nocb_need_deferred_wakeup(rdp))
 		return;
 	ACCESS_ONCE(rdp->nocb_defer_wakeup) = false;
-	wake_up(&rdp->nocb_wq);
+	wake_nocb_leader(rdp, false);
 	trace_rcu_nocb_wake(rdp->rsp->name, rdp->cpu, TPS("DeferredWakeEmpty"));
 }
 
@@ -2314,19 +2450,53 @@ static void __init rcu_boot_init_nocb_percpu_data(struct rcu_data *rdp)
 {
 	rdp->nocb_tail = &rdp->nocb_head;
 	init_waitqueue_head(&rdp->nocb_wq);
+	rdp->nocb_follower_tail = &rdp->nocb_follower_head;
 }
 
-/* Create a kthread for each RCU flavor for each no-CBs CPU. */
+/* How many follower CPU IDs per leader?  Default of -1 for sqrt(nr_cpu_ids). */
+static int rcu_nocb_leader_stride = -1;
+module_param(rcu_nocb_leader_stride, int, 0444);
+
+/*
+ * Create a kthread for each RCU flavor for each no-CBs CPU.
+ * Also initialize leader-follower relationships.
+ */
 static void __init rcu_spawn_nocb_kthreads(struct rcu_state *rsp)
 {
 	int cpu;
+	int ls = rcu_nocb_leader_stride;
+	int nl = 0;  /* Next leader. */
 	struct rcu_data *rdp;
+	struct rcu_data *rdp_leader = NULL;  /* Suppress misguided gcc warn. */
+	struct rcu_data *rdp_prev = NULL;
 	struct task_struct *t;
 
 	if (rcu_nocb_mask == NULL)
 		return;
+	if (ls == -1) {
+		ls = int_sqrt(nr_cpu_ids);
+		rcu_nocb_leader_stride = ls;
+	}
+
+	/*
+	 * Each pass through this loop sets up one rcu_data structure and
+	 * spawns one rcu_nocb_kthread().
+	 */
 	for_each_cpu(cpu, rcu_nocb_mask) {
 		rdp = per_cpu_ptr(rsp->rda, cpu);
+		if (rdp->cpu >= nl) {
+			/* New leader, set up for followers & next leader. */
+			nl = DIV_ROUND_UP(rdp->cpu + 1, ls) * ls;
+			rdp->nocb_leader = rdp;
+			rdp_leader = rdp;
+		} else {
+			/* Another follower, link to previous leader. */
+			rdp->nocb_leader = rdp_leader;
+			rdp_prev->nocb_next_follower = rdp;
+		}
+		rdp_prev = rdp;
+
+		/* Spawn the kthread for this CPU. */
 		t = kthread_run(rcu_nocb_kthread, rdp,
 				"rcuo%c/%d", rsp->abbr, cpu);
 		BUG_ON(IS_ERR(t));
-- 
1.8.1.5


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

* [PATCH tip/core/rcu 2/2] rcu: Don't offload callbacks unless specifically requested
  2014-07-11 13:35 ` [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups Paul E. McKenney
@ 2014-07-11 13:35   ` Paul E. McKenney
  2014-07-11 13:47     ` Frederic Weisbecker
  2014-08-08  8:40   ` [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups Amit Shah
  1 sibling, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-07-11 13:35 UTC (permalink / raw)
  To: linux-kernel
  Cc: mingo, laijs, dipankar, akpm, mathieu.desnoyers, josh, niv, tglx,
	peterz, rostedt, dhowells, edumazet, dvhart, fweisbec, oleg, sbw,
	Paul E. McKenney

From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>

Enabling NO_HZ_FULL currently has the side effect of enabling callback
offloading on all CPUs.  This results in lots of additional rcuo kthreads,
and can also increase context switching and wakeups, even in cases where
callback offloading is neither needed nor particularly desirable.  This
commit therefore enables callback offloading on a given CPU only if
specifically requested at build time or boot time, or if that CPU has
been specifically designated (again, either at build time or boot time)
as a nohz_full CPU.

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
---
 init/Kconfig             | 4 ++--
 kernel/rcu/tree_plugin.h | 3 +++
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/init/Kconfig b/init/Kconfig
index 9d76b99af1b9..9332d33346ac 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -737,7 +737,7 @@ choice
 
 config RCU_NOCB_CPU_NONE
 	bool "No build_forced no-CBs CPUs"
-	depends on RCU_NOCB_CPU && !NO_HZ_FULL
+	depends on RCU_NOCB_CPU && !NO_HZ_FULL_ALL
 	help
 	  This option does not force any of the CPUs to be no-CBs CPUs.
 	  Only CPUs designated by the rcu_nocbs= boot parameter will be
@@ -751,7 +751,7 @@ config RCU_NOCB_CPU_NONE
 
 config RCU_NOCB_CPU_ZERO
 	bool "CPU 0 is a build_forced no-CBs CPU"
-	depends on RCU_NOCB_CPU && !NO_HZ_FULL
+	depends on RCU_NOCB_CPU && !NO_HZ_FULL_ALL
 	help
 	  This option forces CPU 0 to be a no-CBs CPU, so that its RCU
 	  callbacks are invoked by a per-CPU kthread whose name begins
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
index b27b86c7bbfa..17eed0856b03 100644
--- a/kernel/rcu/tree_plugin.h
+++ b/kernel/rcu/tree_plugin.h
@@ -2473,6 +2473,9 @@ static void __init rcu_spawn_nocb_kthreads(struct rcu_state *rsp)
 
 	if (rcu_nocb_mask == NULL)
 		return;
+#ifdef CONFIG_NO_HZ_FULL
+	cpumask_or(rcu_nocb_mask, rcu_nocb_mask, tick_nohz_full_mask);
+#endif /* #ifdef CONFIG_NO_HZ_FULL */
 	if (ls == -1) {
 		ls = int_sqrt(nr_cpu_ids);
 		rcu_nocb_leader_stride = ls;
-- 
1.8.1.5


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

* Re: [PATCH tip/core/rcu 2/2] rcu: Don't offload callbacks unless specifically requested
  2014-07-11 13:35   ` [PATCH tip/core/rcu 2/2] rcu: Don't offload callbacks unless specifically requested Paul E. McKenney
@ 2014-07-11 13:47     ` Frederic Weisbecker
  2014-07-11 15:28       ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Frederic Weisbecker @ 2014-07-11 13:47 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, mingo, laijs, dipankar, akpm, mathieu.desnoyers,
	josh, niv, tglx, peterz, rostedt, dhowells, edumazet, dvhart,
	oleg, sbw

On Fri, Jul 11, 2014 at 06:35:03AM -0700, Paul E. McKenney wrote:
> From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
> 
> Enabling NO_HZ_FULL currently has the side effect of enabling callback
> offloading on all CPUs.  This results in lots of additional rcuo kthreads,
> and can also increase context switching and wakeups, even in cases where
> callback offloading is neither needed nor particularly desirable.  This
> commit therefore enables callback offloading on a given CPU only if
> specifically requested at build time or boot time, or if that CPU has
> been specifically designated (again, either at build time or boot time)
> as a nohz_full CPU.
> 
> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>

ACK.

> ---
>  init/Kconfig             | 4 ++--
>  kernel/rcu/tree_plugin.h | 3 +++
>  2 files changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/init/Kconfig b/init/Kconfig
> index 9d76b99af1b9..9332d33346ac 100644
> --- a/init/Kconfig
> +++ b/init/Kconfig
> @@ -737,7 +737,7 @@ choice
>  
>  config RCU_NOCB_CPU_NONE
>  	bool "No build_forced no-CBs CPUs"
> -	depends on RCU_NOCB_CPU && !NO_HZ_FULL
> +	depends on RCU_NOCB_CPU && !NO_HZ_FULL_ALL
>  	help
>  	  This option does not force any of the CPUs to be no-CBs CPUs.
>  	  Only CPUs designated by the rcu_nocbs= boot parameter will be
> @@ -751,7 +751,7 @@ config RCU_NOCB_CPU_NONE
>  
>  config RCU_NOCB_CPU_ZERO
>  	bool "CPU 0 is a build_forced no-CBs CPU"
> -	depends on RCU_NOCB_CPU && !NO_HZ_FULL
> +	depends on RCU_NOCB_CPU && !NO_HZ_FULL_ALL
>  	help
>  	  This option forces CPU 0 to be a no-CBs CPU, so that its RCU
>  	  callbacks are invoked by a per-CPU kthread whose name begins
> diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
> index b27b86c7bbfa..17eed0856b03 100644
> --- a/kernel/rcu/tree_plugin.h
> +++ b/kernel/rcu/tree_plugin.h
> @@ -2473,6 +2473,9 @@ static void __init rcu_spawn_nocb_kthreads(struct rcu_state *rsp)
>  
>  	if (rcu_nocb_mask == NULL)
>  		return;
> +#ifdef CONFIG_NO_HZ_FULL
> +	cpumask_or(rcu_nocb_mask, rcu_nocb_mask, tick_nohz_full_mask);
> +#endif /* #ifdef CONFIG_NO_HZ_FULL */
>  	if (ls == -1) {
>  		ls = int_sqrt(nr_cpu_ids);
>  		rcu_nocb_leader_stride = ls;
> -- 
> 1.8.1.5
> 

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

* Re: [PATCH tip/core/rcu 2/2] rcu: Don't offload callbacks unless specifically requested
  2014-07-11 13:47     ` Frederic Weisbecker
@ 2014-07-11 15:28       ` Paul E. McKenney
  0 siblings, 0 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-07-11 15:28 UTC (permalink / raw)
  To: Frederic Weisbecker
  Cc: linux-kernel, mingo, laijs, dipankar, akpm, mathieu.desnoyers,
	josh, niv, tglx, peterz, rostedt, dhowells, edumazet, dvhart,
	oleg, sbw

On Fri, Jul 11, 2014 at 03:47:37PM +0200, Frederic Weisbecker wrote:
> On Fri, Jul 11, 2014 at 06:35:03AM -0700, Paul E. McKenney wrote:
> > From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
> > 
> > Enabling NO_HZ_FULL currently has the side effect of enabling callback
> > offloading on all CPUs.  This results in lots of additional rcuo kthreads,
> > and can also increase context switching and wakeups, even in cases where
> > callback offloading is neither needed nor particularly desirable.  This
> > commit therefore enables callback offloading on a given CPU only if
> > specifically requested at build time or boot time, or if that CPU has
> > been specifically designated (again, either at build time or boot time)
> > as a nohz_full CPU.
> > 
> > Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> 
> ACK.

I thought you might like this one.  ;-)

							Thanx, Paul

> > ---
> >  init/Kconfig             | 4 ++--
> >  kernel/rcu/tree_plugin.h | 3 +++
> >  2 files changed, 5 insertions(+), 2 deletions(-)
> > 
> > diff --git a/init/Kconfig b/init/Kconfig
> > index 9d76b99af1b9..9332d33346ac 100644
> > --- a/init/Kconfig
> > +++ b/init/Kconfig
> > @@ -737,7 +737,7 @@ choice
> >  
> >  config RCU_NOCB_CPU_NONE
> >  	bool "No build_forced no-CBs CPUs"
> > -	depends on RCU_NOCB_CPU && !NO_HZ_FULL
> > +	depends on RCU_NOCB_CPU && !NO_HZ_FULL_ALL
> >  	help
> >  	  This option does not force any of the CPUs to be no-CBs CPUs.
> >  	  Only CPUs designated by the rcu_nocbs= boot parameter will be
> > @@ -751,7 +751,7 @@ config RCU_NOCB_CPU_NONE
> >  
> >  config RCU_NOCB_CPU_ZERO
> >  	bool "CPU 0 is a build_forced no-CBs CPU"
> > -	depends on RCU_NOCB_CPU && !NO_HZ_FULL
> > +	depends on RCU_NOCB_CPU && !NO_HZ_FULL_ALL
> >  	help
> >  	  This option forces CPU 0 to be a no-CBs CPU, so that its RCU
> >  	  callbacks are invoked by a per-CPU kthread whose name begins
> > diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
> > index b27b86c7bbfa..17eed0856b03 100644
> > --- a/kernel/rcu/tree_plugin.h
> > +++ b/kernel/rcu/tree_plugin.h
> > @@ -2473,6 +2473,9 @@ static void __init rcu_spawn_nocb_kthreads(struct rcu_state *rsp)
> >  
> >  	if (rcu_nocb_mask == NULL)
> >  		return;
> > +#ifdef CONFIG_NO_HZ_FULL
> > +	cpumask_or(rcu_nocb_mask, rcu_nocb_mask, tick_nohz_full_mask);
> > +#endif /* #ifdef CONFIG_NO_HZ_FULL */
> >  	if (ls == -1) {
> >  		ls = int_sqrt(nr_cpu_ids);
> >  		rcu_nocb_leader_stride = ls;
> > -- 
> > 1.8.1.5
> > 
> 


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-07-11 13:35 ` [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups Paul E. McKenney
  2014-07-11 13:35   ` [PATCH tip/core/rcu 2/2] rcu: Don't offload callbacks unless specifically requested Paul E. McKenney
@ 2014-08-08  8:40   ` Amit Shah
  2014-08-08 16:25     ` Paul E. McKenney
  1 sibling, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-08  8:40 UTC (permalink / raw)
  To: linux-kernel
  Cc: mingo, laijs, dipankar, akpm, mathieu.desnoyers, josh, niv, tglx,
	peterz, rostedt, dhowells, edumazet, dvhart, fweisbec, oleg, sbw

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

On Friday 11 July 2014 07:05 PM, Paul E. McKenney wrote:
> From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
>
> An 80-CPU system with a context-switch-heavy workload can require so
> many NOCB kthread wakeups that the RCU grace-period kthreads spend several
> tens of percent of a CPU just awakening things.  This clearly will not
> scale well: If you add enough CPUs, the RCU grace-period kthreads would
> get behind, increasing grace-period latency.
>
> To avoid this problem, this commit divides the NOCB kthreads into leaders
> and followers, where the grace-period kthreads awaken the leaders each of
> whom in turn awakens its followers.  By default, the number of groups of
> kthreads is the square root of the number of CPUs, but this default may
> be overridden using the rcutree.rcu_nocb_leader_stride boot parameter.
> This reduces the number of wakeups done per grace period by the RCU
> grace-period kthread by the square root of the number of CPUs, but of
> course by shifting those wakeups to the leaders.  In addition, because
> the leaders do grace periods on behalf of their respective followers,
> the number of wakeups of the followers decreases by up to a factor of two.
> Instead of being awakened once when new callbacks arrive and again
> at the end of the grace period, the followers are awakened only at
> the end of the grace period.
>
> For a numerical example, in a 4096-CPU system, the grace-period kthread
> would awaken 64 leaders, each of which would awaken its 63 followers
> at the end of the grace period.  This compares favorably with the 79
> wakeups for the grace-period kthread on an 80-CPU system.
>
> Reported-by: Rik van Riel <riel@redhat.com>
> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>

This patch causes KVM guest boot to not proceed after a while.  .config 
is attached, and boot messages are appeneded.  This commit was pointed 
to by bisect, and reverting on current master (while addressing a 
trivial conflict) makes the boot work again.

The qemu cmdline is

./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu 
host,+kvmclock,+x2apic -enable-kvm  -kernel 
~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 
'root=/dev/sda2 console=ttyS0 console=tty0' -snapshot -serial stdio

Using qemu.git.

Rik suggested collecting qemu stack traces, here they are:

$ pgrep qemu
10587
$ cat /proc/10587/stack
[<ffffffff811fa559>] poll_schedule_timeout+0x49/0x70
[<ffffffff811fbbf2>] do_sys_poll+0x442/0x560
[<ffffffff811fc063>] SyS_ppoll+0x1b3/0x1d0
[<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
[<ffffffffffffffff>] 0xffffffffffffffff

$ cat /proc/10587/task/105
10587/ 10589/ 10590/ 10592/


$ cat /proc/10587/task/*/stack
[<ffffffff811fa559>] poll_schedule_timeout+0x49/0x70
[<ffffffff811fbbf2>] do_sys_poll+0x442/0x560
[<ffffffff811fc063>] SyS_ppoll+0x1b3/0x1d0
[<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
[<ffffffffffffffff>] 0xffffffffffffffff
[<ffffffffa04d3c3d>] kvm_vcpu_block+0x7d/0xd0 [kvm]
[<ffffffffa04ec87c>] kvm_arch_vcpu_ioctl_run+0x11c/0x1180 [kvm]
[<ffffffffa04d6fca>] kvm_vcpu_ioctl+0x2aa/0x5a0 [kvm]
[<ffffffff811f9ac0>] do_vfs_ioctl+0x2e0/0x4a0
[<ffffffff811f9d01>] SyS_ioctl+0x81/0xa0
[<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
[<ffffffffffffffff>] 0xffffffffffffffff
[<ffffffffa04d3c3d>] kvm_vcpu_block+0x7d/0xd0 [kvm]
[<ffffffffa04ec87c>] kvm_arch_vcpu_ioctl_run+0x11c/0x1180 [kvm]
[<ffffffffa04d6fca>] kvm_vcpu_ioctl+0x2aa/0x5a0 [kvm]
[<ffffffff811f9ac0>] do_vfs_ioctl+0x2e0/0x4a0
[<ffffffff811f9d01>] SyS_ioctl+0x81/0xa0
[<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
[<ffffffffffffffff>] 0xffffffffffffffff
[<ffffffff811fa559>] poll_schedule_timeout+0x49/0x70
[<ffffffff811fbbf2>] do_sys_poll+0x442/0x560
[<ffffffff811fbe14>] SyS_poll+0x74/0x110
[<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
[<ffffffffffffffff>] 0xffffffffffffffff


[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.16.0-rc1+ (amit@grmbl.mre) (gcc version 
4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #71 SMP PREEMPT Thu Aug 7 
21:30:26 IST 2014
[    0.000000] Command line: root=/dev/sda2 console=ttyS0 console=tty0
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] 
reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] 
reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001ffdffff] usable
[    0.000000] BIOS-e820: [mem 0x000000001ffe0000-0x000000001fffffff] 
reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] 
reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] 
reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.8 present.
[    0.000000] Hypervisor detected: KVM
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x1ffe0 max_arch_pfn = 0x400000000
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 
0x7010600070106
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000] init_memory_mapping: [mem 0x1f800000-0x1f9fffff]
[    0.000000] init_memory_mapping: [mem 0x1c000000-0x1f7fffff]
[    0.000000] init_memory_mapping: [mem 0x00100000-0x1bffffff]
[    0.000000] init_memory_mapping: [mem 0x1fa00000-0x1ffdffff]
[    0.000000] RAMDISK: [mem 0x1fa2e000-0x1ffeffff]
[    0.000000] Allocated new RAMDISK: [mem 0x1f342000-0x1f903645]
[    0.000000] Move RAMDISK from [mem 0x1fa2e000-0x1ffef645] to [mem 
0x1f342000-0x1f903645]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0C50 000014 (v00 BOCHS )
[    0.000000] ACPI: ??k? 0x000000001FFE18BD 419C3D35 (v198 9?E�G� 
�#��??�\ D5C8453D ??�� 811D127E)
[    0.000000] ------------[ cut here ]------------
[    0.000000] WARNING: CPU: 0 PID: 0 at mm/early_ioremap.c:136 
__early_ioremap+0xf5/0x1c4()
[    0.000000] Modules linked in:
[    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 3.16.0-rc1+ #71
[    0.000000] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), 
BIOS rel-1.7.5-0-ge51488c-20140602_164612-nilsson.home.kraxel.org 04/01/2014
[    0.000000]  0000000000000000 6f00866b7b6a4d61 ffffffff81803d30 
ffffffff813e04f5
[    0.000000]  0000000000000000 ffffffff81803d68 ffffffff81038668 
ffffffff81aad219
[    0.000000]  0000000000000000 00000000000419c5 0000000000000000 
0000000000000000
[    0.000000] Call Trace:
[    0.000000]  [<ffffffff813e04f5>] dump_stack+0x4e/0x7a
[    0.000000]  [<ffffffff81038668>] warn_slowpath_common+0x7f/0x98
[    0.000000]  [<ffffffff81aad219>] ? __early_ioremap+0xf5/0x1c4
[    0.000000]  [<ffffffff81038779>] warn_slowpath_null+0x1a/0x1c
[    0.000000]  [<ffffffff81aad219>] __early_ioremap+0xf5/0x1c4
[    0.000000]  [<ffffffff810872b2>] ? wake_up_klogd+0x52/0x66
[    0.000000]  [<ffffffff813dc655>] ? __pte+0x17/0x19
[    0.000000]  [<ffffffff81aad49c>] early_ioremap+0x13/0x15
[    0.000000]  [<ffffffff81a95b8b>] __acpi_map_table+0x13/0x18
[    0.000000]  [<ffffffff813da661>] acpi_os_map_iomem+0x26/0x14b
[    0.000000]  [<ffffffff813da794>] acpi_os_map_memory+0xe/0x10
[    0.000000]  [<ffffffff81abcdbe>] acpi_tb_parse_root_table+0xf6/0x1d9
[    0.000000]  [<ffffffff81abcef8>] acpi_initialize_tables+0x57/0x59
[    0.000000]  [<ffffffff81abb49c>] acpi_table_init+0x5d/0xef
[    0.000000]  [<ffffffff813452c3>] ? dmi_check_system+0x20/0x49
[    0.000000]  [<ffffffff81a95f64>] acpi_boot_table_init+0x1e/0x6c
[    0.000000]  [<ffffffff81a8e228>] setup_arch+0x883/0x95c
[    0.000000]  [<ffffffff81a8ac0b>] start_kernel+0xe5/0x439
[    0.000000]  [<ffffffff81a8a120>] ? early_idt_handlers+0x120/0x120
[    0.000000]  [<ffffffff81a8a4ba>] x86_64_start_reservations+0x2a/0x2c
[    0.000000]  [<ffffffff81a8a607>] x86_64_start_kernel+0x14b/0x16e
[    0.000000] ---[ end trace e2f2e6a01bc90242 ]---
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: cpu 0, msr 0:1ffdf001, primary cpu clock
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0x1ffdffff]
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.000000] e820: [mem 0x20000000-0xfeffbfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on KVM
[    0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:1 
nr_node_ids:1
[    0.000000] PERCPU: Embedded 475 pages/cpu @ffff88001fc00000 s1916480 
r8192 d20928 u2097152
[    0.000000] KVM setup async PF for cpu 0
[    0.000000] kvm-stealtime: cpu 0, msr 1fc0cbc0
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on. 
Total pages: 128873
[    0.000000] Kernel command line: root=/dev/sda2 console=ttyS0 
console=tty0
[    0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 
bytes)
[    0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 
bytes)
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Memory: 479824K/523768K available (4009K kernel code, 
723K rwdata, 2172K rodata, 2868K init, 14172K bss, 43944K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU debugfs-based tracing is enabled.
[    0.000000] 	RCU lockdep checking is enabled.
[    0.000000] 	Additional per-CPU info printed with stalls.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.
[    0.000000] NR_IRQS:4352 nr_irqs:256 16
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] console [ttyS0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, 
Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     32768
[    0.000000] ... MAX_LOCKDEP_CHAINS:      65536
[    0.000000] ... CHAINHASH_SIZE:          32768
[    0.000000]  memory used by lock dependency info: 8671 kB
[    0.000000]  per task-struct memory footprint: 2688 bytes
[    0.000000] tsc: Detected 2790.934 MHz processor
[    0.008000] Calibrating delay loop (skipped) preset value.. 5581.86 
BogoMIPS (lpj=11163736)
[    0.008000] pid_max: default: 32768 minimum: 301
[    0.009202] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.010479] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 
bytes)
[    0.016838] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.016838] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.016838] tlb_flushall_shift: 6
[    0.024114] debug: unmapping init [mem 
0xffffffff81b83000-0xffffffff81b85fff]
[    0.026826] ftrace: allocating 17803 entries in 70 pages
[    0.036941] smpboot: weird, boot CPU (#0) not listed by the BIOS
[    0.040023] smpboot: SMP motherboard not detected
[    0.041689] smpboot: SMP disabled
[    0.043189] Performance Events: 16-deep LBR, SandyBridge events, 
Intel PMU driver.
[    0.044012] perf_event_intel: PEBS disabled due to CPU errata, please 
upgrade microcode
[    0.048056] ... version:                2
[    0.049446] ... bit width:              48
[    0.050845] ... generic registers:      4
[    0.052007] ... value mask:             0000ffffffffffff
[    0.053708] ... max period:             000000007fffffff
[    0.055456] ... fixed-purpose events:   3
[    0.056015] ... event mask:             000000070000000f
[    0.057987] KVM setup paravirtual spinlock
[    0.081529] x86: Booted up 1 node, 1 CPUs
[    0.082986] smpboot: Total of 1 processors activated (5581.86 BogoMIPS)
[    0.112201] prandom: seed boundary self test passed
[    0.114354] prandom: 100 self tests passed
[    0.117623] NET: Registered protocol family 16
[    0.123868] cpuidle: using governor ladder
[    0.124056] cpuidle: using governor menu
[    0.126206] PCI: Using configuration type 1 for base access

<and this is where it gets stuck>

		Amit


[-- Attachment #2: .config --]
[-- Type: text/plain, Size: 58703 bytes --]

#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 3.16.0 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=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_HUGE_PMD_SHARE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_X86_64_SMP=y
CONFIG_X86_HT=y
CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y

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

#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=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_NO_HZ_FULL_ALL=y
# CONFIG_NO_HZ_FULL_SYSIDLE is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y

#
# CPU/Task time and stats accounting
#
CONFIG_VIRT_CPU_ACCOUNTING=y
CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
# CONFIG_TASKSTATS is not set

#
# RCU Subsystem
#
CONFIG_TREE_PREEMPT_RCU=y
CONFIG_PREEMPT_RCU=y
CONFIG_RCU_STALL_COMMON=y
CONFIG_CONTEXT_TRACKING=y
CONFIG_RCU_USER_QS=y
# CONFIG_CONTEXT_TRACKING_FORCE is not set
CONFIG_RCU_FANOUT=64
CONFIG_RCU_FANOUT_LEAF=16
# CONFIG_RCU_FANOUT_EXACT is not set
# CONFIG_RCU_FAST_NO_HZ is not set
CONFIG_TREE_RCU_TRACE=y
# CONFIG_RCU_BOOST is not set
CONFIG_RCU_NOCB_CPU=y
CONFIG_RCU_NOCB_CPU_ALL=y
# CONFIG_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=17
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y
CONFIG_CGROUPS=y
# CONFIG_CGROUP_DEBUG is not set
# CONFIG_CGROUP_FREEZER is not set
# CONFIG_CGROUP_DEVICE is not set
# CONFIG_CPUSETS is not set
# CONFIG_CGROUP_CPUACCT is not set
# CONFIG_RESOURCE_COUNTERS is not set
# CONFIG_CGROUP_PERF is not set
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
# CONFIG_CFS_BANDWIDTH is not set
# CONFIG_RT_GROUP_SCHED is not set
# CONFIG_BLK_CGROUP is not set
# CONFIG_CHECKPOINT_RESTORE is not set
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
# CONFIG_USER_NS is not set
CONFIG_PID_NS=y
CONFIG_NET_NS=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_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
# CONFIG_EXPERT is not set
CONFIG_SGETMASK_SYSCALL=y
CONFIG_SYSFS_SYSCALL=y
# CONFIG_SYSCTL_SYSCALL is not set
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_PCI_QUIRKS=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
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_SLUB_DEBUG=y
# CONFIG_COMPAT_BRK is not set
# CONFIG_SLAB is not set
CONFIG_SLUB=y
CONFIG_SLUB_CPU_PARTIAL=y
# CONFIG_PROFILING is not set
CONFIG_TRACEPOINTS=y
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
# CONFIG_KPROBES is not set
# CONFIG_JUMP_LABEL is not set
# CONFIG_UPROBES is not set
# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=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_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_ATTRS=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_DMA_API_DEBUG=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_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=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_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_CC_STACKPROTECTOR=y
CONFIG_CC_STACKPROTECTOR=y
# CONFIG_CC_STACKPROTECTOR_NONE is not set
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
CONFIG_CC_STACKPROTECTOR_STRONG=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y

#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
# CONFIG_MODVERSIONS is not set
CONFIG_MODULE_SRCVERSION_ALL=y
# CONFIG_MODULE_SIG is not set
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_BLK_DEV_BSG=y
# CONFIG_BLK_DEV_BSGLIB is not set
CONFIG_BLK_DEV_INTEGRITY=y
# CONFIG_BLK_CMDLINE_PARSER is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_AIX_PARTITION is not set
# CONFIG_OSF_PARTITION is not set
# CONFIG_AMIGA_PARTITION is not set
# CONFIG_ATARI_PARTITION is not set
# CONFIG_MAC_PARTITION is not set
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 is not set
# CONFIG_ULTRIX_PARTITION is not set
# CONFIG_SUN_PARTITION is not set
# CONFIG_KARMA_PARTITION is not set
CONFIG_EFI_PARTITION=y
# CONFIG_SYSV68_PARTITION is not set
# CONFIG_CMDLINE_PARTITION is not set

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
# CONFIG_IOSCHED_DEADLINE is not set
# CONFIG_IOSCHED_CFQ is not set
CONFIG_DEFAULT_NOOP=y
CONFIG_DEFAULT_IOSCHED="noop"
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUE_RWLOCK=y
CONFIG_QUEUE_RWLOCK=y
CONFIG_FREEZER=y

#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
# CONFIG_X86_MPPARSE is not set
# CONFIG_X86_EXTENDED_PLATFORM is not set
# CONFIG_X86_INTEL_LPSS is not set
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
CONFIG_PARAVIRT_DEBUG=y
CONFIG_PARAVIRT_SPINLOCKS=y
# CONFIG_XEN is not set
CONFIG_KVM_GUEST=y
CONFIG_KVM_DEBUG_FS=y
CONFIG_PARAVIRT_TIME_ACCOUNTING=y
CONFIG_PARAVIRT_CLOCK=y
CONFIG_NO_BOOTMEM=y
# CONFIG_MEMTEST is not set
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
CONFIG_MCORE2=y
# CONFIG_MATOM is not set
# CONFIG_GENERIC_CPU is not set
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_P6_NOP=y
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_HPET_TIMER=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
# CONFIG_CALGARY_IOMMU is not set
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS=4
# CONFIG_SCHED_SMT is not set
# CONFIG_SCHED_MC is not set
# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_COUNT=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
# CONFIG_X86_MCE is not set
CONFIG_X86_16BIT=y
CONFIG_X86_ESPFIX64=y
# CONFIG_I8K is not set
# CONFIG_MICROCODE is not set
# CONFIG_MICROCODE_INTEL_EARLY is not set
# CONFIG_MICROCODE_AMD_EARLY is not set
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_DIRECT_GBPAGES=y
# CONFIG_NUMA is not set
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_BALLOON_COMPACTION=y
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
# CONFIG_KSM is not set
CONFIG_DEFAULT_MMAP_MIN_ADDR=32768
CONFIG_TRANSPARENT_HUGEPAGE=y
CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
# CONFIG_CLEANCACHE is not set
# CONFIG_FRONTSWAP is not set
# CONFIG_CMA is not set
# CONFIG_ZPOOL is not set
# CONFIG_ZBUD is not set
# CONFIG_ZSMALLOC is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
# CONFIG_X86_CHECK_BIOS_CORRUPTION 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_EFI is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_SCHED_HRTICK=y
# CONFIG_KEXEC is not set
# CONFIG_CRASH_DUMP is not set
CONFIG_PHYSICAL_START=0x1000000
# CONFIG_RELOCATABLE is not set
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_HOTPLUG_CPU=y
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=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_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
CONFIG_PM_AUTOSLEEP=y
# CONFIG_PM_WAKELOCKS is not set
# CONFIG_PM_RUNTIME is not set
CONFIG_PM=y
CONFIG_PM_DEBUG=y
CONFIG_PM_ADVANCED_DEBUG=y
CONFIG_PM_SLEEP_DEBUG=y
# CONFIG_PM_TRACE_RTC is not set
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
CONFIG_ACPI=y
CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_PROCFS_POWER is not set
# CONFIG_ACPI_EC_DEBUGFS is not set
# CONFIG_ACPI_AC is not set
# CONFIG_ACPI_BATTERY is not set
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
# CONFIG_ACPI_FAN is not set
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
# CONFIG_ACPI_THERMAL is not set
# CONFIG_ACPI_CUSTOM_DSDT is not set
# CONFIG_ACPI_INITRD_TABLE_OVERRIDE is not set
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
# CONFIG_ACPI_SBS is not set
# CONFIG_ACPI_HED is not set
# CONFIG_ACPI_CUSTOM_METHOD is not set
# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
CONFIG_HAVE_ACPI_APEI=y
CONFIG_HAVE_ACPI_APEI_NMI=y
# CONFIG_ACPI_APEI is not set
# CONFIG_SFI is not set

#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ is not set

#
# CPU Idle
#
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
CONFIG_INTEL_IDLE=y

#
# Memory power savings
#
# CONFIG_I7300_IDLE is not set

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
# CONFIG_PCI_MMCONFIG is not set
CONFIG_PCI_DOMAINS=y
# CONFIG_PCIEPORTBUS is not set
CONFIG_PCI_MSI=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
# CONFIG_PCI_STUB is not set
CONFIG_HT_IRQ=y
# CONFIG_PCI_IOV is not set
# CONFIG_PCI_PRI is not set
# CONFIG_PCI_PASID is not set
CONFIG_PCI_IOAPIC=y
CONFIG_PCI_LABEL=y

#
# PCI host controller drivers
#
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
# CONFIG_PCCARD is not set
CONFIG_HOTPLUG_PCI=y
CONFIG_HOTPLUG_PCI_ACPI=y
# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set
# CONFIG_HOTPLUG_PCI_CPCI is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set
# CONFIG_RAPIDIO is not set
# CONFIG_X86_SYSFB is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
CONFIG_BINFMT_SCRIPT=y
# CONFIG_HAVE_AOUT is not set
# CONFIG_BINFMT_MISC is not set
CONFIG_COREDUMP=y
# CONFIG_IA32_EMULATION is not set
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_IOSF_MBI=m
CONFIG_PMC_ATOM=y
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_XFRM_USER is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
# CONFIG_NET_IP_TUNNEL is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_NET_UDP_TUNNEL is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET_XFRM_MODE_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_BEET is not set
# CONFIG_INET_LRO is not set
# CONFIG_INET_DIAG is not set
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_CUBIC=y
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
# CONFIG_IPV6 is not set
# CONFIG_NETWORK_SECMARK is not set
CONFIG_NET_PTP_CLASSIFY=y
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
# CONFIG_NETFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
# CONFIG_BRIDGE is not set
CONFIG_HAVE_NET_DSA=y
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_IEEE802154 is not set
# CONFIG_NET_SCHED is not set
# CONFIG_DCB is not set
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
# CONFIG_VSOCKETS is not set
# CONFIG_NETLINK_MMAP is not set
# CONFIG_NETLINK_DIAG is not set
# CONFIG_NET_MPLS_GSO is not set
# CONFIG_HSR is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_CGROUP_NET_PRIO is not set
# CONFIG_CGROUP_NET_CLASSID is not set
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
# CONFIG_BPF_JIT is not set
CONFIG_NET_FLOW_LIMIT=y

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_DROP_MONITOR is not set
# CONFIG_HAMRADIO is not set
# CONFIG_CAN is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set
# CONFIG_WIRELESS is not set
# CONFIG_WIMAX is not set
# CONFIG_RFKILL is not set
# CONFIG_NET_9P is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
CONFIG_HAVE_BPF_JIT=y

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER=y
CONFIG_UEVENT_HELPER_PATH=""
# CONFIG_DEVTMPFS is not set
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
# CONFIG_FIRMWARE_IN_KERNEL is not set
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
# CONFIG_DEBUG_DRIVER is not set
CONFIG_DEBUG_DEVRES=y
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_REGMAP=y
CONFIG_REGMAP_MMIO=y
# CONFIG_DMA_SHARED_BUFFER is not set

#
# Bus devices
#
# CONFIG_CONNECTOR is not set
# CONFIG_MTD is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
# CONFIG_PARPORT is not set
CONFIG_PNP=y
CONFIG_PNP_DEBUG_MESSAGES=y

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_NULL_BLK is not set
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_NVME is not set
# CONFIG_BLK_DEV_SKD is not set
# CONFIG_BLK_DEV_SX8 is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=16384
# CONFIG_BLK_DEV_XIP is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_HD is not set
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_RSXX is not set

#
# Misc devices
#
# CONFIG_SENSORS_LIS3LV02D is not set
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1780 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_VMWARE_BALLOON is not set
# CONFIG_BMP085_I2C is not set
# CONFIG_USB_SWITCH_FSA9480 is not set
# CONFIG_SRAM is not set
# CONFIG_C2PORT is not set

#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_CB710_CORE is not set

#
# Texas Instruments shared transport line discipline
#
# CONFIG_SENSORS_LIS3_I2C is not set

#
# Altera FPGA firmware download module
#
# CONFIG_ALTERA_STAPL is not set
# CONFIG_VMWARE_VMCI is not set

#
# Intel MIC Bus Driver
#
# CONFIG_INTEL_MIC_BUS is not set

#
# Intel MIC Host Driver
#

#
# Intel MIC Card Driver
#
# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set

#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_NETLINK is not set
# CONFIG_SCSI_PROC_FS is not set

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
# CONFIG_BLK_DEV_SR_VENDOR is not set
# CONFIG_CHR_DEV_SG is not set
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
# CONFIG_SCSI_SCAN_ASYNC is not set

#
# SCSI Transports
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
# CONFIG_SCSI_LOWLEVEL is not set
# CONFIG_SCSI_DH is not set
# CONFIG_SCSI_OSD_INITIATOR is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_VERBOSE_ERROR=y
# CONFIG_ATA_ACPI is not set
# CONFIG_SATA_PMP is not set

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

#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y

#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=y
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set

#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# 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_ATA_GENERIC is not set
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
# CONFIG_BLK_DEV_MD is not set
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
# CONFIG_DM_CRYPT is not set
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_THIN_PROVISIONING is not set
# CONFIG_DM_CACHE is not set
# CONFIG_DM_ERA is not set
# CONFIG_DM_MIRROR is not set
# CONFIG_DM_RAID is not set
# CONFIG_DM_ZERO is not set
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
# CONFIG_DM_UEVENT is not set
# CONFIG_DM_FLAKEY is not set
# CONFIG_DM_VERITY is not set
# CONFIG_DM_SWITCH is not set
# CONFIG_TARGET_CORE is not set
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
# CONFIG_I2O is not set
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
# CONFIG_DUMMY is not set
# CONFIG_EQUALIZER is not set
# CONFIG_NET_FC is not set
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_VXLAN is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_TUN is not set
# CONFIG_VETH is not set
CONFIG_VIRTIO_NET=y
# CONFIG_NLMON is not set
# CONFIG_ARCNET is not set

#
# CAIF transport drivers
#
# CONFIG_VHOST_NET is not set

#
# Distributed Switch Architecture drivers
#
# CONFIG_NET_DSA_MV88E6XXX is not set
# CONFIG_NET_DSA_MV88E6060 is not set
# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
# CONFIG_NET_DSA_MV88E6131 is not set
# CONFIG_NET_DSA_MV88E6123_61_65 is not set
CONFIG_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2X is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
# CONFIG_NET_CALXEDA_XGMAC is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
# CONFIG_CX_ECAT is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
# CONFIG_NET_TULIP is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_EXAR=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
CONFIG_NET_VENDOR_HP=y
# CONFIG_HP100 is not set
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
CONFIG_E1000=y
# CONFIG_E1000E is not set
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGB is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGBEVF is not set
# CONFIG_I40E is not set
# CONFIG_I40EVF is not set
CONFIG_NET_VENDOR_I825XX=y
# CONFIG_IP1000 is not set
# CONFIG_JME is not set
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX4_CORE is not set
# CONFIG_MLX5_CORE is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_NE2K_PCI is not set
CONFIG_NET_VENDOR_NVIDIA=y
# CONFIG_FORCEDETH is not set
CONFIG_NET_VENDOR_OKI=y
# CONFIG_ETHOC is not set
# CONFIG_NET_PACKET_ENGINE is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_QLGE is not set
# CONFIG_NETXEN_NIC is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
# CONFIG_R8169 is not set
# CONFIG_SH_ETH is not set
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
# CONFIG_SFC is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLIB=y

#
# MII PHY device drivers
#
CONFIG_AT803X_PHY=y
CONFIG_AMD_PHY=y
CONFIG_MARVELL_PHY=y
CONFIG_DAVICOM_PHY=y
CONFIG_QSEMI_PHY=y
CONFIG_LXT_PHY=y
CONFIG_CICADA_PHY=y
CONFIG_VITESSE_PHY=y
CONFIG_SMSC_PHY=y
CONFIG_BROADCOM_PHY=y
# CONFIG_BCM7XXX_PHY is not set
CONFIG_BCM87XX_PHY=y
CONFIG_ICPLUS_PHY=y
CONFIG_REALTEK_PHY=y
CONFIG_NATIONAL_PHY=y
CONFIG_STE10XP=y
CONFIG_LSI_ET1011C_PHY=y
CONFIG_MICREL_PHY=y
CONFIG_FIXED_PHY=y
CONFIG_MDIO_BITBANG=y
# CONFIG_PPP is not set
# CONFIG_SLIP is not set

#
# Host-side USB support is needed for USB Network Adapter support
#
# CONFIG_WLAN is not set

#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
# CONFIG_WAN is not set
# CONFIG_VMXNET3 is not set
# CONFIG_ISDN is not set

#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set
# CONFIG_INPUT_SPARSEKMAP is not set
# 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 is not set
# CONFIG_INPUT_EVDEV is not set
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 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_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_INPUT_MOUSE is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC 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_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=y
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_GAMEPORT is not set

#
# 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_DEVPTS_MULTIPLE_INSTANCES=y
# CONFIG_LEGACY_PTYS is not set
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_NOZOMI is not set
# CONFIG_N_GSM is not set
# CONFIG_TRACE_SINK is not set
# CONFIG_DEVKMEM is not set

#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_PCI=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=y
CONFIG_SERIAL_8250_RSA=y
# CONFIG_SERIAL_8250_DW is not set

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_MFD_HSU 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_ARC is not set
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
CONFIG_HVC_DRIVER=y
CONFIG_VIRTIO_CONSOLE=y
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_VIA is not set
CONFIG_HW_RANDOM_VIRTIO=y
CONFIG_NVRAM=y
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
CONFIG_RAW_DRIVER=y
CONFIG_MAX_RAW_DEVS=8192
# CONFIG_HPET is not set
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y

#
# 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 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_ISMT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set

#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_PXA_PCI is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_XILINX is not set

#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_TAOS_EVM is not set

#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_SPI is not set
# CONFIG_SPMI is not set
# CONFIG_HSI is not set

#
# PPS support
#
CONFIG_PPS=y
CONFIG_PPS_DEBUG=y

#
# PPS clients support
#
CONFIG_PPS_CLIENT_KTIMER=y
CONFIG_PPS_CLIENT_LDISC=y
CONFIG_PPS_CLIENT_GPIO=y

#
# PPS generators support
#

#
# PTP clock support
#
CONFIG_PTP_1588_CLOCK=y

#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
# CONFIG_GPIOLIB is not set
# CONFIG_W1 is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_TEST_POWER 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_BATTERY_BQ27x00 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_BQ2415X is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_POWER_RESET is not set
# CONFIG_POWER_AVS is not set
# CONFIG_HWMON is not set
CONFIG_THERMAL=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 is not set
CONFIG_THERMAL_GOV_STEP_WISE=y
# CONFIG_THERMAL_GOV_USER_SPACE is not set
# CONFIG_THERMAL_EMULATION is not set
# CONFIG_INTEL_POWERCLAMP is not set
# CONFIG_ACPI_INT3403_THERMAL is not set
# CONFIG_INTEL_SOC_DTS_THERMAL is not set

#
# Texas Instruments thermal drivers
#
# CONFIG_WATCHDOG is not set
CONFIG_SSB_POSSIBLE=y

#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y

#
# Broadcom specific AMBA
#
# CONFIG_BCMA is not set

#
# Multifunction device drivers
#
# CONFIG_MFD_CORE is not set
# CONFIG_MFD_AS3711 is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_AXP20X is not set
# CONFIG_MFD_CROS_EC is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_HTC_PASIC3 is not set
# CONFIG_LPC_ICH is not set
# CONFIG_LPC_SCH is not set
# CONFIG_INTEL_SOC_PMIC 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_MAX77686 is not set
# CONFIG_MFD_MAX77693 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_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RTSX_PCI 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 is not set
# CONFIG_MFD_SMSC is not set
# CONFIG_ABX500_CORE is not set
CONFIG_MFD_SYSCON=y
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_MFD_LP3943 is not set
# CONFIG_MFD_LP8788 is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_TPS65217 is not set
# CONFIG_MFD_TPS65218 is not set
# CONFIG_MFD_TPS6586X 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_TC3589X is not set
# CONFIG_MFD_TMIO is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_WM831X_I2C is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
# CONFIG_REGULATOR is not set
# CONFIG_MEDIA_SUPPORT is not set

#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_VIA is not set
CONFIG_INTEL_GTT=y
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=1
# CONFIG_VGA_SWITCHEROO is not set

#
# Direct Rendering Manager
#
# CONFIG_DRM is not set

#
# Frame buffer Devices
#
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
# CONFIG_FB_DDC is not set
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
# CONFIG_FB_CFB_FILLRECT is not set
# CONFIG_FB_CFB_COPYAREA is not set
# CONFIG_FB_CFB_IMAGEBLIT is not set
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
# CONFIG_FB_SYS_FILLRECT is not set
# CONFIG_FB_SYS_COPYAREA is not set
# CONFIG_FB_SYS_IMAGEBLIT is not set
# CONFIG_FB_FOREIGN_ENDIAN is not set
# CONFIG_FB_SYS_FOPS is not set
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
# CONFIG_FB_MODE_HELPERS is not set
# CONFIG_FB_TILEBLITTING is not set

#
# 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_VESA is not set
# 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_VIRTUAL is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_BROADSHEET is not set
# CONFIG_FB_AUO_K190X is not set
# CONFIG_FB_SIMPLE is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_LCD_CLASS_DEVICE=m
# CONFIG_LCD_PLATFORM is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
CONFIG_BACKLIGHT_GENERIC=y
# CONFIG_BACKLIGHT_APPLE is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
# CONFIG_VGASTATE is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_LOGO is not set
# CONFIG_SOUND is not set

#
# HID support
#
CONFIG_HID=y
# CONFIG_HID_BATTERY_STRENGTH is not set
# CONFIG_HIDRAW is not set
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=y

#
# Special HID drivers
#
CONFIG_HID_A4TECH=y
# CONFIG_HID_ACRUX is not set
CONFIG_HID_APPLE=y
# CONFIG_HID_AUREAL is not set
CONFIG_HID_BELKIN=y
CONFIG_HID_CHERRY=y
CONFIG_HID_CHICONY=y
CONFIG_HID_CYPRESS=y
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
CONFIG_HID_EZKEY=y
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_UCLOGIC is not set
# CONFIG_HID_WALTOP is not set
# CONFIG_HID_GYRATION is not set
# CONFIG_HID_ICADE is not set
# CONFIG_HID_TWINHAN is not set
CONFIG_HID_KENSINGTON=y
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LENOVO is not set
CONFIG_HID_LOGITECH=y
# 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 is not set
CONFIG_HID_MICROSOFT=y
CONFIG_HID_MONTEREY=y
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_ORTEK is not set
# CONFIG_HID_PANTHERLORD is not set
# CONFIG_HID_PETALYNX is not set
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_SAITEK is not set
# CONFIG_HID_SAMSUNG is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEELSERIES is not set
# CONFIG_HID_SUNPLUS is not set
# CONFIG_HID_RMI is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
# CONFIG_HID_TOPSEED is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_XINMO is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set

#
# I2C HID support
#
# CONFIG_I2C_HID is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
# CONFIG_USB_SUPPORT is not set
# CONFIG_UWB is not set
# CONFIG_MMC is not set
# CONFIG_MEMSTICK is not set
# CONFIG_NEW_LEDS is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
# CONFIG_EDAC is not set
CONFIG_RTC_LIB=y
# CONFIG_RTC_CLASS is not set
# CONFIG_DMADEVICES is not set
# CONFIG_AUXDISPLAY is not set
# CONFIG_UIO is not set
CONFIG_VIRT_DRIVERS=y
CONFIG_VIRTIO=y

#
# Virtio drivers
#
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_BALLOON=y
# CONFIG_VIRTIO_MMIO is not set

#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
# CONFIG_STAGING is not set
# CONFIG_X86_PLATFORM_DEVICES is not set
# CONFIG_CHROME_PLATFORMS is not set

#
# SOC (System On Chip) specific Drivers
#

#
# Hardware Spinlock drivers
#

#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# CONFIG_SH_TIMER_CMT is not set
# CONFIG_SH_TIMER_MTU2 is not set
# CONFIG_SH_TIMER_TMU is not set
# CONFIG_EM_TIMER_STI is not set
# CONFIG_MAILBOX is not set
# CONFIG_IOMMU_SUPPORT is not set

#
# Remoteproc drivers
#
# CONFIG_STE_MODEM_RPROC is not set

#
# Rpmsg drivers
#
# CONFIG_PM_DEVFREQ is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
# CONFIG_IIO is not set
# CONFIG_NTB is not set
# CONFIG_VME_BUS is not set
# CONFIG_PWM is not set
# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set
# CONFIG_FMC is not set

#
# PHY Subsystem
#
CONFIG_GENERIC_PHY=y
CONFIG_BCM_KONA_USB2_PHY=y
# CONFIG_POWERCAP is not set
# CONFIG_MCB is not set
# CONFIG_THUNDERBOLT is not set

#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_FIRMWARE_MEMMAP=y
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
# CONFIG_DMIID is not set
# CONFIG_DMI_SYSFS is not set
CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
# CONFIG_ISCSI_IBFT_FIND is not set
# CONFIG_GOOGLE_FIRMWARE is not set

#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT23=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
CONFIG_JBD2_DEBUG=y
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_BTRFS_FS is not set
# CONFIG_NILFS2_FS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_FILE_LOCKING=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
# CONFIG_QUOTA is not set
# CONFIG_QUOTACTL is not set
# CONFIG_AUTOFS4_FS is not set
# CONFIG_FUSE_FS is not set

#
# Caches
#
# CONFIG_FSCACHE is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
# CONFIG_JOLIET is not set
# CONFIG_ZISOFS is not set
CONFIG_UDF_FS=y
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
# CONFIG_MSDOS_FS is not set
# CONFIG_VFAT_FS is not set
# CONFIG_NTFS_FS is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=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_CONFIGFS_FS=y
# CONFIG_MISC_FILESYSTEMS is not set
# CONFIG_NETWORK_FILESYSTEMS is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
# CONFIG_NLS_CODEPAGE_437 is not set
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ASCII is not set
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
# CONFIG_NLS_UTF8 is not set
# CONFIG_DLM is not set

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y

#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
CONFIG_BOOT_PRINTK_DELAY=y
# CONFIG_DYNAMIC_DEBUG is not set

#
# Compile-time checks and compiler options
#
CONFIG_DEBUG_INFO=y
# CONFIG_DEBUG_INFO_REDUCED is not set
# CONFIG_ENABLE_WARN_DEPRECATED is not set
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=2048
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_READABLE_ASM is not set
CONFIG_UNUSED_SYMBOLS=y
CONFIG_DEBUG_FS=y
CONFIG_HEADERS_CHECK=y
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_DEBUG_KERNEL=y

#
# Memory Debugging
#
CONFIG_DEBUG_PAGEALLOC=y
CONFIG_WANT_PAGE_DEBUG_FLAGS=y
CONFIG_PAGE_GUARD=y
# CONFIG_DEBUG_OBJECTS is not set
CONFIG_SLUB_DEBUG_ON=y
# CONFIG_SLUB_STATS is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
CONFIG_DEBUG_KMEMLEAK=y
CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=400
# CONFIG_DEBUG_KMEMLEAK_TEST is not set
# CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_VIRTUAL is not set
CONFIG_DEBUG_MEMORY_INIT=y
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
CONFIG_DEBUG_STACKOVERFLOW=y
CONFIG_HAVE_ARCH_KMEMCHECK=y
# CONFIG_DEBUG_SHIRQ is not set

#
# Debug Lockups and Hangs
#
# CONFIG_LOCKUP_DETECTOR is not set
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
CONFIG_PANIC_TIMEOUT=0
CONFIG_SCHED_DEBUG=y
CONFIG_SCHEDSTATS=y
CONFIG_TIMER_STATS=y
CONFIG_DEBUG_PREEMPT=y

#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
CONFIG_LOCK_STAT=y
# CONFIG_DEBUG_LOCKDEP is not set
# CONFIG_DEBUG_ATOMIC_SLEEP is not set
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
# CONFIG_LOCK_TORTURE_TEST is not set
CONFIG_TRACE_IRQFLAGS=y
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_LIST=y
CONFIG_DEBUG_PI_LIST=y
CONFIG_DEBUG_SG=y
# CONFIG_DEBUG_NOTIFIERS is not set
# CONFIG_DEBUG_CREDENTIALS is not set

#
# RCU Debugging
#
CONFIG_PROVE_RCU=y
# CONFIG_PROVE_RCU_REPEATEDLY is not set
CONFIG_SPARSE_RCU_POINTER=y
CONFIG_TORTURE_TEST=y
CONFIG_RCU_TORTURE_TEST=y
# CONFIG_RCU_TORTURE_TEST_RUNNABLE is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
CONFIG_RCU_CPU_STALL_VERBOSE=y
CONFIG_RCU_CPU_STALL_INFO=y
CONFIG_RCU_TRACE=y
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
# CONFIG_FAULT_INJECTION is not set
CONFIG_LATENCYTOP=y
CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_PREEMPT_TRACER is not set
# CONFIG_SCHED_TRACER is not set
CONFIG_FTRACE_SYSCALLS=y
# CONFIG_TRACER_SNAPSHOT is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
# CONFIG_STACK_TRACER is not set
# CONFIG_BLK_DEV_IO_TRACE is not set
# CONFIG_UPROBE_EVENT is not set
# CONFIG_PROBE_EVENTS is not set
CONFIG_DYNAMIC_FTRACE=y
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_FUNCTION_PROFILER=y
CONFIG_FTRACE_MCOUNT_RECORD=y
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_MMIOTRACE is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set

#
# Runtime Testing
#
# CONFIG_LKDTM is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PERCPU_TEST is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
# CONFIG_BUILD_DOCSRC is not set
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_TEST_MODULE is not set
# CONFIG_TEST_USER_COPY is not set
# CONFIG_TEST_BPF is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_UDELAY is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_STRICT_DEVMEM=y
# CONFIG_X86_VERBOSE_BOOTUP is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_EARLY_PRINTK_DBGP is not set
# CONFIG_X86_PTDUMP is not set
CONFIG_DEBUG_RODATA=y
CONFIG_DEBUG_RODATA_TEST=y
CONFIG_DEBUG_SET_MODULE_RONX=y
# CONFIG_DEBUG_NX_TEST is not set
CONFIG_DOUBLEFAULT=y
# CONFIG_DEBUG_TLBFLUSH is not set
# CONFIG_IOMMU_DEBUG is not set
# CONFIG_IOMMU_STRESS is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
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_DEFAULT_IO_DELAY_TYPE=0
CONFIG_DEBUG_BOOT_PARAMS=y
# CONFIG_CPA_DEBUG is not set
CONFIG_OPTIMIZE_INLINING=y
# CONFIG_DEBUG_NMI_SELFTEST is not set
# CONFIG_X86_DEBUG_STATIC_CPU_HAS is not set

#
# Security options
#
# CONFIG_KEYS is not set
# CONFIG_SECURITY_DMESG_RESTRICT is not set
# CONFIG_SECURITY is not set
# CONFIG_SECURITYFS is not set
CONFIG_DEFAULT_SECURITY_DAC=y
CONFIG_DEFAULT_SECURITY=""
CONFIG_CRYPTO=y

#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=m
CONFIG_CRYPTO_RNG2=m
# CONFIG_CRYPTO_MANAGER is not set
# CONFIG_CRYPTO_MANAGER2 is not set
# CONFIG_CRYPTO_USER is not set
# CONFIG_CRYPTO_GF128MUL is not set
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_PCRYPT is not set
# CONFIG_CRYPTO_CRYPTD is not set
# CONFIG_CRYPTO_AUTHENC is not set
# CONFIG_CRYPTO_TEST is not set

#
# Authenticated Encryption with Associated Data
#
# CONFIG_CRYPTO_CCM is not set
# CONFIG_CRYPTO_GCM is not set
# CONFIG_CRYPTO_SEQIV is not set

#
# Block modes
#
# CONFIG_CRYPTO_CBC is not set
# CONFIG_CRYPTO_CTR is not set
# CONFIG_CRYPTO_CTS is not set
# CONFIG_CRYPTO_ECB is not set
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_PCBC is not set
# CONFIG_CRYPTO_XTS is not set

#
# Hash modes
#
# CONFIG_CRYPTO_CMAC is not set
# CONFIG_CRYPTO_HMAC is not set
# CONFIG_CRYPTO_XCBC is not set
# CONFIG_CRYPTO_VMAC is not set

#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
# CONFIG_CRYPTO_CRC32C_INTEL is not set
# CONFIG_CRYPTO_CRC32 is not set
# CONFIG_CRYPTO_CRC32_PCLMUL is not set
CONFIG_CRYPTO_CRCT10DIF=y
# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set
# CONFIG_CRYPTO_GHASH is not set
# CONFIG_CRYPTO_MD4 is not set
# CONFIG_CRYPTO_MD5 is not set
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
# CONFIG_CRYPTO_RMD320 is not set
# CONFIG_CRYPTO_SHA1 is not set
# CONFIG_CRYPTO_SHA1_SSSE3 is not set
# CONFIG_CRYPTO_SHA256_SSSE3 is not set
# CONFIG_CRYPTO_SHA512_SSSE3 is not set
# CONFIG_CRYPTO_SHA256 is not set
# CONFIG_CRYPTO_SHA512 is not set
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_X86_64 is not set
# CONFIG_CRYPTO_AES_NI_INTEL is not set
# CONFIG_CRYPTO_ANUBIS is not set
# CONFIG_CRYPTO_ARC4 is not set
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAST6 is not set
# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
# CONFIG_CRYPTO_DES is not set
# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_X86_64 is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_X86_64 is not set
# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set
# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set

#
# Compression
#
# CONFIG_CRYPTO_DEFLATE is not set
# CONFIG_CRYPTO_ZLIB is not set
# CONFIG_CRYPTO_LZO is not set
# CONFIG_CRYPTO_LZ4 is not set
# CONFIG_CRYPTO_LZ4HC is not set

#
# Random Number Generation
#
CONFIG_CRYPTO_ANSI_CPRNG=m
# CONFIG_CRYPTO_DRBG_MENU is not set
# CONFIG_CRYPTO_USER_API_HASH is not set
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
CONFIG_CRYPTO_HW=y
# CONFIG_CRYPTO_DEV_PADLOCK is not set
# CONFIG_CRYPTO_DEV_CCP is not set
# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
CONFIG_HAVE_KVM=y
CONFIG_VIRTUALIZATION=y
# CONFIG_KVM is not set
CONFIG_BINARY_PRINTF=y

#
# Library routines
#
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_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_IO=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
# CONFIG_CRC_CCITT is not set
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=y
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_CRC7 is not set
# CONFIG_LIBCRC32C is not set
# CONFIG_CRC8 is not set
# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
CONFIG_RANDOM32_SELFTEST=y
CONFIG_ZLIB_INFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_SPARC=y
CONFIG_XZ_DEC_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_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
CONFIG_AVERAGE=y
# CONFIG_CORDIC is not set
# CONFIG_DDR is not set
CONFIG_FONT_SUPPORT=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-08  8:40   ` [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups Amit Shah
@ 2014-08-08 16:25     ` Paul E. McKenney
  2014-08-08 17:37       ` Amit Shah
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-08 16:25 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Fri, Aug 08, 2014 at 02:10:56PM +0530, Amit Shah wrote:
> On Friday 11 July 2014 07:05 PM, Paul E. McKenney wrote:
> >From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
> >
> >An 80-CPU system with a context-switch-heavy workload can require so
> >many NOCB kthread wakeups that the RCU grace-period kthreads spend several
> >tens of percent of a CPU just awakening things.  This clearly will not
> >scale well: If you add enough CPUs, the RCU grace-period kthreads would
> >get behind, increasing grace-period latency.
> >
> >To avoid this problem, this commit divides the NOCB kthreads into leaders
> >and followers, where the grace-period kthreads awaken the leaders each of
> >whom in turn awakens its followers.  By default, the number of groups of
> >kthreads is the square root of the number of CPUs, but this default may
> >be overridden using the rcutree.rcu_nocb_leader_stride boot parameter.
> >This reduces the number of wakeups done per grace period by the RCU
> >grace-period kthread by the square root of the number of CPUs, but of
> >course by shifting those wakeups to the leaders.  In addition, because
> >the leaders do grace periods on behalf of their respective followers,
> >the number of wakeups of the followers decreases by up to a factor of two.
> >Instead of being awakened once when new callbacks arrive and again
> >at the end of the grace period, the followers are awakened only at
> >the end of the grace period.
> >
> >For a numerical example, in a 4096-CPU system, the grace-period kthread
> >would awaken 64 leaders, each of which would awaken its 63 followers
> >at the end of the grace period.  This compares favorably with the 79
> >wakeups for the grace-period kthread on an 80-CPU system.
> >
> >Reported-by: Rik van Riel <riel@redhat.com>
> >Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> 
> This patch causes KVM guest boot to not proceed after a while.
> .config is attached, and boot messages are appeneded.  This commit
> was pointed to by bisect, and reverting on current master (while
> addressing a trivial conflict) makes the boot work again.
> 
> The qemu cmdline is
> 
> ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu
> host,+kvmclock,+x2apic -enable-kvm  -kernel
> ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append
> 'root=/dev/sda2 console=ttyS0 console=tty0' -snapshot -serial stdio

I cannot reproduce this.  I am at commit a7d7a143d0b4c, in case that
makes a difference.

There are some things in your dmesg that look quite strange to me, though.

You have "--smp 2" above, but in your dmesg I see the following:

	[    0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4
	nr_cpu_ids:1 nr_node_ids:1

So your run somehow only has one CPU.  RCU agrees that there is only
one CPU:

	[    0.000000] Preemptible hierarchical RCU implementation.
	[    0.000000] 	RCU debugfs-based tracing is enabled.
	[    0.000000] 	RCU lockdep checking is enabled.
	[    0.000000] 	Additional per-CPU info printed with stalls.
	[    0.000000] 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
	[    0.000000] 	Offload RCU callbacks from all CPUs
	[    0.000000] 	Offload RCU callbacks from CPUs: 0.
	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.

But NO_HZ thinks that there are four.  This appears to be due to NO_HZ
looking at the compile-time constants, and I doubt that this would cause
a problem.  But if there really is a CPU 1 that RCU doesn't know about,
and it queues a callback, that callback will never be invoked, and you
could easily see hangs.

Give that your .config says CONFIG_NR_CPUS=4 and your qemu says "--smp 2",
why does nr_cpu_ids think that there is only one CPU?  Are you running
this on a non-x86_64 CPU so that qemu only does UP or some such?

The following is what I get (and what I would expect) with that setup:

	[    0.000000] Hierarchical RCU implementation.
	[    0.000000]  RCU debugfs-based tracing is enabled.
	[    0.000000]  RCU lockdep checking is enabled.
	[    0.000000]  Additional per-CPU info printed with stalls.
	[    0.000000]  RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
	[    0.000000]  Offload RCU callbacks from all CPUs
	[    0.000000]  Offload RCU callbacks from CPUs: 0-1.
	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.

So whatever did you do with CPU 1?  ;-)

Of course, if I tell qemu "--smp 1" instead of "--smp 2", then RCU thinks
that there is only one CPU:

	[    0.000000] Hierarchical RCU implementation.
	[    0.000000]  RCU debugfs-based tracing is enabled.
	[    0.000000]  RCU lockdep checking is enabled.
	[    0.000000]  Additional per-CPU info printed with stalls.
	[    0.000000]  RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
	[    0.000000]  Offload RCU callbacks from all CPUs
	[    0.000000]  Offload RCU callbacks from CPUs: 0.
	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.

But it still works fine for me.

> Using qemu.git.
> 
> Rik suggested collecting qemu stack traces, here they are:

And they do look like the system is waiting.

You do have a warning below.

[    0.000000] WARNING: CPU: 0 PID: 0 at mm/early_ioremap.c:136 __early_ioremap+0xf5/0x1c4()

Not sure if this is related, but it might be good to fix this one anyway.

							Thanx, Paul

> $ pgrep qemu
> 10587
> $ cat /proc/10587/stack
> [<ffffffff811fa559>] poll_schedule_timeout+0x49/0x70
> [<ffffffff811fbbf2>] do_sys_poll+0x442/0x560
> [<ffffffff811fc063>] SyS_ppoll+0x1b3/0x1d0
> [<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
> [<ffffffffffffffff>] 0xffffffffffffffff
> 
> $ cat /proc/10587/task/105
> 10587/ 10589/ 10590/ 10592/
> 
> 
> $ cat /proc/10587/task/*/stack
> [<ffffffff811fa559>] poll_schedule_timeout+0x49/0x70
> [<ffffffff811fbbf2>] do_sys_poll+0x442/0x560
> [<ffffffff811fc063>] SyS_ppoll+0x1b3/0x1d0
> [<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
> [<ffffffffffffffff>] 0xffffffffffffffff
> [<ffffffffa04d3c3d>] kvm_vcpu_block+0x7d/0xd0 [kvm]
> [<ffffffffa04ec87c>] kvm_arch_vcpu_ioctl_run+0x11c/0x1180 [kvm]
> [<ffffffffa04d6fca>] kvm_vcpu_ioctl+0x2aa/0x5a0 [kvm]
> [<ffffffff811f9ac0>] do_vfs_ioctl+0x2e0/0x4a0
> [<ffffffff811f9d01>] SyS_ioctl+0x81/0xa0
> [<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
> [<ffffffffffffffff>] 0xffffffffffffffff
> [<ffffffffa04d3c3d>] kvm_vcpu_block+0x7d/0xd0 [kvm]
> [<ffffffffa04ec87c>] kvm_arch_vcpu_ioctl_run+0x11c/0x1180 [kvm]
> [<ffffffffa04d6fca>] kvm_vcpu_ioctl+0x2aa/0x5a0 [kvm]
> [<ffffffff811f9ac0>] do_vfs_ioctl+0x2e0/0x4a0
> [<ffffffff811f9d01>] SyS_ioctl+0x81/0xa0
> [<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
> [<ffffffffffffffff>] 0xffffffffffffffff
> [<ffffffff811fa559>] poll_schedule_timeout+0x49/0x70
> [<ffffffff811fbbf2>] do_sys_poll+0x442/0x560
> [<ffffffff811fbe14>] SyS_poll+0x74/0x110
> [<ffffffff816ff969>] system_call_fastpath+0x16/0x1b
> [<ffffffffffffffff>] 0xffffffffffffffff
> 
> 
> [    0.000000] Initializing cgroup subsys cpu
> [    0.000000] Linux version 3.16.0-rc1+ (amit@grmbl.mre) (gcc
> version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #71 SMP PREEMPT Thu
> Aug 7 21:30:26 IST 2014
> [    0.000000] Command line: root=/dev/sda2 console=ttyS0 console=tty0
> [    0.000000] e820: BIOS-provided physical RAM map:
> [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
> [    0.000000] BIOS-e820: [mem
> 0x000000000009fc00-0x000000000009ffff] reserved
> [    0.000000] BIOS-e820: [mem
> 0x00000000000f0000-0x00000000000fffff] reserved
> [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001ffdffff] usable
> [    0.000000] BIOS-e820: [mem
> 0x000000001ffe0000-0x000000001fffffff] reserved
> [    0.000000] BIOS-e820: [mem
> 0x00000000feffc000-0x00000000feffffff] reserved
> [    0.000000] BIOS-e820: [mem
> 0x00000000fffc0000-0x00000000ffffffff] reserved
> [    0.000000] NX (Execute Disable) protection: active
> [    0.000000] SMBIOS 2.8 present.
> [    0.000000] Hypervisor detected: KVM
> [    0.000000] AGP: No AGP bridge found
> [    0.000000] e820: last_pfn = 0x1ffe0 max_arch_pfn = 0x400000000
> [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new
> 0x7010600070106
> [    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
> [    0.000000] init_memory_mapping: [mem 0x1f800000-0x1f9fffff]
> [    0.000000] init_memory_mapping: [mem 0x1c000000-0x1f7fffff]
> [    0.000000] init_memory_mapping: [mem 0x00100000-0x1bffffff]
> [    0.000000] init_memory_mapping: [mem 0x1fa00000-0x1ffdffff]
> [    0.000000] RAMDISK: [mem 0x1fa2e000-0x1ffeffff]
> [    0.000000] Allocated new RAMDISK: [mem 0x1f342000-0x1f903645]
> [    0.000000] Move RAMDISK from [mem 0x1fa2e000-0x1ffef645] to [mem
> 0x1f342000-0x1f903645]
> [    0.000000] ACPI: Early table checksum verification disabled
> [    0.000000] ACPI: RSDP 0x00000000000F0C50 000014 (v00 BOCHS )
> [    0.000000] ACPI: ??k? 0x000000001FFE18BD 419C3D35 (v198 9?E�G�
> �#��??�\ D5C8453D ??�� 811D127E)
> [    0.000000] ------------[ cut here ]------------
> [    0.000000] WARNING: CPU: 0 PID: 0 at mm/early_ioremap.c:136
> __early_ioremap+0xf5/0x1c4()
> [    0.000000] Modules linked in:
> [    0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 3.16.0-rc1+ #71
> [    0.000000] Hardware name: QEMU Standard PC (i440FX + PIIX,
> 1996), BIOS
> rel-1.7.5-0-ge51488c-20140602_164612-nilsson.home.kraxel.org
> 04/01/2014
> [    0.000000]  0000000000000000 6f00866b7b6a4d61 ffffffff81803d30
> ffffffff813e04f5
> [    0.000000]  0000000000000000 ffffffff81803d68 ffffffff81038668
> ffffffff81aad219
> [    0.000000]  0000000000000000 00000000000419c5 0000000000000000
> 0000000000000000
> [    0.000000] Call Trace:
> [    0.000000]  [<ffffffff813e04f5>] dump_stack+0x4e/0x7a
> [    0.000000]  [<ffffffff81038668>] warn_slowpath_common+0x7f/0x98
> [    0.000000]  [<ffffffff81aad219>] ? __early_ioremap+0xf5/0x1c4
> [    0.000000]  [<ffffffff81038779>] warn_slowpath_null+0x1a/0x1c
> [    0.000000]  [<ffffffff81aad219>] __early_ioremap+0xf5/0x1c4
> [    0.000000]  [<ffffffff810872b2>] ? wake_up_klogd+0x52/0x66
> [    0.000000]  [<ffffffff813dc655>] ? __pte+0x17/0x19
> [    0.000000]  [<ffffffff81aad49c>] early_ioremap+0x13/0x15
> [    0.000000]  [<ffffffff81a95b8b>] __acpi_map_table+0x13/0x18
> [    0.000000]  [<ffffffff813da661>] acpi_os_map_iomem+0x26/0x14b
> [    0.000000]  [<ffffffff813da794>] acpi_os_map_memory+0xe/0x10
> [    0.000000]  [<ffffffff81abcdbe>] acpi_tb_parse_root_table+0xf6/0x1d9
> [    0.000000]  [<ffffffff81abcef8>] acpi_initialize_tables+0x57/0x59
> [    0.000000]  [<ffffffff81abb49c>] acpi_table_init+0x5d/0xef
> [    0.000000]  [<ffffffff813452c3>] ? dmi_check_system+0x20/0x49
> [    0.000000]  [<ffffffff81a95f64>] acpi_boot_table_init+0x1e/0x6c
> [    0.000000]  [<ffffffff81a8e228>] setup_arch+0x883/0x95c
> [    0.000000]  [<ffffffff81a8ac0b>] start_kernel+0xe5/0x439
> [    0.000000]  [<ffffffff81a8a120>] ? early_idt_handlers+0x120/0x120
> [    0.000000]  [<ffffffff81a8a4ba>] x86_64_start_reservations+0x2a/0x2c
> [    0.000000]  [<ffffffff81a8a607>] x86_64_start_kernel+0x14b/0x16e
> [    0.000000] ---[ end trace e2f2e6a01bc90242 ]---
> [    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
> [    0.000000] kvm-clock: cpu 0, msr 0:1ffdf001, primary cpu clock
> [    0.000000] Zone ranges:
> [    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
> [    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
> [    0.000000]   Normal   empty
> [    0.000000] Movable zone start for each node
> [    0.000000] Early memory node ranges
> [    0.000000]   node   0: [mem 0x00001000-0x0009efff]
> [    0.000000]   node   0: [mem 0x00100000-0x1ffdffff]
> [    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
> [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
> [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
> [    0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
> [    0.000000] e820: [mem 0x20000000-0xfeffbfff] available for PCI devices
> [    0.000000] Booting paravirtualized kernel on KVM
> [    0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4
> nr_cpu_ids:1 nr_node_ids:1
> [    0.000000] PERCPU: Embedded 475 pages/cpu @ffff88001fc00000
> s1916480 r8192 d20928 u2097152
> [    0.000000] KVM setup async PF for cpu 0
> [    0.000000] kvm-stealtime: cpu 0, msr 1fc0cbc0
> [    0.000000] Built 1 zonelists in Zone order, mobility grouping
> on. Total pages: 128873
> [    0.000000] Kernel command line: root=/dev/sda2 console=ttyS0
> console=tty0
> [    0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)
> [    0.000000] Dentry cache hash table entries: 65536 (order: 7,
> 524288 bytes)
> [    0.000000] Inode-cache hash table entries: 32768 (order: 6,
> 262144 bytes)
> [    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
> [    0.000000] AGP: Checking aperture...
> [    0.000000] AGP: No AGP bridge found
> [    0.000000] Memory: 479824K/523768K available (4009K kernel code,
> 723K rwdata, 2172K rodata, 2868K init, 14172K bss, 43944K reserved)
> [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
> [    0.000000] Preemptible hierarchical RCU implementation.
> [    0.000000] 	RCU debugfs-based tracing is enabled.
> [    0.000000] 	RCU lockdep checking is enabled.
> [    0.000000] 	Additional per-CPU info printed with stalls.
> [    0.000000] 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
> [    0.000000] 	Offload RCU callbacks from all CPUs
> [    0.000000] 	Offload RCU callbacks from CPUs: 0.
> [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
> [    0.000000] NO_HZ: Full dynticks CPUs: 1-3.
> [    0.000000] NR_IRQS:4352 nr_irqs:256 16
> [    0.000000] Console: colour VGA+ 80x25
> [    0.000000] console [tty0] enabled
> [    0.000000] console [ttyS0] enabled
> [    0.000000] Lock dependency validator: Copyright (c) 2006 Red
> Hat, Inc., Ingo Molnar
> [    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
> [    0.000000] ... MAX_LOCK_DEPTH:          48
> [    0.000000] ... MAX_LOCKDEP_KEYS:        8191
> [    0.000000] ... CLASSHASH_SIZE:          4096
> [    0.000000] ... MAX_LOCKDEP_ENTRIES:     32768
> [    0.000000] ... MAX_LOCKDEP_CHAINS:      65536
> [    0.000000] ... CHAINHASH_SIZE:          32768
> [    0.000000]  memory used by lock dependency info: 8671 kB
> [    0.000000]  per task-struct memory footprint: 2688 bytes
> [    0.000000] tsc: Detected 2790.934 MHz processor
> [    0.008000] Calibrating delay loop (skipped) preset value..
> 5581.86 BogoMIPS (lpj=11163736)
> [    0.008000] pid_max: default: 32768 minimum: 301
> [    0.009202] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
> [    0.010479] Mountpoint-cache hash table entries: 1024 (order: 1,
> 8192 bytes)
> [    0.016838] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
> [    0.016838] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
> [    0.016838] tlb_flushall_shift: 6
> [    0.024114] debug: unmapping init [mem
> 0xffffffff81b83000-0xffffffff81b85fff]
> [    0.026826] ftrace: allocating 17803 entries in 70 pages
> [    0.036941] smpboot: weird, boot CPU (#0) not listed by the BIOS
> [    0.040023] smpboot: SMP motherboard not detected
> [    0.041689] smpboot: SMP disabled
> [    0.043189] Performance Events: 16-deep LBR, SandyBridge events,
> Intel PMU driver.
> [    0.044012] perf_event_intel: PEBS disabled due to CPU errata,
> please upgrade microcode
> [    0.048056] ... version:                2
> [    0.049446] ... bit width:              48
> [    0.050845] ... generic registers:      4
> [    0.052007] ... value mask:             0000ffffffffffff
> [    0.053708] ... max period:             000000007fffffff
> [    0.055456] ... fixed-purpose events:   3
> [    0.056015] ... event mask:             000000070000000f
> [    0.057987] KVM setup paravirtual spinlock
> [    0.081529] x86: Booted up 1 node, 1 CPUs
> [    0.082986] smpboot: Total of 1 processors activated (5581.86 BogoMIPS)
> [    0.112201] prandom: seed boundary self test passed
> [    0.114354] prandom: 100 self tests passed
> [    0.117623] NET: Registered protocol family 16
> [    0.123868] cpuidle: using governor ladder
> [    0.124056] cpuidle: using governor menu
> [    0.126206] PCI: Using configuration type 1 for base access
> 
> <and this is where it gets stuck>
> 
> 		Amit
> 

> #
> # Automatically generated file; DO NOT EDIT.
> # Linux/x86 3.16.0 Kernel Configuration
> #
> CONFIG_64BIT=y
> CONFIG_X86_64=y
> CONFIG_X86=y
> CONFIG_INSTRUCTION_DECODER=y
> CONFIG_OUTPUT_FORMAT="elf64-x86-64"
> CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
> CONFIG_LOCKDEP_SUPPORT=y
> CONFIG_STACKTRACE_SUPPORT=y
> CONFIG_HAVE_LATENCYTOP_SUPPORT=y
> CONFIG_MMU=y
> CONFIG_NEED_DMA_MAP_STATE=y
> CONFIG_NEED_SG_DMA_LENGTH=y
> CONFIG_GENERIC_ISA_DMA=y
> CONFIG_GENERIC_BUG=y
> CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
> CONFIG_GENERIC_HWEIGHT=y
> CONFIG_ARCH_MAY_HAVE_PC_FDC=y
> CONFIG_RWSEM_XCHGADD_ALGORITHM=y
> CONFIG_GENERIC_CALIBRATE_DELAY=y
> CONFIG_ARCH_HAS_CPU_RELAX=y
> CONFIG_ARCH_HAS_CACHE_LINE_SIZE=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_HUGE_PMD_SHARE=y
> CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
> CONFIG_ZONE_DMA32=y
> CONFIG_AUDIT_ARCH=y
> CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
> CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
> CONFIG_X86_64_SMP=y
> CONFIG_X86_HT=y
> CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
> CONFIG_ARCH_SUPPORTS_UPROBES=y
> CONFIG_FIX_EARLYCON_MEM=y
> CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
> CONFIG_IRQ_WORK=y
> CONFIG_BUILDTIME_EXTABLE_SORT=y
> 
> #
> # General setup
> #
> CONFIG_INIT_ENV_ARG_LIMIT=32
> CONFIG_CROSS_COMPILE=""
> # CONFIG_COMPILE_TEST is not set
> CONFIG_LOCALVERSION=""
> # CONFIG_LOCALVERSION_AUTO is not set
> 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 is not set
> # CONFIG_KERNEL_BZIP2 is not set
> # CONFIG_KERNEL_LZMA is not set
> CONFIG_KERNEL_XZ=y
> # CONFIG_KERNEL_LZO is not set
> # CONFIG_KERNEL_LZ4 is not set
> CONFIG_DEFAULT_HOSTNAME="virthost"
> CONFIG_SWAP=y
> CONFIG_SYSVIPC=y
> CONFIG_SYSVIPC_SYSCTL=y
> CONFIG_POSIX_MQUEUE=y
> CONFIG_POSIX_MQUEUE_SYSCTL=y
> # CONFIG_CROSS_MEMORY_ATTACH is not set
> # CONFIG_FHANDLE is not set
> CONFIG_USELIB=y
> CONFIG_AUDIT=y
> CONFIG_HAVE_ARCH_AUDITSYSCALL=y
> CONFIG_AUDITSYSCALL=y
> CONFIG_AUDIT_WATCH=y
> CONFIG_AUDIT_TREE=y
> 
> #
> # IRQ subsystem
> #
> CONFIG_GENERIC_IRQ_PROBE=y
> CONFIG_GENERIC_IRQ_SHOW=y
> CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ=y
> CONFIG_GENERIC_PENDING_IRQ=y
> CONFIG_IRQ_FORCED_THREADING=y
> CONFIG_SPARSE_IRQ=y
> CONFIG_CLOCKSOURCE_WATCHDOG=y
> CONFIG_ARCH_CLOCKSOURCE_DATA=y
> CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
> CONFIG_GENERIC_TIME_VSYSCALL=y
> CONFIG_GENERIC_CLOCKEVENTS=y
> CONFIG_GENERIC_CLOCKEVENTS_BUILD=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_NO_HZ_FULL_ALL=y
> # CONFIG_NO_HZ_FULL_SYSIDLE is not set
> CONFIG_NO_HZ=y
> CONFIG_HIGH_RES_TIMERS=y
> 
> #
> # CPU/Task time and stats accounting
> #
> CONFIG_VIRT_CPU_ACCOUNTING=y
> CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
> CONFIG_BSD_PROCESS_ACCT=y
> # CONFIG_BSD_PROCESS_ACCT_V3 is not set
> # CONFIG_TASKSTATS is not set
> 
> #
> # RCU Subsystem
> #
> CONFIG_TREE_PREEMPT_RCU=y
> CONFIG_PREEMPT_RCU=y
> CONFIG_RCU_STALL_COMMON=y
> CONFIG_CONTEXT_TRACKING=y
> CONFIG_RCU_USER_QS=y
> # CONFIG_CONTEXT_TRACKING_FORCE is not set
> CONFIG_RCU_FANOUT=64
> CONFIG_RCU_FANOUT_LEAF=16
> # CONFIG_RCU_FANOUT_EXACT is not set
> # CONFIG_RCU_FAST_NO_HZ is not set
> CONFIG_TREE_RCU_TRACE=y
> # CONFIG_RCU_BOOST is not set
> CONFIG_RCU_NOCB_CPU=y
> CONFIG_RCU_NOCB_CPU_ALL=y
> # CONFIG_IKCONFIG is not set
> CONFIG_LOG_BUF_SHIFT=17
> CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
> CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
> CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
> CONFIG_ARCH_SUPPORTS_INT128=y
> CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y
> CONFIG_CGROUPS=y
> # CONFIG_CGROUP_DEBUG is not set
> # CONFIG_CGROUP_FREEZER is not set
> # CONFIG_CGROUP_DEVICE is not set
> # CONFIG_CPUSETS is not set
> # CONFIG_CGROUP_CPUACCT is not set
> # CONFIG_RESOURCE_COUNTERS is not set
> # CONFIG_CGROUP_PERF is not set
> CONFIG_CGROUP_SCHED=y
> CONFIG_FAIR_GROUP_SCHED=y
> # CONFIG_CFS_BANDWIDTH is not set
> # CONFIG_RT_GROUP_SCHED is not set
> # CONFIG_BLK_CGROUP is not set
> # CONFIG_CHECKPOINT_RESTORE is not set
> CONFIG_NAMESPACES=y
> CONFIG_UTS_NS=y
> CONFIG_IPC_NS=y
> # CONFIG_USER_NS is not set
> CONFIG_PID_NS=y
> CONFIG_NET_NS=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_CC_OPTIMIZE_FOR_SIZE=y
> CONFIG_SYSCTL=y
> CONFIG_ANON_INODES=y
> CONFIG_SYSCTL_EXCEPTION_TRACE=y
> CONFIG_HAVE_PCSPKR_PLATFORM=y
> # CONFIG_EXPERT is not set
> CONFIG_SGETMASK_SYSCALL=y
> CONFIG_SYSFS_SYSCALL=y
> # CONFIG_SYSCTL_SYSCALL is not set
> CONFIG_KALLSYMS=y
> CONFIG_KALLSYMS_ALL=y
> CONFIG_PRINTK=y
> CONFIG_BUG=y
> CONFIG_ELF_CORE=y
> CONFIG_PCSPKR_PLATFORM=y
> CONFIG_BASE_FULL=y
> CONFIG_FUTEX=y
> CONFIG_EPOLL=y
> CONFIG_SIGNALFD=y
> CONFIG_TIMERFD=y
> CONFIG_EVENTFD=y
> CONFIG_SHMEM=y
> CONFIG_AIO=y
> CONFIG_PCI_QUIRKS=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
> CONFIG_VM_EVENT_COUNTERS=y
> CONFIG_SLUB_DEBUG=y
> # CONFIG_COMPAT_BRK is not set
> # CONFIG_SLAB is not set
> CONFIG_SLUB=y
> CONFIG_SLUB_CPU_PARTIAL=y
> # CONFIG_PROFILING is not set
> CONFIG_TRACEPOINTS=y
> CONFIG_HAVE_OPROFILE=y
> CONFIG_OPROFILE_NMI_TIMER=y
> # CONFIG_KPROBES is not set
> # CONFIG_JUMP_LABEL is not set
> # CONFIG_UPROBES is not set
> # CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
> CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
> CONFIG_ARCH_USE_BUILTIN_BSWAP=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_ARCH_TRACEHOOK=y
> CONFIG_HAVE_DMA_ATTRS=y
> CONFIG_HAVE_DMA_CONTIGUOUS=y
> CONFIG_GENERIC_SMP_IDLE_THREAD=y
> CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
> CONFIG_HAVE_DMA_API_DEBUG=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_PERF_REGS=y
> CONFIG_HAVE_PERF_USER_STACK_DUMP=y
> CONFIG_HAVE_ARCH_JUMP_LABEL=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_HAVE_ARCH_SECCOMP_FILTER=y
> CONFIG_SECCOMP_FILTER=y
> CONFIG_HAVE_CC_STACKPROTECTOR=y
> CONFIG_CC_STACKPROTECTOR=y
> # CONFIG_CC_STACKPROTECTOR_NONE is not set
> # CONFIG_CC_STACKPROTECTOR_REGULAR is not set
> CONFIG_CC_STACKPROTECTOR_STRONG=y
> CONFIG_HAVE_CONTEXT_TRACKING=y
> CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
> CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
> CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
> CONFIG_HAVE_ARCH_SOFT_DIRTY=y
> CONFIG_MODULES_USE_ELF_RELA=y
> CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
> 
> #
> # GCOV-based kernel profiling
> #
> # CONFIG_GCOV_KERNEL is not set
> # CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
> CONFIG_SLABINFO=y
> CONFIG_RT_MUTEXES=y
> CONFIG_BASE_SMALL=0
> CONFIG_MODULES=y
> # CONFIG_MODULE_FORCE_LOAD is not set
> CONFIG_MODULE_UNLOAD=y
> # CONFIG_MODULE_FORCE_UNLOAD is not set
> # CONFIG_MODVERSIONS is not set
> CONFIG_MODULE_SRCVERSION_ALL=y
> # CONFIG_MODULE_SIG is not set
> CONFIG_STOP_MACHINE=y
> CONFIG_BLOCK=y
> CONFIG_BLK_DEV_BSG=y
> # CONFIG_BLK_DEV_BSGLIB is not set
> CONFIG_BLK_DEV_INTEGRITY=y
> # CONFIG_BLK_CMDLINE_PARSER is not set
> 
> #
> # Partition Types
> #
> CONFIG_PARTITION_ADVANCED=y
> # CONFIG_ACORN_PARTITION is not set
> # CONFIG_AIX_PARTITION is not set
> # CONFIG_OSF_PARTITION is not set
> # CONFIG_AMIGA_PARTITION is not set
> # CONFIG_ATARI_PARTITION is not set
> # CONFIG_MAC_PARTITION is not set
> 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 is not set
> # CONFIG_ULTRIX_PARTITION is not set
> # CONFIG_SUN_PARTITION is not set
> # CONFIG_KARMA_PARTITION is not set
> CONFIG_EFI_PARTITION=y
> # CONFIG_SYSV68_PARTITION is not set
> # CONFIG_CMDLINE_PARTITION is not set
> 
> #
> # IO Schedulers
> #
> CONFIG_IOSCHED_NOOP=y
> # CONFIG_IOSCHED_DEADLINE is not set
> # CONFIG_IOSCHED_CFQ is not set
> CONFIG_DEFAULT_NOOP=y
> CONFIG_DEFAULT_IOSCHED="noop"
> CONFIG_UNINLINE_SPIN_UNLOCK=y
> CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
> CONFIG_RWSEM_SPIN_ON_OWNER=y
> CONFIG_ARCH_USE_QUEUE_RWLOCK=y
> CONFIG_QUEUE_RWLOCK=y
> CONFIG_FREEZER=y
> 
> #
> # Processor type and features
> #
> CONFIG_ZONE_DMA=y
> CONFIG_SMP=y
> # CONFIG_X86_MPPARSE is not set
> # CONFIG_X86_EXTENDED_PLATFORM is not set
> # CONFIG_X86_INTEL_LPSS is not set
> CONFIG_SCHED_OMIT_FRAME_POINTER=y
> CONFIG_HYPERVISOR_GUEST=y
> CONFIG_PARAVIRT=y
> CONFIG_PARAVIRT_DEBUG=y
> CONFIG_PARAVIRT_SPINLOCKS=y
> # CONFIG_XEN is not set
> CONFIG_KVM_GUEST=y
> CONFIG_KVM_DEBUG_FS=y
> CONFIG_PARAVIRT_TIME_ACCOUNTING=y
> CONFIG_PARAVIRT_CLOCK=y
> CONFIG_NO_BOOTMEM=y
> # CONFIG_MEMTEST is not set
> # CONFIG_MK8 is not set
> # CONFIG_MPSC is not set
> CONFIG_MCORE2=y
> # CONFIG_MATOM is not set
> # CONFIG_GENERIC_CPU is not set
> CONFIG_X86_INTERNODE_CACHE_SHIFT=6
> CONFIG_X86_L1_CACHE_SHIFT=6
> CONFIG_X86_INTEL_USERCOPY=y
> CONFIG_X86_USE_PPRO_CHECKSUM=y
> CONFIG_X86_P6_NOP=y
> CONFIG_X86_TSC=y
> CONFIG_X86_CMPXCHG64=y
> CONFIG_X86_CMOV=y
> CONFIG_X86_MINIMUM_CPU_FAMILY=64
> CONFIG_X86_DEBUGCTLMSR=y
> CONFIG_CPU_SUP_INTEL=y
> CONFIG_CPU_SUP_AMD=y
> CONFIG_CPU_SUP_CENTAUR=y
> CONFIG_HPET_TIMER=y
> CONFIG_DMI=y
> CONFIG_GART_IOMMU=y
> # CONFIG_CALGARY_IOMMU is not set
> CONFIG_SWIOTLB=y
> CONFIG_IOMMU_HELPER=y
> # CONFIG_MAXSMP is not set
> CONFIG_NR_CPUS=4
> # CONFIG_SCHED_SMT is not set
> # CONFIG_SCHED_MC is not set
> # CONFIG_PREEMPT_NONE is not set
> # CONFIG_PREEMPT_VOLUNTARY is not set
> CONFIG_PREEMPT=y
> CONFIG_PREEMPT_COUNT=y
> CONFIG_X86_LOCAL_APIC=y
> CONFIG_X86_IO_APIC=y
> CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
> # CONFIG_X86_MCE is not set
> CONFIG_X86_16BIT=y
> CONFIG_X86_ESPFIX64=y
> # CONFIG_I8K is not set
> # CONFIG_MICROCODE is not set
> # CONFIG_MICROCODE_INTEL_EARLY is not set
> # CONFIG_MICROCODE_AMD_EARLY is not set
> CONFIG_X86_MSR=y
> CONFIG_X86_CPUID=y
> CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
> CONFIG_ARCH_DMA_ADDR_T_64BIT=y
> CONFIG_DIRECT_GBPAGES=y
> # CONFIG_NUMA is not set
> CONFIG_ARCH_SPARSEMEM_ENABLE=y
> CONFIG_ARCH_SPARSEMEM_DEFAULT=y
> CONFIG_ARCH_SELECT_MEMORY_MODEL=y
> CONFIG_ARCH_PROC_KCORE_TEXT=y
> CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
> CONFIG_SELECT_MEMORY_MODEL=y
> CONFIG_SPARSEMEM_MANUAL=y
> CONFIG_SPARSEMEM=y
> CONFIG_HAVE_MEMORY_PRESENT=y
> CONFIG_SPARSEMEM_EXTREME=y
> CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
> CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
> CONFIG_SPARSEMEM_VMEMMAP=y
> CONFIG_HAVE_MEMBLOCK=y
> CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
> CONFIG_ARCH_DISCARD_MEMBLOCK=y
> # CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
> # CONFIG_MEMORY_HOTPLUG is not set
> CONFIG_PAGEFLAGS_EXTENDED=y
> CONFIG_SPLIT_PTLOCK_CPUS=4
> CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
> CONFIG_BALLOON_COMPACTION=y
> CONFIG_COMPACTION=y
> CONFIG_MIGRATION=y
> CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
> CONFIG_PHYS_ADDR_T_64BIT=y
> CONFIG_ZONE_DMA_FLAG=1
> CONFIG_BOUNCE=y
> CONFIG_VIRT_TO_BUS=y
> # CONFIG_KSM is not set
> CONFIG_DEFAULT_MMAP_MIN_ADDR=32768
> CONFIG_TRANSPARENT_HUGEPAGE=y
> CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
> # CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
> # CONFIG_CLEANCACHE is not set
> # CONFIG_FRONTSWAP is not set
> # CONFIG_CMA is not set
> # CONFIG_ZPOOL is not set
> # CONFIG_ZBUD is not set
> # CONFIG_ZSMALLOC is not set
> CONFIG_GENERIC_EARLY_IOREMAP=y
> # CONFIG_X86_CHECK_BIOS_CORRUPTION 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_EFI is not set
> CONFIG_SECCOMP=y
> # CONFIG_HZ_100 is not set
> CONFIG_HZ_250=y
> # CONFIG_HZ_300 is not set
> # CONFIG_HZ_1000 is not set
> CONFIG_HZ=250
> CONFIG_SCHED_HRTICK=y
> # CONFIG_KEXEC is not set
> # CONFIG_CRASH_DUMP is not set
> CONFIG_PHYSICAL_START=0x1000000
> # CONFIG_RELOCATABLE is not set
> CONFIG_PHYSICAL_ALIGN=0x1000000
> CONFIG_HOTPLUG_CPU=y
> # CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
> # CONFIG_DEBUG_HOTPLUG_CPU0 is not set
> # CONFIG_CMDLINE_BOOL is not set
> CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=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_PM_STD_PARTITION=""
> CONFIG_PM_SLEEP=y
> CONFIG_PM_SLEEP_SMP=y
> CONFIG_PM_AUTOSLEEP=y
> # CONFIG_PM_WAKELOCKS is not set
> # CONFIG_PM_RUNTIME is not set
> CONFIG_PM=y
> CONFIG_PM_DEBUG=y
> CONFIG_PM_ADVANCED_DEBUG=y
> CONFIG_PM_SLEEP_DEBUG=y
> # CONFIG_PM_TRACE_RTC is not set
> # CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
> CONFIG_ACPI=y
> CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
> CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
> CONFIG_ACPI_SLEEP=y
> # CONFIG_ACPI_PROCFS_POWER is not set
> # CONFIG_ACPI_EC_DEBUGFS is not set
> # CONFIG_ACPI_AC is not set
> # CONFIG_ACPI_BATTERY is not set
> CONFIG_ACPI_BUTTON=y
> CONFIG_ACPI_VIDEO=y
> # CONFIG_ACPI_FAN is not set
> CONFIG_ACPI_DOCK=y
> CONFIG_ACPI_PROCESSOR=y
> CONFIG_ACPI_HOTPLUG_CPU=y
> # CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
> # CONFIG_ACPI_THERMAL is not set
> # CONFIG_ACPI_CUSTOM_DSDT is not set
> # CONFIG_ACPI_INITRD_TABLE_OVERRIDE is not set
> # CONFIG_ACPI_DEBUG is not set
> # CONFIG_ACPI_PCI_SLOT is not set
> CONFIG_X86_PM_TIMER=y
> CONFIG_ACPI_CONTAINER=y
> # CONFIG_ACPI_SBS is not set
> # CONFIG_ACPI_HED is not set
> # CONFIG_ACPI_CUSTOM_METHOD is not set
> # CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
> CONFIG_HAVE_ACPI_APEI=y
> CONFIG_HAVE_ACPI_APEI_NMI=y
> # CONFIG_ACPI_APEI is not set
> # CONFIG_SFI is not set
> 
> #
> # CPU Frequency scaling
> #
> # CONFIG_CPU_FREQ is not set
> 
> #
> # CPU Idle
> #
> CONFIG_CPU_IDLE=y
> CONFIG_CPU_IDLE_GOV_LADDER=y
> CONFIG_CPU_IDLE_GOV_MENU=y
> # CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
> CONFIG_INTEL_IDLE=y
> 
> #
> # Memory power savings
> #
> # CONFIG_I7300_IDLE is not set
> 
> #
> # Bus options (PCI etc.)
> #
> CONFIG_PCI=y
> CONFIG_PCI_DIRECT=y
> # CONFIG_PCI_MMCONFIG is not set
> CONFIG_PCI_DOMAINS=y
> # CONFIG_PCIEPORTBUS is not set
> CONFIG_PCI_MSI=y
> # CONFIG_PCI_DEBUG is not set
> # CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
> # CONFIG_PCI_STUB is not set
> CONFIG_HT_IRQ=y
> # CONFIG_PCI_IOV is not set
> # CONFIG_PCI_PRI is not set
> # CONFIG_PCI_PASID is not set
> CONFIG_PCI_IOAPIC=y
> CONFIG_PCI_LABEL=y
> 
> #
> # PCI host controller drivers
> #
> CONFIG_ISA_DMA_API=y
> CONFIG_AMD_NB=y
> # CONFIG_PCCARD is not set
> CONFIG_HOTPLUG_PCI=y
> CONFIG_HOTPLUG_PCI_ACPI=y
> # CONFIG_HOTPLUG_PCI_ACPI_IBM is not set
> # CONFIG_HOTPLUG_PCI_CPCI is not set
> # CONFIG_HOTPLUG_PCI_SHPC is not set
> # CONFIG_RAPIDIO is not set
> # CONFIG_X86_SYSFB is not set
> 
> #
> # Executable file formats / Emulations
> #
> CONFIG_BINFMT_ELF=y
> CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
> CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
> CONFIG_BINFMT_SCRIPT=y
> # CONFIG_HAVE_AOUT is not set
> # CONFIG_BINFMT_MISC is not set
> CONFIG_COREDUMP=y
> # CONFIG_IA32_EMULATION is not set
> CONFIG_X86_DEV_DMA_OPS=y
> CONFIG_IOSF_MBI=m
> CONFIG_PMC_ATOM=y
> CONFIG_NET=y
> 
> #
> # Networking options
> #
> CONFIG_PACKET=y
> # CONFIG_PACKET_DIAG is not set
> CONFIG_UNIX=y
> # CONFIG_UNIX_DIAG is not set
> # CONFIG_XFRM_USER is not set
> # CONFIG_NET_KEY is not set
> CONFIG_INET=y
> # CONFIG_IP_MULTICAST is not set
> # CONFIG_IP_ADVANCED_ROUTER is not set
> # CONFIG_IP_PNP is not set
> # CONFIG_NET_IPIP is not set
> # CONFIG_NET_IPGRE_DEMUX is not set
> # CONFIG_NET_IP_TUNNEL is not set
> # CONFIG_SYN_COOKIES is not set
> # CONFIG_NET_UDP_TUNNEL is not set
> # CONFIG_INET_AH is not set
> # CONFIG_INET_ESP is not set
> # CONFIG_INET_IPCOMP is not set
> # CONFIG_INET_XFRM_TUNNEL is not set
> # CONFIG_INET_TUNNEL is not set
> # CONFIG_INET_XFRM_MODE_TRANSPORT is not set
> # CONFIG_INET_XFRM_MODE_TUNNEL is not set
> # CONFIG_INET_XFRM_MODE_BEET is not set
> # CONFIG_INET_LRO is not set
> # CONFIG_INET_DIAG is not set
> # CONFIG_TCP_CONG_ADVANCED is not set
> CONFIG_TCP_CONG_CUBIC=y
> CONFIG_DEFAULT_TCP_CONG="cubic"
> # CONFIG_TCP_MD5SIG is not set
> # CONFIG_IPV6 is not set
> # CONFIG_NETWORK_SECMARK is not set
> CONFIG_NET_PTP_CLASSIFY=y
> # CONFIG_NETWORK_PHY_TIMESTAMPING is not set
> # CONFIG_NETFILTER is not set
> # CONFIG_IP_DCCP is not set
> # CONFIG_IP_SCTP is not set
> # CONFIG_RDS is not set
> # CONFIG_TIPC is not set
> # CONFIG_ATM is not set
> # CONFIG_L2TP is not set
> # CONFIG_BRIDGE is not set
> CONFIG_HAVE_NET_DSA=y
> # CONFIG_VLAN_8021Q is not set
> # CONFIG_DECNET is not set
> # CONFIG_LLC2 is not set
> # CONFIG_IPX is not set
> # CONFIG_ATALK is not set
> # CONFIG_X25 is not set
> # CONFIG_LAPB is not set
> # CONFIG_PHONET is not set
> # CONFIG_IEEE802154 is not set
> # CONFIG_NET_SCHED is not set
> # CONFIG_DCB is not set
> # CONFIG_BATMAN_ADV is not set
> # CONFIG_OPENVSWITCH is not set
> # CONFIG_VSOCKETS is not set
> # CONFIG_NETLINK_MMAP is not set
> # CONFIG_NETLINK_DIAG is not set
> # CONFIG_NET_MPLS_GSO is not set
> # CONFIG_HSR is not set
> CONFIG_RPS=y
> CONFIG_RFS_ACCEL=y
> CONFIG_XPS=y
> # CONFIG_CGROUP_NET_PRIO is not set
> # CONFIG_CGROUP_NET_CLASSID is not set
> CONFIG_NET_RX_BUSY_POLL=y
> CONFIG_BQL=y
> # CONFIG_BPF_JIT is not set
> CONFIG_NET_FLOW_LIMIT=y
> 
> #
> # Network testing
> #
> # CONFIG_NET_PKTGEN is not set
> # CONFIG_NET_DROP_MONITOR is not set
> # CONFIG_HAMRADIO is not set
> # CONFIG_CAN is not set
> # CONFIG_IRDA is not set
> # CONFIG_BT is not set
> # CONFIG_AF_RXRPC is not set
> # CONFIG_WIRELESS is not set
> # CONFIG_WIMAX is not set
> # CONFIG_RFKILL is not set
> # CONFIG_NET_9P is not set
> # CONFIG_CAIF is not set
> # CONFIG_CEPH_LIB is not set
> # CONFIG_NFC is not set
> CONFIG_HAVE_BPF_JIT=y
> 
> #
> # Device Drivers
> #
> 
> #
> # Generic Driver Options
> #
> CONFIG_UEVENT_HELPER=y
> CONFIG_UEVENT_HELPER_PATH=""
> # CONFIG_DEVTMPFS is not set
> CONFIG_STANDALONE=y
> CONFIG_PREVENT_FIRMWARE_BUILD=y
> CONFIG_FW_LOADER=y
> # CONFIG_FIRMWARE_IN_KERNEL is not set
> CONFIG_EXTRA_FIRMWARE=""
> # CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
> # CONFIG_DEBUG_DRIVER is not set
> CONFIG_DEBUG_DEVRES=y
> # CONFIG_SYS_HYPERVISOR is not set
> # CONFIG_GENERIC_CPU_DEVICES is not set
> CONFIG_GENERIC_CPU_AUTOPROBE=y
> CONFIG_REGMAP=y
> CONFIG_REGMAP_MMIO=y
> # CONFIG_DMA_SHARED_BUFFER is not set
> 
> #
> # Bus devices
> #
> # CONFIG_CONNECTOR is not set
> # CONFIG_MTD is not set
> CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
> # CONFIG_PARPORT is not set
> CONFIG_PNP=y
> CONFIG_PNP_DEBUG_MESSAGES=y
> 
> #
> # Protocols
> #
> CONFIG_PNPACPI=y
> CONFIG_BLK_DEV=y
> # CONFIG_BLK_DEV_NULL_BLK is not set
> # CONFIG_BLK_DEV_FD is not set
> # CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
> # CONFIG_BLK_CPQ_CISS_DA is not set
> # CONFIG_BLK_DEV_DAC960 is not set
> # CONFIG_BLK_DEV_UMEM is not set
> # CONFIG_BLK_DEV_COW_COMMON is not set
> CONFIG_BLK_DEV_LOOP=y
> CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
> # CONFIG_BLK_DEV_CRYPTOLOOP is not set
> # CONFIG_BLK_DEV_DRBD is not set
> # CONFIG_BLK_DEV_NBD is not set
> # CONFIG_BLK_DEV_NVME is not set
> # CONFIG_BLK_DEV_SKD is not set
> # CONFIG_BLK_DEV_SX8 is not set
> CONFIG_BLK_DEV_RAM=y
> CONFIG_BLK_DEV_RAM_COUNT=16
> CONFIG_BLK_DEV_RAM_SIZE=16384
> # CONFIG_BLK_DEV_XIP is not set
> # CONFIG_CDROM_PKTCDVD is not set
> # CONFIG_ATA_OVER_ETH is not set
> CONFIG_VIRTIO_BLK=y
> # CONFIG_BLK_DEV_HD is not set
> # CONFIG_BLK_DEV_RBD is not set
> # CONFIG_BLK_DEV_RSXX is not set
> 
> #
> # Misc devices
> #
> # CONFIG_SENSORS_LIS3LV02D is not set
> # CONFIG_AD525X_DPOT is not set
> # CONFIG_DUMMY_IRQ is not set
> # CONFIG_IBM_ASM is not set
> # CONFIG_PHANTOM is not set
> # CONFIG_SGI_IOC4 is not set
> # CONFIG_TIFM_CORE is not set
> # CONFIG_ICS932S401 is not set
> # CONFIG_ENCLOSURE_SERVICES is not set
> # CONFIG_HP_ILO is not set
> # CONFIG_APDS9802ALS is not set
> # CONFIG_ISL29003 is not set
> # CONFIG_ISL29020 is not set
> # CONFIG_SENSORS_TSL2550 is not set
> # CONFIG_SENSORS_BH1780 is not set
> # CONFIG_SENSORS_BH1770 is not set
> # CONFIG_SENSORS_APDS990X is not set
> # CONFIG_HMC6352 is not set
> # CONFIG_DS1682 is not set
> # CONFIG_VMWARE_BALLOON is not set
> # CONFIG_BMP085_I2C is not set
> # CONFIG_USB_SWITCH_FSA9480 is not set
> # CONFIG_SRAM is not set
> # CONFIG_C2PORT is not set
> 
> #
> # EEPROM support
> #
> # CONFIG_EEPROM_AT24 is not set
> # CONFIG_EEPROM_LEGACY is not set
> # CONFIG_EEPROM_MAX6875 is not set
> # CONFIG_EEPROM_93CX6 is not set
> # CONFIG_CB710_CORE is not set
> 
> #
> # Texas Instruments shared transport line discipline
> #
> # CONFIG_SENSORS_LIS3_I2C is not set
> 
> #
> # Altera FPGA firmware download module
> #
> # CONFIG_ALTERA_STAPL is not set
> # CONFIG_VMWARE_VMCI is not set
> 
> #
> # Intel MIC Bus Driver
> #
> # CONFIG_INTEL_MIC_BUS is not set
> 
> #
> # Intel MIC Host Driver
> #
> 
> #
> # Intel MIC Card Driver
> #
> # CONFIG_GENWQE is not set
> # CONFIG_ECHO is not set
> CONFIG_HAVE_IDE=y
> # CONFIG_IDE is not set
> 
> #
> # SCSI device support
> #
> CONFIG_SCSI_MOD=y
> # CONFIG_RAID_ATTRS is not set
> CONFIG_SCSI=y
> CONFIG_SCSI_DMA=y
> # CONFIG_SCSI_NETLINK is not set
> # CONFIG_SCSI_PROC_FS is not set
> 
> #
> # SCSI support type (disk, tape, CD-ROM)
> #
> CONFIG_BLK_DEV_SD=y
> # CONFIG_CHR_DEV_ST is not set
> # CONFIG_CHR_DEV_OSST is not set
> CONFIG_BLK_DEV_SR=y
> # CONFIG_BLK_DEV_SR_VENDOR is not set
> # CONFIG_CHR_DEV_SG is not set
> # CONFIG_CHR_DEV_SCH is not set
> CONFIG_SCSI_CONSTANTS=y
> CONFIG_SCSI_LOGGING=y
> # CONFIG_SCSI_SCAN_ASYNC is not set
> 
> #
> # SCSI Transports
> #
> # CONFIG_SCSI_SPI_ATTRS is not set
> # CONFIG_SCSI_FC_ATTRS is not set
> # CONFIG_SCSI_ISCSI_ATTRS is not set
> # CONFIG_SCSI_SAS_ATTRS is not set
> # CONFIG_SCSI_SAS_LIBSAS is not set
> # CONFIG_SCSI_SRP_ATTRS is not set
> # CONFIG_SCSI_LOWLEVEL is not set
> # CONFIG_SCSI_DH is not set
> # CONFIG_SCSI_OSD_INITIATOR is not set
> CONFIG_ATA=y
> # CONFIG_ATA_NONSTANDARD is not set
> CONFIG_ATA_VERBOSE_ERROR=y
> # CONFIG_ATA_ACPI is not set
> # CONFIG_SATA_PMP is not set
> 
> #
> # Controllers with non-SFF native interface
> #
> # CONFIG_SATA_AHCI is not set
> # CONFIG_SATA_AHCI_PLATFORM is not set
> # CONFIG_SATA_INIC162X is not set
> # CONFIG_SATA_ACARD_AHCI is not set
> # CONFIG_SATA_SIL24 is not set
> CONFIG_ATA_SFF=y
> 
> #
> # SFF controllers with custom DMA interface
> #
> # CONFIG_PDC_ADMA is not set
> # CONFIG_SATA_QSTOR is not set
> # CONFIG_SATA_SX4 is not set
> CONFIG_ATA_BMDMA=y
> 
> #
> # SATA SFF controllers with BMDMA
> #
> CONFIG_ATA_PIIX=y
> # CONFIG_SATA_MV is not set
> # CONFIG_SATA_NV is not set
> # CONFIG_SATA_PROMISE is not set
> # CONFIG_SATA_SIL is not set
> # CONFIG_SATA_SIS is not set
> # CONFIG_SATA_SVW is not set
> # CONFIG_SATA_ULI is not set
> # CONFIG_SATA_VIA is not set
> # CONFIG_SATA_VITESSE is not set
> 
> #
> # PATA SFF controllers with BMDMA
> #
> # CONFIG_PATA_ALI is not set
> # CONFIG_PATA_AMD is not set
> # CONFIG_PATA_ARTOP is not set
> # CONFIG_PATA_ATIIXP is not set
> # CONFIG_PATA_ATP867X is not set
> # CONFIG_PATA_CMD64X is not set
> # CONFIG_PATA_CYPRESS is not set
> # CONFIG_PATA_EFAR is not set
> # CONFIG_PATA_HPT366 is not set
> # CONFIG_PATA_HPT37X is not set
> # CONFIG_PATA_HPT3X2N is not set
> # CONFIG_PATA_HPT3X3 is not set
> # CONFIG_PATA_IT8213 is not set
> # CONFIG_PATA_IT821X is not set
> # CONFIG_PATA_JMICRON is not set
> # CONFIG_PATA_MARVELL is not set
> # CONFIG_PATA_NETCELL is not set
> # CONFIG_PATA_NINJA32 is not set
> # CONFIG_PATA_NS87415 is not set
> # CONFIG_PATA_OLDPIIX is not set
> # CONFIG_PATA_OPTIDMA is not set
> # CONFIG_PATA_PDC2027X is not set
> # CONFIG_PATA_PDC_OLD is not set
> # CONFIG_PATA_RADISYS is not set
> # CONFIG_PATA_RDC is not set
> # CONFIG_PATA_SCH is not set
> # CONFIG_PATA_SERVERWORKS is not set
> # CONFIG_PATA_SIL680 is not set
> # CONFIG_PATA_SIS is not set
> # CONFIG_PATA_TOSHIBA is not set
> # CONFIG_PATA_TRIFLEX is not set
> # CONFIG_PATA_VIA is not set
> # 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_ATA_GENERIC is not set
> # CONFIG_PATA_LEGACY is not set
> CONFIG_MD=y
> # CONFIG_BLK_DEV_MD is not set
> # CONFIG_BCACHE is not set
> CONFIG_BLK_DEV_DM_BUILTIN=y
> CONFIG_BLK_DEV_DM=y
> # CONFIG_DM_DEBUG is not set
> # CONFIG_DM_CRYPT is not set
> # CONFIG_DM_SNAPSHOT is not set
> # CONFIG_DM_THIN_PROVISIONING is not set
> # CONFIG_DM_CACHE is not set
> # CONFIG_DM_ERA is not set
> # CONFIG_DM_MIRROR is not set
> # CONFIG_DM_RAID is not set
> # CONFIG_DM_ZERO is not set
> # CONFIG_DM_MULTIPATH is not set
> # CONFIG_DM_DELAY is not set
> # CONFIG_DM_UEVENT is not set
> # CONFIG_DM_FLAKEY is not set
> # CONFIG_DM_VERITY is not set
> # CONFIG_DM_SWITCH is not set
> # CONFIG_TARGET_CORE is not set
> # CONFIG_FUSION is not set
> 
> #
> # IEEE 1394 (FireWire) support
> #
> # CONFIG_FIREWIRE is not set
> # CONFIG_FIREWIRE_NOSY is not set
> # CONFIG_I2O is not set
> # CONFIG_MACINTOSH_DRIVERS is not set
> CONFIG_NETDEVICES=y
> CONFIG_NET_CORE=y
> # CONFIG_BONDING is not set
> # CONFIG_DUMMY is not set
> # CONFIG_EQUALIZER is not set
> # CONFIG_NET_FC is not set
> # CONFIG_NET_TEAM is not set
> # CONFIG_MACVLAN is not set
> # CONFIG_VXLAN is not set
> # CONFIG_NETCONSOLE is not set
> # CONFIG_NETPOLL is not set
> # CONFIG_NET_POLL_CONTROLLER is not set
> # CONFIG_TUN is not set
> # CONFIG_VETH is not set
> CONFIG_VIRTIO_NET=y
> # CONFIG_NLMON is not set
> # CONFIG_ARCNET is not set
> 
> #
> # CAIF transport drivers
> #
> # CONFIG_VHOST_NET is not set
> 
> #
> # Distributed Switch Architecture drivers
> #
> # CONFIG_NET_DSA_MV88E6XXX is not set
> # CONFIG_NET_DSA_MV88E6060 is not set
> # CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
> # CONFIG_NET_DSA_MV88E6131 is not set
> # CONFIG_NET_DSA_MV88E6123_61_65 is not set
> CONFIG_ETHERNET=y
> CONFIG_NET_VENDOR_3COM=y
> # CONFIG_VORTEX is not set
> # CONFIG_TYPHOON is not set
> CONFIG_NET_VENDOR_ADAPTEC=y
> # CONFIG_ADAPTEC_STARFIRE is not set
> CONFIG_NET_VENDOR_ALTEON=y
> # CONFIG_ACENIC is not set
> # CONFIG_ALTERA_TSE is not set
> CONFIG_NET_VENDOR_AMD=y
> # CONFIG_AMD8111_ETH is not set
> # CONFIG_PCNET32 is not set
> CONFIG_NET_VENDOR_ARC=y
> CONFIG_NET_VENDOR_ATHEROS=y
> # CONFIG_ATL2 is not set
> # CONFIG_ATL1 is not set
> # CONFIG_ATL1E is not set
> # CONFIG_ATL1C is not set
> # CONFIG_ALX is not set
> CONFIG_NET_VENDOR_BROADCOM=y
> # CONFIG_B44 is not set
> # CONFIG_BNX2 is not set
> # CONFIG_CNIC is not set
> # CONFIG_TIGON3 is not set
> # CONFIG_BNX2X is not set
> CONFIG_NET_VENDOR_BROCADE=y
> # CONFIG_BNA is not set
> # CONFIG_NET_CALXEDA_XGMAC is not set
> CONFIG_NET_VENDOR_CHELSIO=y
> # CONFIG_CHELSIO_T1 is not set
> # CONFIG_CHELSIO_T3 is not set
> # CONFIG_CHELSIO_T4 is not set
> # CONFIG_CHELSIO_T4VF is not set
> CONFIG_NET_VENDOR_CISCO=y
> # CONFIG_ENIC is not set
> # CONFIG_CX_ECAT is not set
> # CONFIG_DNET is not set
> CONFIG_NET_VENDOR_DEC=y
> # CONFIG_NET_TULIP is not set
> CONFIG_NET_VENDOR_DLINK=y
> # CONFIG_DL2K is not set
> # CONFIG_SUNDANCE is not set
> CONFIG_NET_VENDOR_EMULEX=y
> # CONFIG_BE2NET is not set
> CONFIG_NET_VENDOR_EXAR=y
> # CONFIG_S2IO is not set
> # CONFIG_VXGE is not set
> CONFIG_NET_VENDOR_HP=y
> # CONFIG_HP100 is not set
> CONFIG_NET_VENDOR_INTEL=y
> # CONFIG_E100 is not set
> CONFIG_E1000=y
> # CONFIG_E1000E is not set
> # CONFIG_IGB is not set
> # CONFIG_IGBVF is not set
> # CONFIG_IXGB is not set
> # CONFIG_IXGBE is not set
> # CONFIG_IXGBEVF is not set
> # CONFIG_I40E is not set
> # CONFIG_I40EVF is not set
> CONFIG_NET_VENDOR_I825XX=y
> # CONFIG_IP1000 is not set
> # CONFIG_JME is not set
> CONFIG_NET_VENDOR_MARVELL=y
> # CONFIG_MVMDIO is not set
> # CONFIG_SKGE is not set
> # CONFIG_SKY2 is not set
> CONFIG_NET_VENDOR_MELLANOX=y
> # CONFIG_MLX4_EN is not set
> # CONFIG_MLX4_CORE is not set
> # CONFIG_MLX5_CORE is not set
> CONFIG_NET_VENDOR_MICREL=y
> # CONFIG_KS8851_MLL is not set
> # CONFIG_KSZ884X_PCI is not set
> CONFIG_NET_VENDOR_MYRI=y
> # CONFIG_MYRI10GE is not set
> # CONFIG_FEALNX is not set
> CONFIG_NET_VENDOR_NATSEMI=y
> # CONFIG_NATSEMI is not set
> # CONFIG_NS83820 is not set
> CONFIG_NET_VENDOR_8390=y
> # CONFIG_NE2K_PCI is not set
> CONFIG_NET_VENDOR_NVIDIA=y
> # CONFIG_FORCEDETH is not set
> CONFIG_NET_VENDOR_OKI=y
> # CONFIG_ETHOC is not set
> # CONFIG_NET_PACKET_ENGINE is not set
> CONFIG_NET_VENDOR_QLOGIC=y
> # CONFIG_QLA3XXX is not set
> # CONFIG_QLCNIC is not set
> # CONFIG_QLGE is not set
> # CONFIG_NETXEN_NIC is not set
> CONFIG_NET_VENDOR_REALTEK=y
> # CONFIG_8139CP is not set
> # CONFIG_8139TOO is not set
> # CONFIG_R8169 is not set
> # CONFIG_SH_ETH is not set
> CONFIG_NET_VENDOR_RDC=y
> # CONFIG_R6040 is not set
> CONFIG_NET_VENDOR_SAMSUNG=y
> # CONFIG_SXGBE_ETH is not set
> CONFIG_NET_VENDOR_SEEQ=y
> CONFIG_NET_VENDOR_SILAN=y
> # CONFIG_SC92031 is not set
> CONFIG_NET_VENDOR_SIS=y
> # CONFIG_SIS900 is not set
> # CONFIG_SIS190 is not set
> # CONFIG_SFC is not set
> CONFIG_NET_VENDOR_SMSC=y
> # CONFIG_EPIC100 is not set
> # CONFIG_SMSC911X is not set
> # CONFIG_SMSC9420 is not set
> CONFIG_NET_VENDOR_STMICRO=y
> # CONFIG_STMMAC_ETH is not set
> CONFIG_NET_VENDOR_SUN=y
> # CONFIG_HAPPYMEAL is not set
> # CONFIG_SUNGEM is not set
> # CONFIG_CASSINI is not set
> # CONFIG_NIU is not set
> CONFIG_NET_VENDOR_TEHUTI=y
> # CONFIG_TEHUTI is not set
> CONFIG_NET_VENDOR_TI=y
> # CONFIG_TLAN is not set
> CONFIG_NET_VENDOR_VIA=y
> # CONFIG_VIA_RHINE is not set
> # CONFIG_VIA_VELOCITY is not set
> CONFIG_NET_VENDOR_WIZNET=y
> # CONFIG_WIZNET_W5100 is not set
> # CONFIG_WIZNET_W5300 is not set
> # CONFIG_FDDI is not set
> # CONFIG_HIPPI is not set
> # CONFIG_NET_SB1000 is not set
> CONFIG_PHYLIB=y
> 
> #
> # MII PHY device drivers
> #
> CONFIG_AT803X_PHY=y
> CONFIG_AMD_PHY=y
> CONFIG_MARVELL_PHY=y
> CONFIG_DAVICOM_PHY=y
> CONFIG_QSEMI_PHY=y
> CONFIG_LXT_PHY=y
> CONFIG_CICADA_PHY=y
> CONFIG_VITESSE_PHY=y
> CONFIG_SMSC_PHY=y
> CONFIG_BROADCOM_PHY=y
> # CONFIG_BCM7XXX_PHY is not set
> CONFIG_BCM87XX_PHY=y
> CONFIG_ICPLUS_PHY=y
> CONFIG_REALTEK_PHY=y
> CONFIG_NATIONAL_PHY=y
> CONFIG_STE10XP=y
> CONFIG_LSI_ET1011C_PHY=y
> CONFIG_MICREL_PHY=y
> CONFIG_FIXED_PHY=y
> CONFIG_MDIO_BITBANG=y
> # CONFIG_PPP is not set
> # CONFIG_SLIP is not set
> 
> #
> # Host-side USB support is needed for USB Network Adapter support
> #
> # CONFIG_WLAN is not set
> 
> #
> # Enable WiMAX (Networking options) to see the WiMAX drivers
> #
> # CONFIG_WAN is not set
> # CONFIG_VMXNET3 is not set
> # CONFIG_ISDN is not set
> 
> #
> # Input device support
> #
> CONFIG_INPUT=y
> # CONFIG_INPUT_FF_MEMLESS is not set
> # CONFIG_INPUT_POLLDEV is not set
> # CONFIG_INPUT_SPARSEKMAP is not set
> # 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 is not set
> # CONFIG_INPUT_EVDEV is not set
> # CONFIG_INPUT_EVBUG is not set
> 
> #
> # Input Device Drivers
> #
> CONFIG_INPUT_KEYBOARD=y
> # CONFIG_KEYBOARD_ADP5588 is not set
> # CONFIG_KEYBOARD_ADP5589 is not set
> CONFIG_KEYBOARD_ATKBD=y
> # CONFIG_KEYBOARD_QT1070 is not set
> # CONFIG_KEYBOARD_QT2160 is not set
> # CONFIG_KEYBOARD_LKKBD is not set
> # CONFIG_KEYBOARD_TCA6416 is not set
> # CONFIG_KEYBOARD_TCA8418 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_STOWAWAY is not set
> # CONFIG_KEYBOARD_SUNKBD is not set
> # CONFIG_KEYBOARD_XTKBD is not set
> # CONFIG_INPUT_MOUSE is not set
> # CONFIG_INPUT_JOYSTICK is not set
> # CONFIG_INPUT_TABLET is not set
> # CONFIG_INPUT_TOUCHSCREEN is not set
> # CONFIG_INPUT_MISC 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_PCIPS2 is not set
> CONFIG_SERIO_LIBPS2=y
> CONFIG_SERIO_RAW=y
> # CONFIG_SERIO_ALTERA_PS2 is not set
> # CONFIG_SERIO_PS2MULT is not set
> # CONFIG_SERIO_ARC_PS2 is not set
> # CONFIG_GAMEPORT is not set
> 
> #
> # 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_DEVPTS_MULTIPLE_INSTANCES=y
> # CONFIG_LEGACY_PTYS is not set
> # CONFIG_SERIAL_NONSTANDARD is not set
> # CONFIG_NOZOMI is not set
> # CONFIG_N_GSM is not set
> # CONFIG_TRACE_SINK is not set
> # CONFIG_DEVKMEM is not set
> 
> #
> # Serial drivers
> #
> CONFIG_SERIAL_EARLYCON=y
> CONFIG_SERIAL_8250=y
> CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
> CONFIG_SERIAL_8250_PNP=y
> CONFIG_SERIAL_8250_CONSOLE=y
> CONFIG_SERIAL_8250_PCI=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=y
> CONFIG_SERIAL_8250_RSA=y
> # CONFIG_SERIAL_8250_DW is not set
> 
> #
> # Non-8250 serial port support
> #
> # CONFIG_SERIAL_MFD_HSU 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_ARC is not set
> # CONFIG_SERIAL_RP2 is not set
> # CONFIG_SERIAL_FSL_LPUART is not set
> CONFIG_HVC_DRIVER=y
> CONFIG_VIRTIO_CONSOLE=y
> # CONFIG_IPMI_HANDLER is not set
> CONFIG_HW_RANDOM=y
> # CONFIG_HW_RANDOM_TIMERIOMEM is not set
> # CONFIG_HW_RANDOM_INTEL is not set
> # CONFIG_HW_RANDOM_AMD is not set
> # CONFIG_HW_RANDOM_VIA is not set
> CONFIG_HW_RANDOM_VIRTIO=y
> CONFIG_NVRAM=y
> # CONFIG_R3964 is not set
> # CONFIG_APPLICOM is not set
> # CONFIG_MWAVE is not set
> CONFIG_RAW_DRIVER=y
> CONFIG_MAX_RAW_DEVS=8192
> # CONFIG_HPET is not set
> # CONFIG_HANGCHECK_TIMER is not set
> # CONFIG_TCG_TPM is not set
> # CONFIG_TELCLOCK is not set
> CONFIG_DEVPORT=y
> CONFIG_I2C=y
> CONFIG_I2C_BOARDINFO=y
> CONFIG_I2C_COMPAT=y
> # CONFIG_I2C_CHARDEV is not set
> # CONFIG_I2C_MUX is not set
> CONFIG_I2C_HELPER_AUTO=y
> 
> #
> # 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 is not set
> # CONFIG_I2C_AMD8111 is not set
> # CONFIG_I2C_I801 is not set
> # CONFIG_I2C_ISCH is not set
> # CONFIG_I2C_ISMT is not set
> # CONFIG_I2C_PIIX4 is not set
> # CONFIG_I2C_NFORCE2 is not set
> # CONFIG_I2C_SIS5595 is not set
> # CONFIG_I2C_SIS630 is not set
> # CONFIG_I2C_SIS96X is not set
> # CONFIG_I2C_VIA is not set
> # CONFIG_I2C_VIAPRO is not set
> 
> #
> # ACPI drivers
> #
> # CONFIG_I2C_SCMI is not set
> 
> #
> # I2C system bus drivers (mostly embedded / system-on-chip)
> #
> # CONFIG_I2C_DESIGNWARE_PLATFORM is not set
> # CONFIG_I2C_DESIGNWARE_PCI is not set
> # CONFIG_I2C_OCORES is not set
> # CONFIG_I2C_PCA_PLATFORM is not set
> # CONFIG_I2C_PXA_PCI is not set
> # CONFIG_I2C_SIMTEC is not set
> # CONFIG_I2C_XILINX is not set
> 
> #
> # External I2C/SMBus adapter drivers
> #
> # CONFIG_I2C_PARPORT_LIGHT is not set
> # CONFIG_I2C_TAOS_EVM is not set
> 
> #
> # Other I2C/SMBus bus drivers
> #
> # CONFIG_I2C_STUB is not set
> # CONFIG_I2C_DEBUG_CORE is not set
> # CONFIG_I2C_DEBUG_ALGO is not set
> # CONFIG_I2C_DEBUG_BUS is not set
> # CONFIG_SPI is not set
> # CONFIG_SPMI is not set
> # CONFIG_HSI is not set
> 
> #
> # PPS support
> #
> CONFIG_PPS=y
> CONFIG_PPS_DEBUG=y
> 
> #
> # PPS clients support
> #
> CONFIG_PPS_CLIENT_KTIMER=y
> CONFIG_PPS_CLIENT_LDISC=y
> CONFIG_PPS_CLIENT_GPIO=y
> 
> #
> # PPS generators support
> #
> 
> #
> # PTP clock support
> #
> CONFIG_PTP_1588_CLOCK=y
> 
> #
> # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
> #
> CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
> # CONFIG_GPIOLIB is not set
> # CONFIG_W1 is not set
> CONFIG_POWER_SUPPLY=y
> # CONFIG_POWER_SUPPLY_DEBUG is not set
> # CONFIG_PDA_POWER is not set
> # CONFIG_TEST_POWER 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_BATTERY_BQ27x00 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_BQ2415X is not set
> # CONFIG_CHARGER_SMB347 is not set
> # CONFIG_POWER_RESET is not set
> # CONFIG_POWER_AVS is not set
> # CONFIG_HWMON is not set
> CONFIG_THERMAL=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 is not set
> CONFIG_THERMAL_GOV_STEP_WISE=y
> # CONFIG_THERMAL_GOV_USER_SPACE is not set
> # CONFIG_THERMAL_EMULATION is not set
> # CONFIG_INTEL_POWERCLAMP is not set
> # CONFIG_ACPI_INT3403_THERMAL is not set
> # CONFIG_INTEL_SOC_DTS_THERMAL is not set
> 
> #
> # Texas Instruments thermal drivers
> #
> # CONFIG_WATCHDOG is not set
> CONFIG_SSB_POSSIBLE=y
> 
> #
> # Sonics Silicon Backplane
> #
> # CONFIG_SSB is not set
> CONFIG_BCMA_POSSIBLE=y
> 
> #
> # Broadcom specific AMBA
> #
> # CONFIG_BCMA is not set
> 
> #
> # Multifunction device drivers
> #
> # CONFIG_MFD_CORE is not set
> # CONFIG_MFD_AS3711 is not set
> # CONFIG_PMIC_ADP5520 is not set
> # CONFIG_MFD_BCM590XX is not set
> # CONFIG_MFD_AXP20X is not set
> # CONFIG_MFD_CROS_EC is not set
> # CONFIG_PMIC_DA903X is not set
> # CONFIG_MFD_DA9052_I2C is not set
> # CONFIG_MFD_DA9055 is not set
> # CONFIG_MFD_DA9063 is not set
> # CONFIG_MFD_MC13XXX_I2C is not set
> # CONFIG_HTC_PASIC3 is not set
> # CONFIG_LPC_ICH is not set
> # CONFIG_LPC_SCH is not set
> # CONFIG_INTEL_SOC_PMIC 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_MAX77686 is not set
> # CONFIG_MFD_MAX77693 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_RETU is not set
> # CONFIG_MFD_PCF50633 is not set
> # CONFIG_MFD_RDC321X is not set
> # CONFIG_MFD_RTSX_PCI 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 is not set
> # CONFIG_MFD_SMSC is not set
> # CONFIG_ABX500_CORE is not set
> CONFIG_MFD_SYSCON=y
> # CONFIG_MFD_TI_AM335X_TSCADC is not set
> # CONFIG_MFD_LP3943 is not set
> # CONFIG_MFD_LP8788 is not set
> # CONFIG_MFD_PALMAS is not set
> # CONFIG_TPS6105X is not set
> # CONFIG_TPS6507X is not set
> # CONFIG_MFD_TPS65090 is not set
> # CONFIG_MFD_TPS65217 is not set
> # CONFIG_MFD_TPS65218 is not set
> # CONFIG_MFD_TPS6586X 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_TC3589X is not set
> # CONFIG_MFD_TMIO is not set
> # CONFIG_MFD_VX855 is not set
> # CONFIG_MFD_ARIZONA_I2C is not set
> # CONFIG_MFD_WM8400 is not set
> # CONFIG_MFD_WM831X_I2C is not set
> # CONFIG_MFD_WM8350_I2C is not set
> # CONFIG_MFD_WM8994 is not set
> # CONFIG_REGULATOR is not set
> # CONFIG_MEDIA_SUPPORT is not set
> 
> #
> # Graphics support
> #
> CONFIG_AGP=y
> CONFIG_AGP_AMD64=y
> CONFIG_AGP_INTEL=y
> # CONFIG_AGP_SIS is not set
> # CONFIG_AGP_VIA is not set
> CONFIG_INTEL_GTT=y
> CONFIG_VGA_ARB=y
> CONFIG_VGA_ARB_MAX_GPUS=1
> # CONFIG_VGA_SWITCHEROO is not set
> 
> #
> # Direct Rendering Manager
> #
> # CONFIG_DRM is not set
> 
> #
> # Frame buffer Devices
> #
> CONFIG_FB=y
> # CONFIG_FIRMWARE_EDID is not set
> # CONFIG_FB_DDC is not set
> # CONFIG_FB_BOOT_VESA_SUPPORT is not set
> # CONFIG_FB_CFB_FILLRECT is not set
> # CONFIG_FB_CFB_COPYAREA is not set
> # CONFIG_FB_CFB_IMAGEBLIT is not set
> # CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
> # CONFIG_FB_SYS_FILLRECT is not set
> # CONFIG_FB_SYS_COPYAREA is not set
> # CONFIG_FB_SYS_IMAGEBLIT is not set
> # CONFIG_FB_FOREIGN_ENDIAN is not set
> # CONFIG_FB_SYS_FOPS is not set
> # CONFIG_FB_SVGALIB is not set
> # CONFIG_FB_MACMODES is not set
> # CONFIG_FB_BACKLIGHT is not set
> # CONFIG_FB_MODE_HELPERS is not set
> # CONFIG_FB_TILEBLITTING is not set
> 
> #
> # 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_VESA is not set
> # 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_VIRTUAL is not set
> # CONFIG_FB_METRONOME is not set
> # CONFIG_FB_MB862XX is not set
> # CONFIG_FB_BROADSHEET is not set
> # CONFIG_FB_AUO_K190X is not set
> # CONFIG_FB_SIMPLE is not set
> CONFIG_BACKLIGHT_LCD_SUPPORT=y
> CONFIG_LCD_CLASS_DEVICE=m
> # CONFIG_LCD_PLATFORM is not set
> CONFIG_BACKLIGHT_CLASS_DEVICE=y
> CONFIG_BACKLIGHT_GENERIC=y
> # CONFIG_BACKLIGHT_APPLE is not set
> # CONFIG_BACKLIGHT_SAHARA is not set
> # CONFIG_BACKLIGHT_ADP8860 is not set
> # CONFIG_BACKLIGHT_ADP8870 is not set
> # CONFIG_BACKLIGHT_LM3639 is not set
> # CONFIG_BACKLIGHT_LV5207LP is not set
> # CONFIG_BACKLIGHT_BD6107 is not set
> # CONFIG_VGASTATE is not set
> 
> #
> # Console display driver support
> #
> CONFIG_VGA_CONSOLE=y
> CONFIG_VGACON_SOFT_SCROLLBACK=y
> CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
> CONFIG_DUMMY_CONSOLE=y
> CONFIG_FRAMEBUFFER_CONSOLE=y
> CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
> # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
> # CONFIG_LOGO is not set
> # CONFIG_SOUND is not set
> 
> #
> # HID support
> #
> CONFIG_HID=y
> # CONFIG_HID_BATTERY_STRENGTH is not set
> # CONFIG_HIDRAW is not set
> # CONFIG_UHID is not set
> CONFIG_HID_GENERIC=y
> 
> #
> # Special HID drivers
> #
> CONFIG_HID_A4TECH=y
> # CONFIG_HID_ACRUX is not set
> CONFIG_HID_APPLE=y
> # CONFIG_HID_AUREAL is not set
> CONFIG_HID_BELKIN=y
> CONFIG_HID_CHERRY=y
> CONFIG_HID_CHICONY=y
> CONFIG_HID_CYPRESS=y
> # CONFIG_HID_DRAGONRISE is not set
> # CONFIG_HID_EMS_FF is not set
> # CONFIG_HID_ELECOM is not set
> CONFIG_HID_EZKEY=y
> # CONFIG_HID_KEYTOUCH is not set
> # CONFIG_HID_KYE is not set
> # CONFIG_HID_UCLOGIC is not set
> # CONFIG_HID_WALTOP is not set
> # CONFIG_HID_GYRATION is not set
> # CONFIG_HID_ICADE is not set
> # CONFIG_HID_TWINHAN is not set
> CONFIG_HID_KENSINGTON=y
> # CONFIG_HID_LCPOWER is not set
> # CONFIG_HID_LENOVO is not set
> CONFIG_HID_LOGITECH=y
> # 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 is not set
> CONFIG_HID_MICROSOFT=y
> CONFIG_HID_MONTEREY=y
> # CONFIG_HID_MULTITOUCH is not set
> # CONFIG_HID_ORTEK is not set
> # CONFIG_HID_PANTHERLORD is not set
> # CONFIG_HID_PETALYNX is not set
> # CONFIG_HID_PICOLCD is not set
> # CONFIG_HID_PRIMAX is not set
> # CONFIG_HID_SAITEK is not set
> # CONFIG_HID_SAMSUNG is not set
> # CONFIG_HID_SPEEDLINK is not set
> # CONFIG_HID_STEELSERIES is not set
> # CONFIG_HID_SUNPLUS is not set
> # CONFIG_HID_RMI is not set
> # CONFIG_HID_GREENASIA is not set
> # CONFIG_HID_SMARTJOYPLUS is not set
> # CONFIG_HID_TIVO is not set
> # CONFIG_HID_TOPSEED is not set
> # CONFIG_HID_THRUSTMASTER is not set
> # CONFIG_HID_XINMO is not set
> # CONFIG_HID_ZEROPLUS is not set
> # CONFIG_HID_ZYDACRON is not set
> # CONFIG_HID_SENSOR_HUB is not set
> 
> #
> # I2C HID support
> #
> # CONFIG_I2C_HID is not set
> CONFIG_USB_OHCI_LITTLE_ENDIAN=y
> # CONFIG_USB_SUPPORT is not set
> # CONFIG_UWB is not set
> # CONFIG_MMC is not set
> # CONFIG_MEMSTICK is not set
> # CONFIG_NEW_LEDS is not set
> # CONFIG_ACCESSIBILITY is not set
> # CONFIG_INFINIBAND is not set
> # CONFIG_EDAC is not set
> CONFIG_RTC_LIB=y
> # CONFIG_RTC_CLASS is not set
> # CONFIG_DMADEVICES is not set
> # CONFIG_AUXDISPLAY is not set
> # CONFIG_UIO is not set
> CONFIG_VIRT_DRIVERS=y
> CONFIG_VIRTIO=y
> 
> #
> # Virtio drivers
> #
> CONFIG_VIRTIO_PCI=y
> CONFIG_VIRTIO_BALLOON=y
> # CONFIG_VIRTIO_MMIO is not set
> 
> #
> # Microsoft Hyper-V guest support
> #
> # CONFIG_HYPERV is not set
> # CONFIG_STAGING is not set
> # CONFIG_X86_PLATFORM_DEVICES is not set
> # CONFIG_CHROME_PLATFORMS is not set
> 
> #
> # SOC (System On Chip) specific Drivers
> #
> 
> #
> # Hardware Spinlock drivers
> #
> 
> #
> # Clock Source drivers
> #
> CONFIG_CLKEVT_I8253=y
> CONFIG_I8253_LOCK=y
> CONFIG_CLKBLD_I8253=y
> # CONFIG_SH_TIMER_CMT is not set
> # CONFIG_SH_TIMER_MTU2 is not set
> # CONFIG_SH_TIMER_TMU is not set
> # CONFIG_EM_TIMER_STI is not set
> # CONFIG_MAILBOX is not set
> # CONFIG_IOMMU_SUPPORT is not set
> 
> #
> # Remoteproc drivers
> #
> # CONFIG_STE_MODEM_RPROC is not set
> 
> #
> # Rpmsg drivers
> #
> # CONFIG_PM_DEVFREQ is not set
> # CONFIG_EXTCON is not set
> # CONFIG_MEMORY is not set
> # CONFIG_IIO is not set
> # CONFIG_NTB is not set
> # CONFIG_VME_BUS is not set
> # CONFIG_PWM is not set
> # CONFIG_IPACK_BUS is not set
> # CONFIG_RESET_CONTROLLER is not set
> # CONFIG_FMC is not set
> 
> #
> # PHY Subsystem
> #
> CONFIG_GENERIC_PHY=y
> CONFIG_BCM_KONA_USB2_PHY=y
> # CONFIG_POWERCAP is not set
> # CONFIG_MCB is not set
> # CONFIG_THUNDERBOLT is not set
> 
> #
> # Firmware Drivers
> #
> # CONFIG_EDD is not set
> CONFIG_FIRMWARE_MEMMAP=y
> # CONFIG_DELL_RBU is not set
> # CONFIG_DCDBAS is not set
> # CONFIG_DMIID is not set
> # CONFIG_DMI_SYSFS is not set
> CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
> # CONFIG_ISCSI_IBFT_FIND is not set
> # CONFIG_GOOGLE_FIRMWARE is not set
> 
> #
> # File systems
> #
> CONFIG_DCACHE_WORD_ACCESS=y
> # CONFIG_EXT2_FS is not set
> # CONFIG_EXT3_FS is not set
> CONFIG_EXT4_FS=y
> CONFIG_EXT4_USE_FOR_EXT23=y
> CONFIG_EXT4_FS_POSIX_ACL=y
> CONFIG_EXT4_FS_SECURITY=y
> # CONFIG_EXT4_DEBUG is not set
> CONFIG_JBD2=y
> CONFIG_JBD2_DEBUG=y
> CONFIG_FS_MBCACHE=y
> # CONFIG_REISERFS_FS is not set
> # CONFIG_JFS_FS is not set
> # CONFIG_XFS_FS is not set
> # CONFIG_GFS2_FS is not set
> # CONFIG_OCFS2_FS is not set
> # CONFIG_BTRFS_FS is not set
> # CONFIG_NILFS2_FS is not set
> CONFIG_FS_POSIX_ACL=y
> CONFIG_FILE_LOCKING=y
> CONFIG_FSNOTIFY=y
> CONFIG_DNOTIFY=y
> CONFIG_INOTIFY_USER=y
> CONFIG_FANOTIFY=y
> # CONFIG_QUOTA is not set
> # CONFIG_QUOTACTL is not set
> # CONFIG_AUTOFS4_FS is not set
> # CONFIG_FUSE_FS is not set
> 
> #
> # Caches
> #
> # CONFIG_FSCACHE is not set
> 
> #
> # CD-ROM/DVD Filesystems
> #
> CONFIG_ISO9660_FS=y
> # CONFIG_JOLIET is not set
> # CONFIG_ZISOFS is not set
> CONFIG_UDF_FS=y
> CONFIG_UDF_NLS=y
> 
> #
> # DOS/FAT/NT Filesystems
> #
> # CONFIG_MSDOS_FS is not set
> # CONFIG_VFAT_FS is not set
> # CONFIG_NTFS_FS is not set
> 
> #
> # Pseudo filesystems
> #
> CONFIG_PROC_FS=y
> CONFIG_PROC_KCORE=y
> CONFIG_PROC_SYSCTL=y
> CONFIG_PROC_PAGE_MONITOR=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_CONFIGFS_FS=y
> # CONFIG_MISC_FILESYSTEMS is not set
> # CONFIG_NETWORK_FILESYSTEMS is not set
> CONFIG_NLS=y
> CONFIG_NLS_DEFAULT="iso8859-1"
> # CONFIG_NLS_CODEPAGE_437 is not set
> # CONFIG_NLS_CODEPAGE_737 is not set
> # CONFIG_NLS_CODEPAGE_775 is not set
> # CONFIG_NLS_CODEPAGE_850 is not set
> # CONFIG_NLS_CODEPAGE_852 is not set
> # CONFIG_NLS_CODEPAGE_855 is not set
> # CONFIG_NLS_CODEPAGE_857 is not set
> # CONFIG_NLS_CODEPAGE_860 is not set
> # CONFIG_NLS_CODEPAGE_861 is not set
> # CONFIG_NLS_CODEPAGE_862 is not set
> # CONFIG_NLS_CODEPAGE_863 is not set
> # CONFIG_NLS_CODEPAGE_864 is not set
> # CONFIG_NLS_CODEPAGE_865 is not set
> # CONFIG_NLS_CODEPAGE_866 is not set
> # CONFIG_NLS_CODEPAGE_869 is not set
> # CONFIG_NLS_CODEPAGE_936 is not set
> # CONFIG_NLS_CODEPAGE_950 is not set
> # CONFIG_NLS_CODEPAGE_932 is not set
> # CONFIG_NLS_CODEPAGE_949 is not set
> # CONFIG_NLS_CODEPAGE_874 is not set
> # CONFIG_NLS_ISO8859_8 is not set
> # CONFIG_NLS_CODEPAGE_1250 is not set
> # CONFIG_NLS_CODEPAGE_1251 is not set
> # CONFIG_NLS_ASCII is not set
> # CONFIG_NLS_ISO8859_1 is not set
> # CONFIG_NLS_ISO8859_2 is not set
> # CONFIG_NLS_ISO8859_3 is not set
> # CONFIG_NLS_ISO8859_4 is not set
> # CONFIG_NLS_ISO8859_5 is not set
> # CONFIG_NLS_ISO8859_6 is not set
> # CONFIG_NLS_ISO8859_7 is not set
> # CONFIG_NLS_ISO8859_9 is not set
> # CONFIG_NLS_ISO8859_13 is not set
> # CONFIG_NLS_ISO8859_14 is not set
> # CONFIG_NLS_ISO8859_15 is not set
> # CONFIG_NLS_KOI8_R is not set
> # CONFIG_NLS_KOI8_U is not set
> # CONFIG_NLS_MAC_ROMAN is not set
> # CONFIG_NLS_MAC_CELTIC is not set
> # CONFIG_NLS_MAC_CENTEURO is not set
> # CONFIG_NLS_MAC_CROATIAN is not set
> # CONFIG_NLS_MAC_CYRILLIC is not set
> # CONFIG_NLS_MAC_GAELIC is not set
> # CONFIG_NLS_MAC_GREEK is not set
> # CONFIG_NLS_MAC_ICELAND is not set
> # CONFIG_NLS_MAC_INUIT is not set
> # CONFIG_NLS_MAC_ROMANIAN is not set
> # CONFIG_NLS_MAC_TURKISH is not set
> # CONFIG_NLS_UTF8 is not set
> # CONFIG_DLM is not set
> 
> #
> # Kernel hacking
> #
> CONFIG_TRACE_IRQFLAGS_SUPPORT=y
> 
> #
> # printk and dmesg options
> #
> CONFIG_PRINTK_TIME=y
> CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
> CONFIG_BOOT_PRINTK_DELAY=y
> # CONFIG_DYNAMIC_DEBUG is not set
> 
> #
> # Compile-time checks and compiler options
> #
> CONFIG_DEBUG_INFO=y
> # CONFIG_DEBUG_INFO_REDUCED is not set
> # CONFIG_ENABLE_WARN_DEPRECATED is not set
> CONFIG_ENABLE_MUST_CHECK=y
> CONFIG_FRAME_WARN=2048
> # CONFIG_STRIP_ASM_SYMS is not set
> # CONFIG_READABLE_ASM is not set
> CONFIG_UNUSED_SYMBOLS=y
> CONFIG_DEBUG_FS=y
> CONFIG_HEADERS_CHECK=y
> # CONFIG_DEBUG_SECTION_MISMATCH is not set
> CONFIG_ARCH_WANT_FRAME_POINTERS=y
> CONFIG_FRAME_POINTER=y
> # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
> CONFIG_MAGIC_SYSRQ=y
> CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
> CONFIG_DEBUG_KERNEL=y
> 
> #
> # Memory Debugging
> #
> CONFIG_DEBUG_PAGEALLOC=y
> CONFIG_WANT_PAGE_DEBUG_FLAGS=y
> CONFIG_PAGE_GUARD=y
> # CONFIG_DEBUG_OBJECTS is not set
> CONFIG_SLUB_DEBUG_ON=y
> # CONFIG_SLUB_STATS is not set
> CONFIG_HAVE_DEBUG_KMEMLEAK=y
> CONFIG_DEBUG_KMEMLEAK=y
> CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=400
> # CONFIG_DEBUG_KMEMLEAK_TEST is not set
> # CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF is not set
> # CONFIG_DEBUG_STACK_USAGE is not set
> # CONFIG_DEBUG_VM is not set
> # CONFIG_DEBUG_VIRTUAL is not set
> CONFIG_DEBUG_MEMORY_INIT=y
> # CONFIG_DEBUG_PER_CPU_MAPS is not set
> CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
> CONFIG_DEBUG_STACKOVERFLOW=y
> CONFIG_HAVE_ARCH_KMEMCHECK=y
> # CONFIG_DEBUG_SHIRQ is not set
> 
> #
> # Debug Lockups and Hangs
> #
> # CONFIG_LOCKUP_DETECTOR is not set
> CONFIG_DETECT_HUNG_TASK=y
> CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
> # CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
> CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
> # CONFIG_PANIC_ON_OOPS is not set
> CONFIG_PANIC_ON_OOPS_VALUE=0
> CONFIG_PANIC_TIMEOUT=0
> CONFIG_SCHED_DEBUG=y
> CONFIG_SCHEDSTATS=y
> CONFIG_TIMER_STATS=y
> CONFIG_DEBUG_PREEMPT=y
> 
> #
> # Lock Debugging (spinlocks, mutexes, etc...)
> #
> CONFIG_DEBUG_RT_MUTEXES=y
> CONFIG_DEBUG_SPINLOCK=y
> CONFIG_DEBUG_MUTEXES=y
> # CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
> CONFIG_DEBUG_LOCK_ALLOC=y
> CONFIG_PROVE_LOCKING=y
> CONFIG_LOCKDEP=y
> CONFIG_LOCK_STAT=y
> # CONFIG_DEBUG_LOCKDEP is not set
> # CONFIG_DEBUG_ATOMIC_SLEEP is not set
> # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
> # CONFIG_LOCK_TORTURE_TEST is not set
> CONFIG_TRACE_IRQFLAGS=y
> CONFIG_STACKTRACE=y
> # CONFIG_DEBUG_KOBJECT is not set
> CONFIG_DEBUG_BUGVERBOSE=y
> CONFIG_DEBUG_LIST=y
> CONFIG_DEBUG_PI_LIST=y
> CONFIG_DEBUG_SG=y
> # CONFIG_DEBUG_NOTIFIERS is not set
> # CONFIG_DEBUG_CREDENTIALS is not set
> 
> #
> # RCU Debugging
> #
> CONFIG_PROVE_RCU=y
> # CONFIG_PROVE_RCU_REPEATEDLY is not set
> CONFIG_SPARSE_RCU_POINTER=y
> CONFIG_TORTURE_TEST=y
> CONFIG_RCU_TORTURE_TEST=y
> # CONFIG_RCU_TORTURE_TEST_RUNNABLE is not set
> CONFIG_RCU_CPU_STALL_TIMEOUT=60
> CONFIG_RCU_CPU_STALL_VERBOSE=y
> CONFIG_RCU_CPU_STALL_INFO=y
> CONFIG_RCU_TRACE=y
> # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
> # CONFIG_NOTIFIER_ERROR_INJECTION is not set
> # CONFIG_FAULT_INJECTION is not set
> CONFIG_LATENCYTOP=y
> CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
> # CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
> CONFIG_USER_STACKTRACE_SUPPORT=y
> CONFIG_NOP_TRACER=y
> CONFIG_HAVE_FUNCTION_TRACER=y
> CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
> CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
> CONFIG_HAVE_DYNAMIC_FTRACE=y
> CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
> CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
> CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
> CONFIG_HAVE_FENTRY=y
> CONFIG_HAVE_C_RECORDMCOUNT=y
> CONFIG_TRACE_CLOCK=y
> CONFIG_RING_BUFFER=y
> CONFIG_EVENT_TRACING=y
> CONFIG_CONTEXT_SWITCH_TRACER=y
> CONFIG_TRACING=y
> CONFIG_GENERIC_TRACER=y
> CONFIG_TRACING_SUPPORT=y
> CONFIG_FTRACE=y
> CONFIG_FUNCTION_TRACER=y
> CONFIG_FUNCTION_GRAPH_TRACER=y
> # CONFIG_IRQSOFF_TRACER is not set
> # CONFIG_PREEMPT_TRACER is not set
> # CONFIG_SCHED_TRACER is not set
> CONFIG_FTRACE_SYSCALLS=y
> # CONFIG_TRACER_SNAPSHOT is not set
> CONFIG_BRANCH_PROFILE_NONE=y
> # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
> # CONFIG_PROFILE_ALL_BRANCHES is not set
> # CONFIG_STACK_TRACER is not set
> # CONFIG_BLK_DEV_IO_TRACE is not set
> # CONFIG_UPROBE_EVENT is not set
> # CONFIG_PROBE_EVENTS is not set
> CONFIG_DYNAMIC_FTRACE=y
> CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
> CONFIG_FUNCTION_PROFILER=y
> CONFIG_FTRACE_MCOUNT_RECORD=y
> # CONFIG_FTRACE_STARTUP_TEST is not set
> # CONFIG_MMIOTRACE is not set
> # CONFIG_TRACEPOINT_BENCHMARK is not set
> # CONFIG_RING_BUFFER_BENCHMARK is not set
> # CONFIG_RING_BUFFER_STARTUP_TEST is not set
> 
> #
> # Runtime Testing
> #
> # CONFIG_LKDTM is not set
> # CONFIG_TEST_LIST_SORT is not set
> # CONFIG_BACKTRACE_SELF_TEST is not set
> # CONFIG_RBTREE_TEST is not set
> # CONFIG_INTERVAL_TREE_TEST is not set
> # CONFIG_PERCPU_TEST is not set
> # CONFIG_ATOMIC64_SELFTEST is not set
> # CONFIG_TEST_STRING_HELPERS is not set
> # CONFIG_TEST_KSTRTOX is not set
> # CONFIG_TEST_RHASHTABLE is not set
> # CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
> # CONFIG_BUILD_DOCSRC is not set
> # CONFIG_DMA_API_DEBUG is not set
> # CONFIG_TEST_MODULE is not set
> # CONFIG_TEST_USER_COPY is not set
> # CONFIG_TEST_BPF is not set
> # CONFIG_TEST_FIRMWARE is not set
> # CONFIG_TEST_UDELAY is not set
> # CONFIG_SAMPLES is not set
> CONFIG_HAVE_ARCH_KGDB=y
> # CONFIG_KGDB is not set
> CONFIG_STRICT_DEVMEM=y
> # CONFIG_X86_VERBOSE_BOOTUP is not set
> CONFIG_EARLY_PRINTK=y
> # CONFIG_EARLY_PRINTK_DBGP is not set
> # CONFIG_X86_PTDUMP is not set
> CONFIG_DEBUG_RODATA=y
> CONFIG_DEBUG_RODATA_TEST=y
> CONFIG_DEBUG_SET_MODULE_RONX=y
> # CONFIG_DEBUG_NX_TEST is not set
> CONFIG_DOUBLEFAULT=y
> # CONFIG_DEBUG_TLBFLUSH is not set
> # CONFIG_IOMMU_DEBUG is not set
> # CONFIG_IOMMU_STRESS is not set
> CONFIG_HAVE_MMIOTRACE_SUPPORT=y
> CONFIG_IO_DELAY_TYPE_0X80=0
> CONFIG_IO_DELAY_TYPE_0XED=1
> CONFIG_IO_DELAY_TYPE_UDELAY=2
> CONFIG_IO_DELAY_TYPE_NONE=3
> 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_DEFAULT_IO_DELAY_TYPE=0
> CONFIG_DEBUG_BOOT_PARAMS=y
> # CONFIG_CPA_DEBUG is not set
> CONFIG_OPTIMIZE_INLINING=y
> # CONFIG_DEBUG_NMI_SELFTEST is not set
> # CONFIG_X86_DEBUG_STATIC_CPU_HAS is not set
> 
> #
> # Security options
> #
> # CONFIG_KEYS is not set
> # CONFIG_SECURITY_DMESG_RESTRICT is not set
> # CONFIG_SECURITY is not set
> # CONFIG_SECURITYFS is not set
> CONFIG_DEFAULT_SECURITY_DAC=y
> CONFIG_DEFAULT_SECURITY=""
> CONFIG_CRYPTO=y
> 
> #
> # Crypto core or helper
> #
> CONFIG_CRYPTO_ALGAPI=y
> CONFIG_CRYPTO_ALGAPI2=y
> CONFIG_CRYPTO_HASH=y
> CONFIG_CRYPTO_HASH2=y
> CONFIG_CRYPTO_RNG=m
> CONFIG_CRYPTO_RNG2=m
> # CONFIG_CRYPTO_MANAGER is not set
> # CONFIG_CRYPTO_MANAGER2 is not set
> # CONFIG_CRYPTO_USER is not set
> # CONFIG_CRYPTO_GF128MUL is not set
> # CONFIG_CRYPTO_NULL is not set
> # CONFIG_CRYPTO_PCRYPT is not set
> # CONFIG_CRYPTO_CRYPTD is not set
> # CONFIG_CRYPTO_AUTHENC is not set
> # CONFIG_CRYPTO_TEST is not set
> 
> #
> # Authenticated Encryption with Associated Data
> #
> # CONFIG_CRYPTO_CCM is not set
> # CONFIG_CRYPTO_GCM is not set
> # CONFIG_CRYPTO_SEQIV is not set
> 
> #
> # Block modes
> #
> # CONFIG_CRYPTO_CBC is not set
> # CONFIG_CRYPTO_CTR is not set
> # CONFIG_CRYPTO_CTS is not set
> # CONFIG_CRYPTO_ECB is not set
> # CONFIG_CRYPTO_LRW is not set
> # CONFIG_CRYPTO_PCBC is not set
> # CONFIG_CRYPTO_XTS is not set
> 
> #
> # Hash modes
> #
> # CONFIG_CRYPTO_CMAC is not set
> # CONFIG_CRYPTO_HMAC is not set
> # CONFIG_CRYPTO_XCBC is not set
> # CONFIG_CRYPTO_VMAC is not set
> 
> #
> # Digest
> #
> CONFIG_CRYPTO_CRC32C=y
> # CONFIG_CRYPTO_CRC32C_INTEL is not set
> # CONFIG_CRYPTO_CRC32 is not set
> # CONFIG_CRYPTO_CRC32_PCLMUL is not set
> CONFIG_CRYPTO_CRCT10DIF=y
> # CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set
> # CONFIG_CRYPTO_GHASH is not set
> # CONFIG_CRYPTO_MD4 is not set
> # CONFIG_CRYPTO_MD5 is not set
> # CONFIG_CRYPTO_MICHAEL_MIC is not set
> # CONFIG_CRYPTO_RMD128 is not set
> # CONFIG_CRYPTO_RMD160 is not set
> # CONFIG_CRYPTO_RMD256 is not set
> # CONFIG_CRYPTO_RMD320 is not set
> # CONFIG_CRYPTO_SHA1 is not set
> # CONFIG_CRYPTO_SHA1_SSSE3 is not set
> # CONFIG_CRYPTO_SHA256_SSSE3 is not set
> # CONFIG_CRYPTO_SHA512_SSSE3 is not set
> # CONFIG_CRYPTO_SHA256 is not set
> # CONFIG_CRYPTO_SHA512 is not set
> # CONFIG_CRYPTO_TGR192 is not set
> # CONFIG_CRYPTO_WP512 is not set
> # CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set
> 
> #
> # Ciphers
> #
> CONFIG_CRYPTO_AES=y
> # CONFIG_CRYPTO_AES_X86_64 is not set
> # CONFIG_CRYPTO_AES_NI_INTEL is not set
> # CONFIG_CRYPTO_ANUBIS is not set
> # CONFIG_CRYPTO_ARC4 is not set
> # CONFIG_CRYPTO_BLOWFISH is not set
> # CONFIG_CRYPTO_BLOWFISH_X86_64 is not set
> # CONFIG_CRYPTO_CAMELLIA is not set
> # CONFIG_CRYPTO_CAMELLIA_X86_64 is not set
> # CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set
> # CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set
> # CONFIG_CRYPTO_CAST5 is not set
> # CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set
> # CONFIG_CRYPTO_CAST6 is not set
> # CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
> # CONFIG_CRYPTO_DES is not set
> # CONFIG_CRYPTO_DES3_EDE_X86_64 is not set
> # CONFIG_CRYPTO_FCRYPT is not set
> # CONFIG_CRYPTO_KHAZAD is not set
> # CONFIG_CRYPTO_SALSA20 is not set
> # CONFIG_CRYPTO_SALSA20_X86_64 is not set
> # CONFIG_CRYPTO_SEED is not set
> # CONFIG_CRYPTO_SERPENT is not set
> # CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set
> # CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set
> # CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set
> # CONFIG_CRYPTO_TEA is not set
> # CONFIG_CRYPTO_TWOFISH is not set
> # CONFIG_CRYPTO_TWOFISH_X86_64 is not set
> # CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set
> # CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set
> 
> #
> # Compression
> #
> # CONFIG_CRYPTO_DEFLATE is not set
> # CONFIG_CRYPTO_ZLIB is not set
> # CONFIG_CRYPTO_LZO is not set
> # CONFIG_CRYPTO_LZ4 is not set
> # CONFIG_CRYPTO_LZ4HC is not set
> 
> #
> # Random Number Generation
> #
> CONFIG_CRYPTO_ANSI_CPRNG=m
> # CONFIG_CRYPTO_DRBG_MENU is not set
> # CONFIG_CRYPTO_USER_API_HASH is not set
> # CONFIG_CRYPTO_USER_API_SKCIPHER is not set
> CONFIG_CRYPTO_HW=y
> # CONFIG_CRYPTO_DEV_PADLOCK is not set
> # CONFIG_CRYPTO_DEV_CCP is not set
> # CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
> CONFIG_HAVE_KVM=y
> CONFIG_VIRTUALIZATION=y
> # CONFIG_KVM is not set
> CONFIG_BINARY_PRINTF=y
> 
> #
> # Library routines
> #
> 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_GENERIC_PCI_IOMAP=y
> CONFIG_GENERIC_IOMAP=y
> CONFIG_GENERIC_IO=y
> CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
> # CONFIG_CRC_CCITT is not set
> CONFIG_CRC16=y
> CONFIG_CRC_T10DIF=y
> CONFIG_CRC_ITU_T=y
> 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_CRC7 is not set
> # CONFIG_LIBCRC32C is not set
> # CONFIG_CRC8 is not set
> # CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
> CONFIG_RANDOM32_SELFTEST=y
> CONFIG_ZLIB_INFLATE=y
> CONFIG_LZO_COMPRESS=y
> CONFIG_LZO_DECOMPRESS=y
> CONFIG_LZ4_DECOMPRESS=y
> CONFIG_XZ_DEC=y
> CONFIG_XZ_DEC_X86=y
> CONFIG_XZ_DEC_POWERPC=y
> CONFIG_XZ_DEC_IA64=y
> CONFIG_XZ_DEC_ARM=y
> CONFIG_XZ_DEC_ARMTHUMB=y
> CONFIG_XZ_DEC_SPARC=y
> CONFIG_XZ_DEC_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_HAS_IOMEM=y
> CONFIG_HAS_IOPORT_MAP=y
> CONFIG_HAS_DMA=y
> CONFIG_CPU_RMAP=y
> CONFIG_DQL=y
> CONFIG_GLOB=y
> # CONFIG_GLOB_SELFTEST is not set
> CONFIG_NLATTR=y
> CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
> CONFIG_AVERAGE=y
> # CONFIG_CORDIC is not set
> # CONFIG_DDR is not set
> CONFIG_FONT_SUPPORT=y
> # CONFIG_FONTS is not set
> CONFIG_FONT_8x8=y
> CONFIG_FONT_8x16=y


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-08 16:25     ` Paul E. McKenney
@ 2014-08-08 17:37       ` Amit Shah
  2014-08-08 18:18         ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-08 17:37 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

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

On (Fri) 08 Aug 2014 [09:25:02], Paul E. McKenney wrote:
> On Fri, Aug 08, 2014 at 02:10:56PM +0530, Amit Shah wrote:
> > On Friday 11 July 2014 07:05 PM, Paul E. McKenney wrote:
> > >From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
> > >
> > >An 80-CPU system with a context-switch-heavy workload can require so
> > >many NOCB kthread wakeups that the RCU grace-period kthreads spend several
> > >tens of percent of a CPU just awakening things.  This clearly will not
> > >scale well: If you add enough CPUs, the RCU grace-period kthreads would
> > >get behind, increasing grace-period latency.
> > >
> > >To avoid this problem, this commit divides the NOCB kthreads into leaders
> > >and followers, where the grace-period kthreads awaken the leaders each of
> > >whom in turn awakens its followers.  By default, the number of groups of
> > >kthreads is the square root of the number of CPUs, but this default may
> > >be overridden using the rcutree.rcu_nocb_leader_stride boot parameter.
> > >This reduces the number of wakeups done per grace period by the RCU
> > >grace-period kthread by the square root of the number of CPUs, but of
> > >course by shifting those wakeups to the leaders.  In addition, because
> > >the leaders do grace periods on behalf of their respective followers,
> > >the number of wakeups of the followers decreases by up to a factor of two.
> > >Instead of being awakened once when new callbacks arrive and again
> > >at the end of the grace period, the followers are awakened only at
> > >the end of the grace period.
> > >
> > >For a numerical example, in a 4096-CPU system, the grace-period kthread
> > >would awaken 64 leaders, each of which would awaken its 63 followers
> > >at the end of the grace period.  This compares favorably with the 79
> > >wakeups for the grace-period kthread on an 80-CPU system.
> > >
> > >Reported-by: Rik van Riel <riel@redhat.com>
> > >Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> > 
> > This patch causes KVM guest boot to not proceed after a while.
> > .config is attached, and boot messages are appeneded.  This commit
> > was pointed to by bisect, and reverting on current master (while
> > addressing a trivial conflict) makes the boot work again.
> > 
> > The qemu cmdline is
> > 
> > ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu
> > host,+kvmclock,+x2apic -enable-kvm  -kernel
> > ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append
> > 'root=/dev/sda2 console=ttyS0 console=tty0' -snapshot -serial stdio
> 
> I cannot reproduce this.  I am at commit a7d7a143d0b4c, in case that
> makes a difference.

Yea; I'm at that commit too.  And the version of qemu doesn't matter;
happens on F20's qemu-kvm-1.6.2-7.fc20.x86_64 as well as qemu.git
compiled locally.

> There are some things in your dmesg that look quite strange to me, though.
> 
> You have "--smp 2" above, but in your dmesg I see the following:
> 
> 	[    0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4
> 	nr_cpu_ids:1 nr_node_ids:1
> 
> So your run somehow only has one CPU.  RCU agrees that there is only
> one CPU:

Yea; indeed.  There are MTRR warnings too; attaching the boot log of
failed run and diff to the successful run (rcu-good-notime.txt).

The failed run is on commit a7d7a143d0b4cb1914705884ca5c25e322dba693
and the successful run has these reverted on top:

187497fa5e9e9383820d33e48b87f8200a747c2a
b58cc46c5f6b57f1c814e374dbc47176e6b4938e
fbce7497ee5af800a1c350c73f3c3f103cb27a15

That is rcu-bad-notime.txt.

> 	[    0.000000] Preemptible hierarchical RCU implementation.
> 	[    0.000000] 	RCU debugfs-based tracing is enabled.
> 	[    0.000000] 	RCU lockdep checking is enabled.
> 	[    0.000000] 	Additional per-CPU info printed with stalls.
> 	[    0.000000] 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
> 	[    0.000000] 	Offload RCU callbacks from all CPUs
> 	[    0.000000] 	Offload RCU callbacks from CPUs: 0.
> 	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
> 	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.
> 
> But NO_HZ thinks that there are four.  This appears to be due to NO_HZ
> looking at the compile-time constants, and I doubt that this would cause
> a problem.  But if there really is a CPU 1 that RCU doesn't know about,
> and it queues a callback, that callback will never be invoked, and you
> could easily see hangs.
> 
> Give that your .config says CONFIG_NR_CPUS=4 and your qemu says "--smp 2",
> why does nr_cpu_ids think that there is only one CPU?  Are you running
> this on a non-x86_64 CPU so that qemu only does UP or some such?

No; this is "Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz" on a ThinkPad
T420s.

In my attached boot logs, RCU does detect two cpus.  Here's the diff
between them.  I recompiled to remove the timing info so the diffs are
comparable:

$ diff -u /var/tmp/rcu-bad-notime.txt /var/tmp/rcu-good-notime.txt 
--- /var/tmp/rcu-bad-notime.txt	       2014-08-08 22:49:37.207745682 +0530
+++ /var/tmp/rcu-good-notime.txt       2014-08-08 22:49:04.886653844 +0530
@@ -1,6 +1,6 @@
 $ ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 console=ttyS0 console=tty0'  -snapshot  -serial stdio
 Initializing cgroup subsys cpu
-Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #79 SMP PREEMPT Fri Aug 8 22:47:38 IST 2014
+Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #78 SMP PREEMPT Fri Aug 8 22:46:28 IST 2014
 Command line: root=/dev/sda2 console=ttyS0 console=tty0
 e820: BIOS-provided physical RAM map:
 BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
@@ -60,7 +60,7 @@
 e820: [mem 0x20000000-0xfeffbfff] available for PCI devices
 Booting paravirtualized kernel on KVM
 setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:2 nr_node_ids:1
-PERCPU: Embedded 475 pages/cpu @ffff88001f800000 s1916544 r8192 d20864 u2097152
+PERCPU: Embedded 475 pages/cpu @ffff88001f800000 s1915904 r8192 d21504 u2097152
 KVM setup async PF for cpu 0
 kvm-stealtime: cpu 0, msr 1f80cbc0
 Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128873
@@ -71,7 +71,7 @@
 xsave: enabled xstate_bv 0x7, cntxt size 0x340
 AGP: Checking aperture...
 AGP: No AGP bridge found
-Memory: 483812K/523768K available (4029K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 39956K reserved)
+Memory: 483812K/523768K available (4028K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 39956K reserved)
 SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
 Preemptible hierarchical RCU implementation.
 	     RCU debugfs-based tracing is enabled.
@@ -106,7 +106,7 @@
 Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
 Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
 debug: unmapping init [mem 0xffffffff81b85000-0xffffffff81b87fff]
-ftrace: allocating 17857 entries in 70 pages
+ftrace: allocating 17856 entries in 70 pages
 ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
 smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
 Performance Events: 16-deep LBR, SandyBridge events, Intel PMU driver.
@@ -138,4 +138,207 @@
 mtrr: your CPUs had inconsistent MTRRdefType settings
 mtrr: probably your BIOS does not setup all CPUs.
 mtrr: corrected configuration.
+ACPI: Added _OSI(Module Device)
+ACPI: Added _OSI(Processor Device)
+ACPI: Added _OSI(3.0 _SCP Extensions)
+ACPI: Added _OSI(Processor Aggregator Device)
+ACPI: Interpreter enabled
+ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
+ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
+ACPI: (supports S0 S3 S4 S5)
+ACPI: Using IOAPIC for interrupt routing
+PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
+ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
+acpi PNP0A03:00: _OSC: OS supports [Segments MSI]
+acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM

<followed by more bootup messages>

> The following is what I get (and what I would expect) with that setup:
> 
> 	[    0.000000] Hierarchical RCU implementation.
> 	[    0.000000]  RCU debugfs-based tracing is enabled.
> 	[    0.000000]  RCU lockdep checking is enabled.
> 	[    0.000000]  Additional per-CPU info printed with stalls.
> 	[    0.000000]  RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
> 	[    0.000000]  Offload RCU callbacks from all CPUs
> 	[    0.000000]  Offload RCU callbacks from CPUs: 0-1.
> 	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
> 	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.
> 
> So whatever did you do with CPU 1?  ;-)

Dunno; let's use the current logs here.

> Of course, if I tell qemu "--smp 1" instead of "--smp 2", then RCU thinks
> that there is only one CPU:
> 
> 	[    0.000000] Hierarchical RCU implementation.
> 	[    0.000000]  RCU debugfs-based tracing is enabled.
> 	[    0.000000]  RCU lockdep checking is enabled.
> 	[    0.000000]  Additional per-CPU info printed with stalls.
> 	[    0.000000]  RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
> 	[    0.000000]  Offload RCU callbacks from all CPUs
> 	[    0.000000]  Offload RCU callbacks from CPUs: 0.
> 	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
> 	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.
> 
> But it still works fine for me.
> 
> > Using qemu.git.
> > 
> > Rik suggested collecting qemu stack traces, here they are:
> 
> And they do look like the system is waiting.
> 
> You do have a warning below.
> 
> [    0.000000] WARNING: CPU: 0 PID: 0 at mm/early_ioremap.c:136 __early_ioremap+0xf5/0x1c4()
> 
> Not sure if this is related, but it might be good to fix this one anyway.
> 
> 							Thanx, Paul




		Amit

[-- Attachment #2: rcu-good-notime.txt --]
[-- Type: text/plain, Size: 17011 bytes --]

$ ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 console=ttyS0 console=tty0'  -snapshot  -serial stdio
Initializing cgroup subsys cpu
Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #78 SMP PREEMPT Fri Aug 8 22:46:28 IST 2014
Command line: root=/dev/sda2 console=ttyS0 console=tty0
e820: BIOS-provided physical RAM map:
BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
BIOS-e820: [mem 0x0000000000100000-0x000000001ffdffff] usable
BIOS-e820: [mem 0x000000001ffe0000-0x000000001fffffff] reserved
BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
NX (Execute Disable) protection: active
SMBIOS 2.8 present.
Hypervisor detected: KVM
AGP: No AGP bridge found
e820: last_pfn = 0x1ffe0 max_arch_pfn = 0x400000000
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
init_memory_mapping: [mem 0x00000000-0x000fffff]
init_memory_mapping: [mem 0x1fc00000-0x1fdfffff]
init_memory_mapping: [mem 0x1c000000-0x1fbfffff]
init_memory_mapping: [mem 0x00100000-0x1bffffff]
init_memory_mapping: [mem 0x1fe00000-0x1ffdffff]
ACPI: Early table checksum verification disabled
ACPI: RSDP 0x00000000000F0C50 000014 (v00 BOCHS )
ACPI: RSDT 0x000000001FFE18BD 000034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
ACPI: FACP 0x000000001FFE0B37 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
ACPI: DSDT 0x000000001FFE0040 000AF7 (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
ACPI: FACS 0x000000001FFE0000 000040
ACPI: SSDT 0x000000001FFE0BAB 000C5A (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
ACPI: APIC 0x000000001FFE1805 000080 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
ACPI: HPET 0x000000001FFE1885 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
kvm-clock: Using msrs 4b564d01 and 4b564d00
kvm-clock: cpu 0, msr 0:1ffdf001, primary cpu clock
Zone ranges:
  DMA      [mem 0x00001000-0x00ffffff]
  DMA32    [mem 0x01000000-0xffffffff]
  Normal   empty
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x00001000-0x0009efff]
  node   0: [mem 0x00100000-0x1ffdffff]
ACPI: PM-Timer IO Port: 0x608
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8086a201 base: 0xfed00000
smpboot: Allowing 2 CPUs, 0 hotplug CPUs
PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
e820: [mem 0x20000000-0xfeffbfff] available for PCI devices
Booting paravirtualized kernel on KVM
setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:2 nr_node_ids:1
PERCPU: Embedded 475 pages/cpu @ffff88001f800000 s1915904 r8192 d21504 u2097152
KVM setup async PF for cpu 0
kvm-stealtime: cpu 0, msr 1f80cbc0
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128873
Kernel command line: root=/dev/sda2 console=ttyS0 console=tty0
PID hash table entries: 2048 (order: 2, 16384 bytes)
Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
xsave: enabled xstate_bv 0x7, cntxt size 0x340
AGP: Checking aperture...
AGP: No AGP bridge found
Memory: 483812K/523768K available (4028K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 39956K reserved)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Preemptible hierarchical RCU implementation.
	RCU debugfs-based tracing is enabled.
	RCU lockdep checking is enabled.
	Additional per-CPU info printed with stalls.
	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
	Offload RCU callbacks from all CPUs
	Offload RCU callbacks from CPUs: 0-1.
RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
NO_HZ: Full dynticks CPUs: 1-3.
NR_IRQS:4352 nr_irqs:512 16
Console: colour VGA+ 80x25
console [tty0] enabled
console [ttyS0] enabled
Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
... MAX_LOCKDEP_SUBCLASSES:  8
... MAX_LOCK_DEPTH:          48
... MAX_LOCKDEP_KEYS:        8191
... CLASSHASH_SIZE:          4096
... MAX_LOCKDEP_ENTRIES:     32768
... MAX_LOCKDEP_CHAINS:      65536
... CHAINHASH_SIZE:          32768
 memory used by lock dependency info: 8671 kB
 per task-struct memory footprint: 2688 bytes
tsc: Detected 2790.934 MHz processor
Calibrating delay loop (skipped) preset value.. 5581.86 BogoMIPS (lpj=11163736)
pid_max: default: 32768 minimum: 301
ACPI: Core revision 20140724
ACPI: All ACPI Tables successfully acquired
Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
debug: unmapping init [mem 0xffffffff81b85000-0xffffffff81b87fff]
ftrace: allocating 17856 entries in 70 pages
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
Performance Events: 16-deep LBR, SandyBridge events, Intel PMU driver.
perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
... version:                2
... bit width:              48
... generic registers:      4
... value mask:             0000ffffffffffff
... max period:             000000007fffffff
... fixed-purpose events:   3
... event mask:             000000070000000f
KVM setup paravirtual spinlock
x86: Booting SMP configuration:
.... node  #0, CPUs:      #1
kvm-clock: cpu 1, msr 0:1ffdf041, secondary cpu clock
x86: Booted up 1 node, 2 CPUs
KVM setup async PF for cpu 1
kvm-stealtime: cpu 1, msr 1fa0cbc0
smpboot: Total of 2 processors activated (11163.73 BogoMIPS)
prandom: seed boundary self test passed
prandom: 100 self tests passed
NET: Registered protocol family 16
cpuidle: using governor ladder
cpuidle: using governor menu
ACPI: bus type PCI registered
acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
PCI: Using configuration type 1 for base access
mtrr: your CPUs had inconsistent variable MTRR settings
mtrr: your CPUs had inconsistent MTRRdefType settings
mtrr: probably your BIOS does not setup all CPUs.
mtrr: corrected configuration.
ACPI: Added _OSI(Module Device)
ACPI: Added _OSI(Processor Device)
ACPI: Added _OSI(3.0 _SCP Extensions)
ACPI: Added _OSI(Processor Aggregator Device)
ACPI: Interpreter enabled
ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
ACPI: (supports S0 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
acpi PNP0A03:00: _OSC: OS supports [Segments MSI]
acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
acpiphp: Slot [3] registered
acpiphp: Slot [4] registered
acpiphp: Slot [5] registered
acpiphp: Slot [6] registered
acpiphp: Slot [7] registered
acpiphp: Slot [8] registered
acpiphp: Slot [9] registered
acpiphp: Slot [10] registered
acpiphp: Slot [11] registered
acpiphp: Slot [12] registered
acpiphp: Slot [13] registered
acpiphp: Slot [14] registered
acpiphp: Slot [15] registered
acpiphp: Slot [16] registered
acpiphp: Slot [17] registered
acpiphp: Slot [18] registered
acpiphp: Slot [19] registered
acpiphp: Slot [20] registered
acpiphp: Slot [21] registered
acpiphp: Slot [22] registered
acpiphp: Slot [23] registered
acpiphp: Slot [24] registered
acpiphp: Slot [25] registered
acpiphp: Slot [26] registered
acpiphp: Slot [27] registered
acpiphp: Slot [28] registered
acpiphp: Slot [29] registered
acpiphp: Slot [30] registered
acpiphp: Slot [31] registered
PCI host bridge to bus 0000:00
pci_bus 0000:00: root bus resource [bus 00-ff]
pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
pci_bus 0000:00: root bus resource [io  0x0d00-0xadff]
pci_bus 0000:00: root bus resource [io  0xae0f-0xaeff]
pci_bus 0000:00: root bus resource [io  0xaf20-0xafdf]
pci_bus 0000:00: root bus resource [io  0xafe4-0xffff]
pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: root bus resource [mem 0x20000000-0xfebfffff]
pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
ACPI: Enabled 16 GPEs in block 00 to 0F
vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
vgaarb: bridge control possible 0000:00:02.0
SCSI subsystem initialized
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
PTP clock support registered
PCI: Using ACPI for IRQ routing
HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Switched to clocksource kvm-clock
pnp: PnP ACPI init
pnp: PnP ACPI: found 6 devices
NET: Registered protocol family 2
TCP established hash table entries: 4096 (order: 3, 32768 bytes)
TCP bind hash table entries: 4096 (order: 6, 327680 bytes)
TCP: Hash tables configured (established 4096 bind 4096)
TCP: reno registered
UDP hash table entries: 256 (order: 3, 49152 bytes)
UDP-Lite hash table entries: 256 (order: 3, 49152 bytes)
NET: Registered protocol family 1
pci 0000:00:00.0: Limiting direct PCI/PCI transfers
pci 0000:00:01.0: PIIX3: Enabling Passive Release
pci 0000:00:01.0: Activating ISA DMA hang workarounds
rcu-torture:--- Start of test: nreaders=1 nfakewriters=4 stat_interval=60 verbose=1 test_no_idle_hz=1 shuffle_interval=3 stutter=5 irqreader=1 fqs_duration=0 fqs_holdoff=0 fqs_stutter=3 test_boost=1/0 test_boost_interval=7 test_boost_duration=4 shutdown_secs=0 stall_cpu=0 stall_cpu_holdoff=10 n_barrier_cbs=0 onoff_interval=0 onoff_holdoff=0
rcu-torture: Creating rcu_torture_writer task
rcu-torture: Creating rcu_torture_fakewriter task
rcu-torture: rcu_torture_writer task started
rcu-torture: Creating rcu_torture_fakewriter task
rcu-torture: rcu_torture_fakewriter task started
rcu-torture: Creating rcu_torture_fakewriter task
rcu-torture: rcu_torture_fakewriter task started
rcu-torture: Creating rcu_torture_fakewriter task
rcu-torture: rcu_torture_fakewriter task started
rcu-torture: Creating rcu_torture_reader task
rcu-torture: rcu_torture_fakewriter task started
rcu-torture: Creating rcu_torture_stats task
rcu-torture: rcu_torture_reader task started
rcu-torture: Creating torture_shuffle task
rcu-torture: rcu_torture_stats task started
rcu-torture: Creating torture_stutter task
rcu-torture: torture_shuffle task started
rcu-torture: torture_stutter task started
futex hash table entries: 512 (order: 4, 65536 bytes)
audit: initializing netlink subsys (disabled)
audit: type=2000 audit(1407518207.595:1): initialized
HugeTLB registered 2 MB page size, pre-allocated 0 pages
msgmni has been set to 944
------------[ cut here ]------------
WARNING: CPU: 1 PID: 47 at kernel/time/tick-sched.c:192 can_stop_full_tick+0xc0/0xcc()
NO_HZ FULL will not work with unstable sched clock
Modules linked in:
CPU: 1 PID: 47 Comm: kworker/u4:1 Not tainted 3.16.0+ #78
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.7.5-0-ge51488c-20140602_164612-nilsson.home.kraxel.org 04/01/2014
 0000000000000000 0000000030a09456 ffff88001fa03ea0 ffffffff813e50b9
 ffff88001fa03ee8 ffff88001fa03ed8 ffffffff81038ed4 ffffffff810a15e0
 0000000000000000 0000000000000001 ffff88001f9d2e00 0000000000000000
Call Trace:
 <IRQ>  [<ffffffff813e50b9>] dump_stack+0x4e/0x7a
 [<ffffffff81038ed4>] warn_slowpath_common+0x7f/0x98
 [<ffffffff810a15e0>] ? can_stop_full_tick+0xc0/0xcc
 [<ffffffff81038f49>] warn_slowpath_fmt+0x5c/0x73
 [<ffffffff810a15e0>] can_stop_full_tick+0xc0/0xcc
 [<ffffffff810a20e1>] tick_nohz_irq_exit+0x68/0x84
 [<ffffffff8103cbea>] irq_exit+0xc3/0xda
 [<ffffffff813ee860>] smp_apic_timer_interrupt+0x35/0x41
 [<ffffffff813ed402>] apic_timer_interrupt+0x72/0x80
 <EOI>  [<ffffffff81044417>] ? __lock_task_sighand+0xbf/0x114
 [<ffffffff81074627>] ? arch_local_irq_restore+0x12/0x19
 [<ffffffff813ebe18>] _raw_spin_unlock_irqrestore+0x4d/0x6d
 [<ffffffff81057805>] task_rq_unlock+0x22/0x27
 [<ffffffff8105cf09>] wake_up_new_task+0xe4/0x14a
 [<ffffffff8103842b>] do_fork+0x1be/0x30f
 [<ffffffff813ebf3e>] ? _raw_spin_unlock_irq+0x2c/0x4f
 [<ffffffff81071661>] ? trace_hardirqs_on_caller+0x171/0x18d
 [<ffffffff8107168a>] ? trace_hardirqs_on+0xd/0xf
 [<ffffffff813ebf4d>] ? _raw_spin_unlock_irq+0x3b/0x4f
 [<ffffffff810385a2>] kernel_thread+0x26/0x28
 [<ffffffff81049b0a>] wait_for_helper+0x40/0x73
 [<ffffffff8105abf7>] ? schedule_tail+0x30/0x76
 [<ffffffff81049aca>] ? __call_usermodehelper+0x80/0x80
 [<ffffffff813ec37c>] ret_from_fork+0x7c/0xb0
 [<ffffffff81049aca>] ? __call_usermodehelper+0x80/0x80
---[ end trace 71e38ccd169ffd84 ]---
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
io scheduler noop registered (default)
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
ACPI: Power Button [PWRF]
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Non-volatile memory driver v1.3
Linux agpgart interface v0.103
brd: module loaded
loop: module loaded
scsi host0: ata_piix
scsi host1: ata_piix
ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc040 irq 14
ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc048 irq 15
libphy: Fixed MDIO Bus: probed
e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
e1000: Copyright (c) 1999-2006 Intel Corporation.
ata2.00: ATAPI: QEMU DVD-ROM, 2.1.50, max UDMA/100
ata1.00: ATA-7: QEMU HARDDISK, 2.1.50, max UDMA/100
ata1.00: 10485760 sectors, multi 16: LBA48 
ata2.00: configured for MWDMA2
ata1.00: configured for MWDMA2
scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    50   PQ: 0 ANSI: 5
scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.1. PQ: 0 ANSI: 5
sd 0:0:0:0: [sda] 10485760 512-byte logical blocks: (5.36 GB/5.00 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
cdrom: Uniform CD-ROM driver Revision: 3.20
 sda: sda1 sda2
sd 0:0:0:0: [sda] Attached SCSI disk
tsc: Refined TSC clocksource calibration: 2790.922 MHz
ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56
e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
serio: i8042 KBD port at 0x60,0x64 irq 1
serio: i8042 AUX port at 0x60,0x64 irq 12
mousedev: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
pps pps0: new PPS source ktimer
pps pps0: ktimer PPS source registered
pps_ldisc: PPS line discipline registered
device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
TCP: cubic registered
NET: Registered protocol family 17
kmemleak: Kernel memory leak detector initialized
kmemleak: Automatic memory scanning thread started
EXT4-fs (sda2): couldn't mount as ext3 due to feature incompatibilities
EXT4-fs (sda2): couldn't mount as ext2 due to feature incompatibilities
EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
VFS: Mounted root (ext4 filesystem) readonly on device 8:2.
debug: unmapping init [mem 0xffffffff818b7000-0xffffffff81b84fff]
Write protecting the kernel read-only data: 8192k
debug: unmapping init [mem 0xffff8800013f0000-0xffff8800013fffff]
debug: unmapping init [mem 0xffff880001622000-0xffff8800017fffff]
qemu: terminating on signal 2

[-- Attachment #3: rcu-bad-notime.txt --]
[-- Type: text/plain, Size: 7033 bytes --]

$ ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 console=ttyS0 console=tty0'  -snapshot  -serial stdio
Initializing cgroup subsys cpu
Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #79 SMP PREEMPT Fri Aug 8 22:47:38 IST 2014
Command line: root=/dev/sda2 console=ttyS0 console=tty0
e820: BIOS-provided physical RAM map:
BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
BIOS-e820: [mem 0x0000000000100000-0x000000001ffdffff] usable
BIOS-e820: [mem 0x000000001ffe0000-0x000000001fffffff] reserved
BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
NX (Execute Disable) protection: active
SMBIOS 2.8 present.
Hypervisor detected: KVM
AGP: No AGP bridge found
e820: last_pfn = 0x1ffe0 max_arch_pfn = 0x400000000
x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
init_memory_mapping: [mem 0x00000000-0x000fffff]
init_memory_mapping: [mem 0x1fc00000-0x1fdfffff]
init_memory_mapping: [mem 0x1c000000-0x1fbfffff]
init_memory_mapping: [mem 0x00100000-0x1bffffff]
init_memory_mapping: [mem 0x1fe00000-0x1ffdffff]
ACPI: Early table checksum verification disabled
ACPI: RSDP 0x00000000000F0C50 000014 (v00 BOCHS )
ACPI: RSDT 0x000000001FFE18BD 000034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
ACPI: FACP 0x000000001FFE0B37 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
ACPI: DSDT 0x000000001FFE0040 000AF7 (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
ACPI: FACS 0x000000001FFE0000 000040
ACPI: SSDT 0x000000001FFE0BAB 000C5A (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
ACPI: APIC 0x000000001FFE1805 000080 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
ACPI: HPET 0x000000001FFE1885 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
kvm-clock: Using msrs 4b564d01 and 4b564d00
kvm-clock: cpu 0, msr 0:1ffdf001, primary cpu clock
Zone ranges:
  DMA      [mem 0x00001000-0x00ffffff]
  DMA32    [mem 0x01000000-0xffffffff]
  Normal   empty
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x00001000-0x0009efff]
  node   0: [mem 0x00100000-0x1ffdffff]
ACPI: PM-Timer IO Port: 0x608
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8086a201 base: 0xfed00000
smpboot: Allowing 2 CPUs, 0 hotplug CPUs
PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
e820: [mem 0x20000000-0xfeffbfff] available for PCI devices
Booting paravirtualized kernel on KVM
setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:2 nr_node_ids:1
PERCPU: Embedded 475 pages/cpu @ffff88001f800000 s1916544 r8192 d20864 u2097152
KVM setup async PF for cpu 0
kvm-stealtime: cpu 0, msr 1f80cbc0
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128873
Kernel command line: root=/dev/sda2 console=ttyS0 console=tty0
PID hash table entries: 2048 (order: 2, 16384 bytes)
Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
xsave: enabled xstate_bv 0x7, cntxt size 0x340
AGP: Checking aperture...
AGP: No AGP bridge found
Memory: 483812K/523768K available (4029K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 39956K reserved)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Preemptible hierarchical RCU implementation.
	RCU debugfs-based tracing is enabled.
	RCU lockdep checking is enabled.
	Additional per-CPU info printed with stalls.
	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
	Offload RCU callbacks from all CPUs
	Offload RCU callbacks from CPUs: 0-1.
RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
NO_HZ: Full dynticks CPUs: 1-3.
NR_IRQS:4352 nr_irqs:512 16
Console: colour VGA+ 80x25
console [tty0] enabled
console [ttyS0] enabled
Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
... MAX_LOCKDEP_SUBCLASSES:  8
... MAX_LOCK_DEPTH:          48
... MAX_LOCKDEP_KEYS:        8191
... CLASSHASH_SIZE:          4096
... MAX_LOCKDEP_ENTRIES:     32768
... MAX_LOCKDEP_CHAINS:      65536
... CHAINHASH_SIZE:          32768
 memory used by lock dependency info: 8671 kB
 per task-struct memory footprint: 2688 bytes
tsc: Detected 2790.934 MHz processor
Calibrating delay loop (skipped) preset value.. 5581.86 BogoMIPS (lpj=11163736)
pid_max: default: 32768 minimum: 301
ACPI: Core revision 20140724
ACPI: All ACPI Tables successfully acquired
Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
debug: unmapping init [mem 0xffffffff81b85000-0xffffffff81b87fff]
ftrace: allocating 17857 entries in 70 pages
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
Performance Events: 16-deep LBR, SandyBridge events, Intel PMU driver.
perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
... version:                2
... bit width:              48
... generic registers:      4
... value mask:             0000ffffffffffff
... max period:             000000007fffffff
... fixed-purpose events:   3
... event mask:             000000070000000f
KVM setup paravirtual spinlock
x86: Booting SMP configuration:
.... node  #0, CPUs:      #1
kvm-clock: cpu 1, msr 0:1ffdf041, secondary cpu clock
x86: Booted up 1 node, 2 CPUs
KVM setup async PF for cpu 1
kvm-stealtime: cpu 1, msr 1fa0cbc0
smpboot: Total of 2 processors activated (11163.73 BogoMIPS)
prandom: seed boundary self test passed
prandom: 100 self tests passed
NET: Registered protocol family 16
cpuidle: using governor ladder
cpuidle: using governor menu
ACPI: bus type PCI registered
acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
PCI: Using configuration type 1 for base access
mtrr: your CPUs had inconsistent variable MTRR settings
mtrr: your CPUs had inconsistent MTRRdefType settings
mtrr: probably your BIOS does not setup all CPUs.
mtrr: corrected configuration.
qemu: terminating on signal 2

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-08 17:37       ` Amit Shah
@ 2014-08-08 18:18         ` Paul E. McKenney
  2014-08-08 18:34           ` Amit Shah
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-08 18:18 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Fri, Aug 08, 2014 at 11:07:10PM +0530, Amit Shah wrote:
> On (Fri) 08 Aug 2014 [09:25:02], Paul E. McKenney wrote:
> > On Fri, Aug 08, 2014 at 02:10:56PM +0530, Amit Shah wrote:
> > > On Friday 11 July 2014 07:05 PM, Paul E. McKenney wrote:
> > > >From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
> > > >
> > > >An 80-CPU system with a context-switch-heavy workload can require so
> > > >many NOCB kthread wakeups that the RCU grace-period kthreads spend several
> > > >tens of percent of a CPU just awakening things.  This clearly will not
> > > >scale well: If you add enough CPUs, the RCU grace-period kthreads would
> > > >get behind, increasing grace-period latency.
> > > >
> > > >To avoid this problem, this commit divides the NOCB kthreads into leaders
> > > >and followers, where the grace-period kthreads awaken the leaders each of
> > > >whom in turn awakens its followers.  By default, the number of groups of
> > > >kthreads is the square root of the number of CPUs, but this default may
> > > >be overridden using the rcutree.rcu_nocb_leader_stride boot parameter.
> > > >This reduces the number of wakeups done per grace period by the RCU
> > > >grace-period kthread by the square root of the number of CPUs, but of
> > > >course by shifting those wakeups to the leaders.  In addition, because
> > > >the leaders do grace periods on behalf of their respective followers,
> > > >the number of wakeups of the followers decreases by up to a factor of two.
> > > >Instead of being awakened once when new callbacks arrive and again
> > > >at the end of the grace period, the followers are awakened only at
> > > >the end of the grace period.
> > > >
> > > >For a numerical example, in a 4096-CPU system, the grace-period kthread
> > > >would awaken 64 leaders, each of which would awaken its 63 followers
> > > >at the end of the grace period.  This compares favorably with the 79
> > > >wakeups for the grace-period kthread on an 80-CPU system.
> > > >
> > > >Reported-by: Rik van Riel <riel@redhat.com>
> > > >Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> > > 
> > > This patch causes KVM guest boot to not proceed after a while.
> > > .config is attached, and boot messages are appeneded.  This commit
> > > was pointed to by bisect, and reverting on current master (while
> > > addressing a trivial conflict) makes the boot work again.
> > > 
> > > The qemu cmdline is
> > > 
> > > ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu
> > > host,+kvmclock,+x2apic -enable-kvm  -kernel
> > > ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append
> > > 'root=/dev/sda2 console=ttyS0 console=tty0' -snapshot -serial stdio
> > 
> > I cannot reproduce this.  I am at commit a7d7a143d0b4c, in case that
> > makes a difference.
> 
> Yea; I'm at that commit too.  And the version of qemu doesn't matter;
> happens on F20's qemu-kvm-1.6.2-7.fc20.x86_64 as well as qemu.git
> compiled locally.
> 
> > There are some things in your dmesg that look quite strange to me, though.
> > 
> > You have "--smp 2" above, but in your dmesg I see the following:
> > 
> > 	[    0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4
> > 	nr_cpu_ids:1 nr_node_ids:1
> > 
> > So your run somehow only has one CPU.  RCU agrees that there is only
> > one CPU:
> 
> Yea; indeed.  There are MTRR warnings too; attaching the boot log of
> failed run and diff to the successful run (rcu-good-notime.txt).

My qemu runs don't have those MTRR warnings, for whatever that is worth.

> The failed run is on commit a7d7a143d0b4cb1914705884ca5c25e322dba693
> and the successful run has these reverted on top:
> 
> 187497fa5e9e9383820d33e48b87f8200a747c2a
> b58cc46c5f6b57f1c814e374dbc47176e6b4938e
> fbce7497ee5af800a1c350c73f3c3f103cb27a15

OK.  Strange set of commits.

> That is rcu-bad-notime.txt.
> 
> > 	[    0.000000] Preemptible hierarchical RCU implementation.
> > 	[    0.000000] 	RCU debugfs-based tracing is enabled.
> > 	[    0.000000] 	RCU lockdep checking is enabled.
> > 	[    0.000000] 	Additional per-CPU info printed with stalls.
> > 	[    0.000000] 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
> > 	[    0.000000] 	Offload RCU callbacks from all CPUs
> > 	[    0.000000] 	Offload RCU callbacks from CPUs: 0.
> > 	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
> > 	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.
> > 
> > But NO_HZ thinks that there are four.  This appears to be due to NO_HZ
> > looking at the compile-time constants, and I doubt that this would cause
> > a problem.  But if there really is a CPU 1 that RCU doesn't know about,
> > and it queues a callback, that callback will never be invoked, and you
> > could easily see hangs.
> > 
> > Give that your .config says CONFIG_NR_CPUS=4 and your qemu says "--smp 2",
> > why does nr_cpu_ids think that there is only one CPU?  Are you running
> > this on a non-x86_64 CPU so that qemu only does UP or some such?
> 
> No; this is "Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz" on a ThinkPad
> T420s.

Running in 64-bit mode, right?

> In my attached boot logs, RCU does detect two cpus.  Here's the diff
> between them.  I recompiled to remove the timing info so the diffs are
> comparable:
> 
> $ diff -u /var/tmp/rcu-bad-notime.txt /var/tmp/rcu-good-notime.txt 
> --- /var/tmp/rcu-bad-notime.txt	       2014-08-08 22:49:37.207745682 +0530
> +++ /var/tmp/rcu-good-notime.txt       2014-08-08 22:49:04.886653844 +0530
> @@ -1,6 +1,6 @@
>  $ ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 console=ttyS0 console=tty0'  -snapshot  -serial stdio
>  Initializing cgroup subsys cpu
> -Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #79 SMP PREEMPT Fri Aug 8 22:47:38 IST 2014
> +Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #78 SMP PREEMPT Fri Aug 8 22:46:28 IST 2014
>  Command line: root=/dev/sda2 console=ttyS0 console=tty0
>  e820: BIOS-provided physical RAM map:
>  BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
> @@ -60,7 +60,7 @@
>  e820: [mem 0x20000000-0xfeffbfff] available for PCI devices
>  Booting paravirtualized kernel on KVM
>  setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:2 nr_node_ids:1
> -PERCPU: Embedded 475 pages/cpu @ffff88001f800000 s1916544 r8192 d20864 u2097152
> +PERCPU: Embedded 475 pages/cpu @ffff88001f800000 s1915904 r8192 d21504 u2097152
>  KVM setup async PF for cpu 0
>  kvm-stealtime: cpu 0, msr 1f80cbc0
>  Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128873
> @@ -71,7 +71,7 @@
>  xsave: enabled xstate_bv 0x7, cntxt size 0x340
>  AGP: Checking aperture...
>  AGP: No AGP bridge found
> -Memory: 483812K/523768K available (4029K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 39956K reserved)
> +Memory: 483812K/523768K available (4028K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 39956K reserved)
>  SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
>  Preemptible hierarchical RCU implementation.
>  	     RCU debugfs-based tracing is enabled.
> @@ -106,7 +106,7 @@
>  Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
>  Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
>  debug: unmapping init [mem 0xffffffff81b85000-0xffffffff81b87fff]
> -ftrace: allocating 17857 entries in 70 pages
> +ftrace: allocating 17856 entries in 70 pages
>  ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
>  smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
>  Performance Events: 16-deep LBR, SandyBridge events, Intel PMU driver.
> @@ -138,4 +138,207 @@
>  mtrr: your CPUs had inconsistent MTRRdefType settings
>  mtrr: probably your BIOS does not setup all CPUs.
>  mtrr: corrected configuration.
> +ACPI: Added _OSI(Module Device)
> +ACPI: Added _OSI(Processor Device)
> +ACPI: Added _OSI(3.0 _SCP Extensions)
> +ACPI: Added _OSI(Processor Aggregator Device)
> +ACPI: Interpreter enabled
> +ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
> +ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
> +ACPI: (supports S0 S3 S4 S5)
> +ACPI: Using IOAPIC for interrupt routing
> +PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> +ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
> +acpi PNP0A03:00: _OSC: OS supports [Segments MSI]
> +acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
> 
> <followed by more bootup messages>

Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
with the kernel parameter "acpi=off"?

							Thanx, Paul

> > The following is what I get (and what I would expect) with that setup:
> > 
> > 	[    0.000000] Hierarchical RCU implementation.
> > 	[    0.000000]  RCU debugfs-based tracing is enabled.
> > 	[    0.000000]  RCU lockdep checking is enabled.
> > 	[    0.000000]  Additional per-CPU info printed with stalls.
> > 	[    0.000000]  RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
> > 	[    0.000000]  Offload RCU callbacks from all CPUs
> > 	[    0.000000]  Offload RCU callbacks from CPUs: 0-1.
> > 	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
> > 	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.
> > 
> > So whatever did you do with CPU 1?  ;-)
> 
> Dunno; let's use the current logs here.
> 
> > Of course, if I tell qemu "--smp 1" instead of "--smp 2", then RCU thinks
> > that there is only one CPU:
> > 
> > 	[    0.000000] Hierarchical RCU implementation.
> > 	[    0.000000]  RCU debugfs-based tracing is enabled.
> > 	[    0.000000]  RCU lockdep checking is enabled.
> > 	[    0.000000]  Additional per-CPU info printed with stalls.
> > 	[    0.000000]  RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
> > 	[    0.000000]  Offload RCU callbacks from all CPUs
> > 	[    0.000000]  Offload RCU callbacks from CPUs: 0.
> > 	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
> > 	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.
> > 
> > But it still works fine for me.
> > 
> > > Using qemu.git.
> > > 
> > > Rik suggested collecting qemu stack traces, here they are:
> > 
> > And they do look like the system is waiting.
> > 
> > You do have a warning below.
> > 
> > [    0.000000] WARNING: CPU: 0 PID: 0 at mm/early_ioremap.c:136 __early_ioremap+0xf5/0x1c4()
> > 
> > Not sure if this is related, but it might be good to fix this one anyway.
> > 
> > 							Thanx, Paul
> 
> 
> 
> 
> 		Amit

> $ ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 console=ttyS0 console=tty0'  -snapshot  -serial stdio
> Initializing cgroup subsys cpu
> Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #78 SMP PREEMPT Fri Aug 8 22:46:28 IST 2014
> Command line: root=/dev/sda2 console=ttyS0 console=tty0
> e820: BIOS-provided physical RAM map:
> BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
> BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
> BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
> BIOS-e820: [mem 0x0000000000100000-0x000000001ffdffff] usable
> BIOS-e820: [mem 0x000000001ffe0000-0x000000001fffffff] reserved
> BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
> BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
> NX (Execute Disable) protection: active
> SMBIOS 2.8 present.
> Hypervisor detected: KVM
> AGP: No AGP bridge found
> e820: last_pfn = 0x1ffe0 max_arch_pfn = 0x400000000
> x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
> init_memory_mapping: [mem 0x00000000-0x000fffff]
> init_memory_mapping: [mem 0x1fc00000-0x1fdfffff]
> init_memory_mapping: [mem 0x1c000000-0x1fbfffff]
> init_memory_mapping: [mem 0x00100000-0x1bffffff]
> init_memory_mapping: [mem 0x1fe00000-0x1ffdffff]
> ACPI: Early table checksum verification disabled
> ACPI: RSDP 0x00000000000F0C50 000014 (v00 BOCHS )
> ACPI: RSDT 0x000000001FFE18BD 000034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
> ACPI: FACP 0x000000001FFE0B37 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
> ACPI: DSDT 0x000000001FFE0040 000AF7 (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
> ACPI: FACS 0x000000001FFE0000 000040
> ACPI: SSDT 0x000000001FFE0BAB 000C5A (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
> ACPI: APIC 0x000000001FFE1805 000080 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
> ACPI: HPET 0x000000001FFE1885 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
> kvm-clock: Using msrs 4b564d01 and 4b564d00
> kvm-clock: cpu 0, msr 0:1ffdf001, primary cpu clock
> Zone ranges:
>   DMA      [mem 0x00001000-0x00ffffff]
>   DMA32    [mem 0x01000000-0xffffffff]
>   Normal   empty
> Movable zone start for each node
> Early memory node ranges
>   node   0: [mem 0x00001000-0x0009efff]
>   node   0: [mem 0x00100000-0x1ffdffff]
> ACPI: PM-Timer IO Port: 0x608
> ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
> ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
> ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
> ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
> IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
> ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
> Using ACPI (MADT) for SMP configuration information
> ACPI: HPET id: 0x8086a201 base: 0xfed00000
> smpboot: Allowing 2 CPUs, 0 hotplug CPUs
> PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
> PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
> PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
> e820: [mem 0x20000000-0xfeffbfff] available for PCI devices
> Booting paravirtualized kernel on KVM
> setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:2 nr_node_ids:1
> PERCPU: Embedded 475 pages/cpu @ffff88001f800000 s1915904 r8192 d21504 u2097152
> KVM setup async PF for cpu 0
> kvm-stealtime: cpu 0, msr 1f80cbc0
> Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128873
> Kernel command line: root=/dev/sda2 console=ttyS0 console=tty0
> PID hash table entries: 2048 (order: 2, 16384 bytes)
> Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
> Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
> xsave: enabled xstate_bv 0x7, cntxt size 0x340
> AGP: Checking aperture...
> AGP: No AGP bridge found
> Memory: 483812K/523768K available (4028K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 39956K reserved)
> SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
> Preemptible hierarchical RCU implementation.
> 	RCU debugfs-based tracing is enabled.
> 	RCU lockdep checking is enabled.
> 	Additional per-CPU info printed with stalls.
> 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
> 	Offload RCU callbacks from all CPUs
> 	Offload RCU callbacks from CPUs: 0-1.
> RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
> NO_HZ: Full dynticks CPUs: 1-3.
> NR_IRQS:4352 nr_irqs:512 16
> Console: colour VGA+ 80x25
> console [tty0] enabled
> console [ttyS0] enabled
> Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
> ... MAX_LOCKDEP_SUBCLASSES:  8
> ... MAX_LOCK_DEPTH:          48
> ... MAX_LOCKDEP_KEYS:        8191
> ... CLASSHASH_SIZE:          4096
> ... MAX_LOCKDEP_ENTRIES:     32768
> ... MAX_LOCKDEP_CHAINS:      65536
> ... CHAINHASH_SIZE:          32768
>  memory used by lock dependency info: 8671 kB
>  per task-struct memory footprint: 2688 bytes
> tsc: Detected 2790.934 MHz processor
> Calibrating delay loop (skipped) preset value.. 5581.86 BogoMIPS (lpj=11163736)
> pid_max: default: 32768 minimum: 301
> ACPI: Core revision 20140724
> ACPI: All ACPI Tables successfully acquired
> Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
> Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
> Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
> Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
> debug: unmapping init [mem 0xffffffff81b85000-0xffffffff81b87fff]
> ftrace: allocating 17856 entries in 70 pages
> ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
> Performance Events: 16-deep LBR, SandyBridge events, Intel PMU driver.
> perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
> ... version:                2
> ... bit width:              48
> ... generic registers:      4
> ... value mask:             0000ffffffffffff
> ... max period:             000000007fffffff
> ... fixed-purpose events:   3
> ... event mask:             000000070000000f
> KVM setup paravirtual spinlock
> x86: Booting SMP configuration:
> .... node  #0, CPUs:      #1
> kvm-clock: cpu 1, msr 0:1ffdf041, secondary cpu clock
> x86: Booted up 1 node, 2 CPUs
> KVM setup async PF for cpu 1
> kvm-stealtime: cpu 1, msr 1fa0cbc0
> smpboot: Total of 2 processors activated (11163.73 BogoMIPS)
> prandom: seed boundary self test passed
> prandom: 100 self tests passed
> NET: Registered protocol family 16
> cpuidle: using governor ladder
> cpuidle: using governor menu
> ACPI: bus type PCI registered
> acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> PCI: Using configuration type 1 for base access
> mtrr: your CPUs had inconsistent variable MTRR settings
> mtrr: your CPUs had inconsistent MTRRdefType settings
> mtrr: probably your BIOS does not setup all CPUs.
> mtrr: corrected configuration.
> ACPI: Added _OSI(Module Device)
> ACPI: Added _OSI(Processor Device)
> ACPI: Added _OSI(3.0 _SCP Extensions)
> ACPI: Added _OSI(Processor Aggregator Device)
> ACPI: Interpreter enabled
> ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
> ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
> ACPI: (supports S0 S3 S4 S5)
> ACPI: Using IOAPIC for interrupt routing
> PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
> acpi PNP0A03:00: _OSC: OS supports [Segments MSI]
> acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
> acpiphp: Slot [3] registered
> acpiphp: Slot [4] registered
> acpiphp: Slot [5] registered
> acpiphp: Slot [6] registered
> acpiphp: Slot [7] registered
> acpiphp: Slot [8] registered
> acpiphp: Slot [9] registered
> acpiphp: Slot [10] registered
> acpiphp: Slot [11] registered
> acpiphp: Slot [12] registered
> acpiphp: Slot [13] registered
> acpiphp: Slot [14] registered
> acpiphp: Slot [15] registered
> acpiphp: Slot [16] registered
> acpiphp: Slot [17] registered
> acpiphp: Slot [18] registered
> acpiphp: Slot [19] registered
> acpiphp: Slot [20] registered
> acpiphp: Slot [21] registered
> acpiphp: Slot [22] registered
> acpiphp: Slot [23] registered
> acpiphp: Slot [24] registered
> acpiphp: Slot [25] registered
> acpiphp: Slot [26] registered
> acpiphp: Slot [27] registered
> acpiphp: Slot [28] registered
> acpiphp: Slot [29] registered
> acpiphp: Slot [30] registered
> acpiphp: Slot [31] registered
> PCI host bridge to bus 0000:00
> pci_bus 0000:00: root bus resource [bus 00-ff]
> pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
> pci_bus 0000:00: root bus resource [io  0x0d00-0xadff]
> pci_bus 0000:00: root bus resource [io  0xae0f-0xaeff]
> pci_bus 0000:00: root bus resource [io  0xaf20-0xafdf]
> pci_bus 0000:00: root bus resource [io  0xafe4-0xffff]
> pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
> pci_bus 0000:00: root bus resource [mem 0x20000000-0xfebfffff]
> pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
> pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
> pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
> pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
> pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
> pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
> ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
> ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
> ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
> ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
> ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
> ACPI: Enabled 16 GPEs in block 00 to 0F
> vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
> vgaarb: loaded
> vgaarb: bridge control possible 0000:00:02.0
> SCSI subsystem initialized
> pps_core: LinuxPPS API ver. 1 registered
> pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
> PTP clock support registered
> PCI: Using ACPI for IRQ routing
> HPET: 3 timers in total, 0 timers will be used for per-cpu timer
> Switched to clocksource kvm-clock
> pnp: PnP ACPI init
> pnp: PnP ACPI: found 6 devices
> NET: Registered protocol family 2
> TCP established hash table entries: 4096 (order: 3, 32768 bytes)
> TCP bind hash table entries: 4096 (order: 6, 327680 bytes)
> TCP: Hash tables configured (established 4096 bind 4096)
> TCP: reno registered
> UDP hash table entries: 256 (order: 3, 49152 bytes)
> UDP-Lite hash table entries: 256 (order: 3, 49152 bytes)
> NET: Registered protocol family 1
> pci 0000:00:00.0: Limiting direct PCI/PCI transfers
> pci 0000:00:01.0: PIIX3: Enabling Passive Release
> pci 0000:00:01.0: Activating ISA DMA hang workarounds
> rcu-torture:--- Start of test: nreaders=1 nfakewriters=4 stat_interval=60 verbose=1 test_no_idle_hz=1 shuffle_interval=3 stutter=5 irqreader=1 fqs_duration=0 fqs_holdoff=0 fqs_stutter=3 test_boost=1/0 test_boost_interval=7 test_boost_duration=4 shutdown_secs=0 stall_cpu=0 stall_cpu_holdoff=10 n_barrier_cbs=0 onoff_interval=0 onoff_holdoff=0
> rcu-torture: Creating rcu_torture_writer task
> rcu-torture: Creating rcu_torture_fakewriter task
> rcu-torture: rcu_torture_writer task started
> rcu-torture: Creating rcu_torture_fakewriter task
> rcu-torture: rcu_torture_fakewriter task started
> rcu-torture: Creating rcu_torture_fakewriter task
> rcu-torture: rcu_torture_fakewriter task started
> rcu-torture: Creating rcu_torture_fakewriter task
> rcu-torture: rcu_torture_fakewriter task started
> rcu-torture: Creating rcu_torture_reader task
> rcu-torture: rcu_torture_fakewriter task started
> rcu-torture: Creating rcu_torture_stats task
> rcu-torture: rcu_torture_reader task started
> rcu-torture: Creating torture_shuffle task
> rcu-torture: rcu_torture_stats task started
> rcu-torture: Creating torture_stutter task
> rcu-torture: torture_shuffle task started
> rcu-torture: torture_stutter task started
> futex hash table entries: 512 (order: 4, 65536 bytes)
> audit: initializing netlink subsys (disabled)
> audit: type=2000 audit(1407518207.595:1): initialized
> HugeTLB registered 2 MB page size, pre-allocated 0 pages
> msgmni has been set to 944
> ------------[ cut here ]------------
> WARNING: CPU: 1 PID: 47 at kernel/time/tick-sched.c:192 can_stop_full_tick+0xc0/0xcc()
> NO_HZ FULL will not work with unstable sched clock
> Modules linked in:
> CPU: 1 PID: 47 Comm: kworker/u4:1 Not tainted 3.16.0+ #78
> Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.7.5-0-ge51488c-20140602_164612-nilsson.home.kraxel.org 04/01/2014
>  0000000000000000 0000000030a09456 ffff88001fa03ea0 ffffffff813e50b9
>  ffff88001fa03ee8 ffff88001fa03ed8 ffffffff81038ed4 ffffffff810a15e0
>  0000000000000000 0000000000000001 ffff88001f9d2e00 0000000000000000
> Call Trace:
>  <IRQ>  [<ffffffff813e50b9>] dump_stack+0x4e/0x7a
>  [<ffffffff81038ed4>] warn_slowpath_common+0x7f/0x98
>  [<ffffffff810a15e0>] ? can_stop_full_tick+0xc0/0xcc
>  [<ffffffff81038f49>] warn_slowpath_fmt+0x5c/0x73
>  [<ffffffff810a15e0>] can_stop_full_tick+0xc0/0xcc
>  [<ffffffff810a20e1>] tick_nohz_irq_exit+0x68/0x84
>  [<ffffffff8103cbea>] irq_exit+0xc3/0xda
>  [<ffffffff813ee860>] smp_apic_timer_interrupt+0x35/0x41
>  [<ffffffff813ed402>] apic_timer_interrupt+0x72/0x80
>  <EOI>  [<ffffffff81044417>] ? __lock_task_sighand+0xbf/0x114
>  [<ffffffff81074627>] ? arch_local_irq_restore+0x12/0x19
>  [<ffffffff813ebe18>] _raw_spin_unlock_irqrestore+0x4d/0x6d
>  [<ffffffff81057805>] task_rq_unlock+0x22/0x27
>  [<ffffffff8105cf09>] wake_up_new_task+0xe4/0x14a
>  [<ffffffff8103842b>] do_fork+0x1be/0x30f
>  [<ffffffff813ebf3e>] ? _raw_spin_unlock_irq+0x2c/0x4f
>  [<ffffffff81071661>] ? trace_hardirqs_on_caller+0x171/0x18d
>  [<ffffffff8107168a>] ? trace_hardirqs_on+0xd/0xf
>  [<ffffffff813ebf4d>] ? _raw_spin_unlock_irq+0x3b/0x4f
>  [<ffffffff810385a2>] kernel_thread+0x26/0x28
>  [<ffffffff81049b0a>] wait_for_helper+0x40/0x73
>  [<ffffffff8105abf7>] ? schedule_tail+0x30/0x76
>  [<ffffffff81049aca>] ? __call_usermodehelper+0x80/0x80
>  [<ffffffff813ec37c>] ret_from_fork+0x7c/0xb0
>  [<ffffffff81049aca>] ? __call_usermodehelper+0x80/0x80
> ---[ end trace 71e38ccd169ffd84 ]---
> Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
> io scheduler noop registered (default)
> pci_hotplug: PCI Hot Plug PCI Core version: 0.5
> input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
> ACPI: Power Button [PWRF]
> Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
> Non-volatile memory driver v1.3
> Linux agpgart interface v0.103
> brd: module loaded
> loop: module loaded
> scsi host0: ata_piix
> scsi host1: ata_piix
> ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc040 irq 14
> ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc048 irq 15
> libphy: Fixed MDIO Bus: probed
> e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
> e1000: Copyright (c) 1999-2006 Intel Corporation.
> ata2.00: ATAPI: QEMU DVD-ROM, 2.1.50, max UDMA/100
> ata1.00: ATA-7: QEMU HARDDISK, 2.1.50, max UDMA/100
> ata1.00: 10485760 sectors, multi 16: LBA48 
> ata2.00: configured for MWDMA2
> ata1.00: configured for MWDMA2
> scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    50   PQ: 0 ANSI: 5
> scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.1. PQ: 0 ANSI: 5
> sd 0:0:0:0: [sda] 10485760 512-byte logical blocks: (5.36 GB/5.00 GiB)
> sd 0:0:0:0: [sda] Write Protect is off
> sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
> sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
> cdrom: Uniform CD-ROM driver Revision: 3.20
>  sda: sda1 sda2
> sd 0:0:0:0: [sda] Attached SCSI disk
> tsc: Refined TSC clocksource calibration: 2790.922 MHz
> ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
> e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56
> e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
> i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
> serio: i8042 KBD port at 0x60,0x64 irq 1
> serio: i8042 AUX port at 0x60,0x64 irq 12
> mousedev: PS/2 mouse device common for all mice
> input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
> pps pps0: new PPS source ktimer
> pps pps0: ktimer PPS source registered
> pps_ldisc: PPS line discipline registered
> device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
> TCP: cubic registered
> NET: Registered protocol family 17
> kmemleak: Kernel memory leak detector initialized
> kmemleak: Automatic memory scanning thread started
> EXT4-fs (sda2): couldn't mount as ext3 due to feature incompatibilities
> EXT4-fs (sda2): couldn't mount as ext2 due to feature incompatibilities
> EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
> VFS: Mounted root (ext4 filesystem) readonly on device 8:2.
> debug: unmapping init [mem 0xffffffff818b7000-0xffffffff81b84fff]
> Write protecting the kernel read-only data: 8192k
> debug: unmapping init [mem 0xffff8800013f0000-0xffff8800013fffff]
> debug: unmapping init [mem 0xffff880001622000-0xffff8800017fffff]
> qemu: terminating on signal 2

> $ ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 console=ttyS0 console=tty0'  -snapshot  -serial stdio
> Initializing cgroup subsys cpu
> Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #79 SMP PREEMPT Fri Aug 8 22:47:38 IST 2014
> Command line: root=/dev/sda2 console=ttyS0 console=tty0
> e820: BIOS-provided physical RAM map:
> BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
> BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
> BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
> BIOS-e820: [mem 0x0000000000100000-0x000000001ffdffff] usable
> BIOS-e820: [mem 0x000000001ffe0000-0x000000001fffffff] reserved
> BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
> BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
> NX (Execute Disable) protection: active
> SMBIOS 2.8 present.
> Hypervisor detected: KVM
> AGP: No AGP bridge found
> e820: last_pfn = 0x1ffe0 max_arch_pfn = 0x400000000
> x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
> init_memory_mapping: [mem 0x00000000-0x000fffff]
> init_memory_mapping: [mem 0x1fc00000-0x1fdfffff]
> init_memory_mapping: [mem 0x1c000000-0x1fbfffff]
> init_memory_mapping: [mem 0x00100000-0x1bffffff]
> init_memory_mapping: [mem 0x1fe00000-0x1ffdffff]
> ACPI: Early table checksum verification disabled
> ACPI: RSDP 0x00000000000F0C50 000014 (v00 BOCHS )
> ACPI: RSDT 0x000000001FFE18BD 000034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
> ACPI: FACP 0x000000001FFE0B37 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
> ACPI: DSDT 0x000000001FFE0040 000AF7 (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
> ACPI: FACS 0x000000001FFE0000 000040
> ACPI: SSDT 0x000000001FFE0BAB 000C5A (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
> ACPI: APIC 0x000000001FFE1805 000080 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
> ACPI: HPET 0x000000001FFE1885 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
> kvm-clock: Using msrs 4b564d01 and 4b564d00
> kvm-clock: cpu 0, msr 0:1ffdf001, primary cpu clock
> Zone ranges:
>   DMA      [mem 0x00001000-0x00ffffff]
>   DMA32    [mem 0x01000000-0xffffffff]
>   Normal   empty
> Movable zone start for each node
> Early memory node ranges
>   node   0: [mem 0x00001000-0x0009efff]
>   node   0: [mem 0x00100000-0x1ffdffff]
> ACPI: PM-Timer IO Port: 0x608
> ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
> ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
> ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
> ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
> IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
> ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
> Using ACPI (MADT) for SMP configuration information
> ACPI: HPET id: 0x8086a201 base: 0xfed00000
> smpboot: Allowing 2 CPUs, 0 hotplug CPUs
> PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
> PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
> PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
> e820: [mem 0x20000000-0xfeffbfff] available for PCI devices
> Booting paravirtualized kernel on KVM
> setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:2 nr_node_ids:1
> PERCPU: Embedded 475 pages/cpu @ffff88001f800000 s1916544 r8192 d20864 u2097152
> KVM setup async PF for cpu 0
> kvm-stealtime: cpu 0, msr 1f80cbc0
> Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128873
> Kernel command line: root=/dev/sda2 console=ttyS0 console=tty0
> PID hash table entries: 2048 (order: 2, 16384 bytes)
> Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
> Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
> xsave: enabled xstate_bv 0x7, cntxt size 0x340
> AGP: Checking aperture...
> AGP: No AGP bridge found
> Memory: 483812K/523768K available (4029K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 39956K reserved)
> SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
> Preemptible hierarchical RCU implementation.
> 	RCU debugfs-based tracing is enabled.
> 	RCU lockdep checking is enabled.
> 	Additional per-CPU info printed with stalls.
> 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
> 	Offload RCU callbacks from all CPUs
> 	Offload RCU callbacks from CPUs: 0-1.
> RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
> NO_HZ: Full dynticks CPUs: 1-3.
> NR_IRQS:4352 nr_irqs:512 16
> Console: colour VGA+ 80x25
> console [tty0] enabled
> console [ttyS0] enabled
> Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
> ... MAX_LOCKDEP_SUBCLASSES:  8
> ... MAX_LOCK_DEPTH:          48
> ... MAX_LOCKDEP_KEYS:        8191
> ... CLASSHASH_SIZE:          4096
> ... MAX_LOCKDEP_ENTRIES:     32768
> ... MAX_LOCKDEP_CHAINS:      65536
> ... CHAINHASH_SIZE:          32768
>  memory used by lock dependency info: 8671 kB
>  per task-struct memory footprint: 2688 bytes
> tsc: Detected 2790.934 MHz processor
> Calibrating delay loop (skipped) preset value.. 5581.86 BogoMIPS (lpj=11163736)
> pid_max: default: 32768 minimum: 301
> ACPI: Core revision 20140724
> ACPI: All ACPI Tables successfully acquired
> Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
> Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
> Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
> Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
> debug: unmapping init [mem 0xffffffff81b85000-0xffffffff81b87fff]
> ftrace: allocating 17857 entries in 70 pages
> ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> smpboot: CPU0: Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz (fam: 06, model: 2a, stepping: 07)
> Performance Events: 16-deep LBR, SandyBridge events, Intel PMU driver.
> perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
> ... version:                2
> ... bit width:              48
> ... generic registers:      4
> ... value mask:             0000ffffffffffff
> ... max period:             000000007fffffff
> ... fixed-purpose events:   3
> ... event mask:             000000070000000f
> KVM setup paravirtual spinlock
> x86: Booting SMP configuration:
> .... node  #0, CPUs:      #1
> kvm-clock: cpu 1, msr 0:1ffdf041, secondary cpu clock
> x86: Booted up 1 node, 2 CPUs
> KVM setup async PF for cpu 1
> kvm-stealtime: cpu 1, msr 1fa0cbc0
> smpboot: Total of 2 processors activated (11163.73 BogoMIPS)
> prandom: seed boundary self test passed
> prandom: 100 self tests passed
> NET: Registered protocol family 16
> cpuidle: using governor ladder
> cpuidle: using governor menu
> ACPI: bus type PCI registered
> acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> PCI: Using configuration type 1 for base access
> mtrr: your CPUs had inconsistent variable MTRR settings
> mtrr: your CPUs had inconsistent MTRRdefType settings
> mtrr: probably your BIOS does not setup all CPUs.
> mtrr: corrected configuration.
> qemu: terminating on signal 2


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-08 18:18         ` Paul E. McKenney
@ 2014-08-08 18:34           ` Amit Shah
  2014-08-08 21:43             ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-08 18:34 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> On Fri, Aug 08, 2014 at 11:07:10PM +0530, Amit Shah wrote:
> > On (Fri) 08 Aug 2014 [09:25:02], Paul E. McKenney wrote:
> > > On Fri, Aug 08, 2014 at 02:10:56PM +0530, Amit Shah wrote:
> > > > On Friday 11 July 2014 07:05 PM, Paul E. McKenney wrote:
> > > > >From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
> > > > >
> > > > >An 80-CPU system with a context-switch-heavy workload can require so
> > > > >many NOCB kthread wakeups that the RCU grace-period kthreads spend several
> > > > >tens of percent of a CPU just awakening things.  This clearly will not
> > > > >scale well: If you add enough CPUs, the RCU grace-period kthreads would
> > > > >get behind, increasing grace-period latency.
> > > > >
> > > > >To avoid this problem, this commit divides the NOCB kthreads into leaders
> > > > >and followers, where the grace-period kthreads awaken the leaders each of
> > > > >whom in turn awakens its followers.  By default, the number of groups of
> > > > >kthreads is the square root of the number of CPUs, but this default may
> > > > >be overridden using the rcutree.rcu_nocb_leader_stride boot parameter.
> > > > >This reduces the number of wakeups done per grace period by the RCU
> > > > >grace-period kthread by the square root of the number of CPUs, but of
> > > > >course by shifting those wakeups to the leaders.  In addition, because
> > > > >the leaders do grace periods on behalf of their respective followers,
> > > > >the number of wakeups of the followers decreases by up to a factor of two.
> > > > >Instead of being awakened once when new callbacks arrive and again
> > > > >at the end of the grace period, the followers are awakened only at
> > > > >the end of the grace period.
> > > > >
> > > > >For a numerical example, in a 4096-CPU system, the grace-period kthread
> > > > >would awaken 64 leaders, each of which would awaken its 63 followers
> > > > >at the end of the grace period.  This compares favorably with the 79
> > > > >wakeups for the grace-period kthread on an 80-CPU system.
> > > > >
> > > > >Reported-by: Rik van Riel <riel@redhat.com>
> > > > >Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
> > > > 
> > > > This patch causes KVM guest boot to not proceed after a while.
> > > > .config is attached, and boot messages are appeneded.  This commit
> > > > was pointed to by bisect, and reverting on current master (while
> > > > addressing a trivial conflict) makes the boot work again.
> > > > 
> > > > The qemu cmdline is
> > > > 
> > > > ./x86_64-softmmu/qemu-system-x86_64 -m 512 -smp 2 -cpu
> > > > host,+kvmclock,+x2apic -enable-kvm  -kernel
> > > > ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append
> > > > 'root=/dev/sda2 console=ttyS0 console=tty0' -snapshot -serial stdio
> > > 
> > > I cannot reproduce this.  I am at commit a7d7a143d0b4c, in case that
> > > makes a difference.
> > 
> > Yea; I'm at that commit too.  And the version of qemu doesn't matter;
> > happens on F20's qemu-kvm-1.6.2-7.fc20.x86_64 as well as qemu.git
> > compiled locally.
> > 
> > > There are some things in your dmesg that look quite strange to me, though.
> > > 
> > > You have "--smp 2" above, but in your dmesg I see the following:
> > > 
> > > 	[    0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4
> > > 	nr_cpu_ids:1 nr_node_ids:1
> > > 
> > > So your run somehow only has one CPU.  RCU agrees that there is only
> > > one CPU:
> > 
> > Yea; indeed.  There are MTRR warnings too; attaching the boot log of
> > failed run and diff to the successful run (rcu-good-notime.txt).
> 
> My qemu runs don't have those MTRR warnings, for whatever that is worth.
> 
> > The failed run is on commit a7d7a143d0b4cb1914705884ca5c25e322dba693
> > and the successful run has these reverted on top:
> > 
> > 187497fa5e9e9383820d33e48b87f8200a747c2a
> > b58cc46c5f6b57f1c814e374dbc47176e6b4938e
> > fbce7497ee5af800a1c350c73f3c3f103cb27a15
> 
> OK.  Strange set of commits.

The last one is the one that causes the failure, the above two are
just the context fixups needed for a clean revert of the last one.

> > That is rcu-bad-notime.txt.
> > 
> > > 	[    0.000000] Preemptible hierarchical RCU implementation.
> > > 	[    0.000000] 	RCU debugfs-based tracing is enabled.
> > > 	[    0.000000] 	RCU lockdep checking is enabled.
> > > 	[    0.000000] 	Additional per-CPU info printed with stalls.
> > > 	[    0.000000] 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
> > > 	[    0.000000] 	Offload RCU callbacks from all CPUs
> > > 	[    0.000000] 	Offload RCU callbacks from CPUs: 0.
> > > 	[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
> > > 	[    0.000000] NO_HZ: Full dynticks CPUs: 1-3.
> > > 
> > > But NO_HZ thinks that there are four.  This appears to be due to NO_HZ
> > > looking at the compile-time constants, and I doubt that this would cause
> > > a problem.  But if there really is a CPU 1 that RCU doesn't know about,
> > > and it queues a callback, that callback will never be invoked, and you
> > > could easily see hangs.
> > > 
> > > Give that your .config says CONFIG_NR_CPUS=4 and your qemu says "--smp 2",
> > > why does nr_cpu_ids think that there is only one CPU?  Are you running
> > > this on a non-x86_64 CPU so that qemu only does UP or some such?
> > 
> > No; this is "Intel(R) Core(TM) i7-2640M CPU @ 2.80GHz" on a ThinkPad
> > T420s.
> 
> Running in 64-bit mode, right?

Yep.  3.15.7-200.fc20.x86_64 on the host.

> > In my attached boot logs, RCU does detect two cpus.  Here's the diff
> > between them.  I recompiled to remove the timing info so the diffs are
> > comparable:

<snip>

> >  mtrr: your CPUs had inconsistent MTRRdefType settings
> >  mtrr: probably your BIOS does not setup all CPUs.
> >  mtrr: corrected configuration.
> > +ACPI: Added _OSI(Module Device)
> > +ACPI: Added _OSI(Processor Device)
> > +ACPI: Added _OSI(3.0 _SCP Extensions)
> > +ACPI: Added _OSI(Processor Aggregator Device)
> > +ACPI: Interpreter enabled
> > +ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
> > +ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
> > +ACPI: (supports S0 S3 S4 S5)
> > +ACPI: Using IOAPIC for interrupt routing
> > +PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> > +ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
> > +acpi PNP0A03:00: _OSC: OS supports [Segments MSI]
> > +acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
> > 
> > <followed by more bootup messages>
> 
> Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> with the kernel parameter "acpi=off"?

That doesn't change anything - still hangs.

I intend to look at this more on Monday, though - turning in for
today.  In the meantime, if there's anything else you'd like me to
try, please let me know.

Thanks,
		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-08 18:34           ` Amit Shah
@ 2014-08-08 21:43             ` Paul E. McKenney
  2014-08-08 21:46               ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-08 21:43 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:

[ . . . ]

> > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > with the kernel parameter "acpi=off"?
> 
> That doesn't change anything - still hangs.
> 
> I intend to look at this more on Monday, though - turning in for
> today.  In the meantime, if there's anything else you'd like me to
> try, please let me know.

OK, given that I still cannot reproduce it, I do need your help with
the diagnostics.  And so what sorts of diagnostics work for you in
the hung state?  Are you able to dump ftrace buffers?

If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
and send me the resulting trace.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-08 21:43             ` Paul E. McKenney
@ 2014-08-08 21:46               ` Paul E. McKenney
  2014-08-11  7:13                 ` Amit Shah
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-08 21:46 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> 
> [ . . . ]
> 
> > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > with the kernel parameter "acpi=off"?
> > 
> > That doesn't change anything - still hangs.
> > 
> > I intend to look at this more on Monday, though - turning in for
> > today.  In the meantime, if there's anything else you'd like me to
> > try, please let me know.
> 
> OK, given that I still cannot reproduce it, I do need your help with
> the diagnostics.  And so what sorts of diagnostics work for you in
> the hung state?  Are you able to dump ftrace buffers?
> 
> If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> and send me the resulting trace.

And another random kernel boot parameter to try is rcu_nocb_poll.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-08 21:46               ` Paul E. McKenney
@ 2014-08-11  7:13                 ` Amit Shah
  2014-08-11 16:28                   ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-11  7:13 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Fri) 08 Aug 2014 [14:46:48], Paul E. McKenney wrote:
> On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> > On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> > 
> > [ . . . ]
> > 
> > > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > > with the kernel parameter "acpi=off"?
> > > 
> > > That doesn't change anything - still hangs.
> > > 
> > > I intend to look at this more on Monday, though - turning in for
> > > today.  In the meantime, if there's anything else you'd like me to
> > > try, please let me know.
> > 
> > OK, given that I still cannot reproduce it, I do need your help with
> > the diagnostics.  And so what sorts of diagnostics work for you in
> > the hung state?  Are you able to dump ftrace buffers?
> > 
> > If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> > and send me the resulting trace.
> 
> And another random kernel boot parameter to try is rcu_nocb_poll.

Right, this gets the boot going again:

--- /var/tmp/rcu-bad.txt  2014-08-11 12:39:53.571306488 +0530
+++ /var/tmp/rcu-good-nocb-poll.txt  2014-08-11 12:40:37.760432052 +0530
@@ -1,7 +1,7 @@
-$ qemu-kvm -m 512 -smp 1 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 acpi=off console=ttyS0 console=tty0'  -snapshot  -serial stdio
+$ qemu-kvm -m 512 -smp 1 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 acpi=off console=ttyS0 console=tty0 rcu_nocb_poll'  -snapshot  -serial stdio
 Initializing cgroup subsys cpu
 Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #80 SMP PREEMPT Fri Aug 8 22:57:35 IST 2014
-Command line: root=/dev/sda2 acpi=off console=ttyS0 console=tty0
+Command line: root=/dev/sda2 acpi=off console=ttyS0 console=tty0 rcu_nocb_poll
 e820: BIOS-provided physical RAM map:
 BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
 BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
@@ -47,14 +47,14 @@
 KVM setup async PF for cpu 0
 kvm-stealtime: cpu 0, msr 1fa0cbc0
 Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128903
-Kernel command line: root=/dev/sda2 acpi=off console=ttyS0 console=tty0
+Kernel command line: root=/dev/sda2 acpi=off console=ttyS0 console=tty0 rcu_nocb_poll
 PID hash table entries: 2048 (order: 2, 16384 bytes)
 Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
 Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
 xsave: enabled xstate_bv 0x7, cntxt size 0x340
 AGP: Checking aperture...
 AGP: No AGP bridge found
-Memory: 485836K/523888K available (4029K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 38052K reserved)
+Memory: 485832K/523888K available (4029K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 38056K reserved)
 SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
 Preemptible hierarchical RCU implementation.
 	     RCU debugfs-based tracing is enabled.
@@ -63,6 +63,7 @@
   RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
   Offload RCU callbacks from all CPUs
   Offload RCU callbacks from CPUs: 0.
+  Poll for callbacks from no-CBs CPUs.
 RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
 NO_HZ: Full dynticks CPUs: 1-3.
 NR_IRQS:4352 nr_irqs:256 16
@@ -114,3 +115,118 @@
 cpuidle: using governor ladder
 cpuidle: using governor menu
 PCI: Using configuration type 1 for base access
+ACPI: Interpreter disabled.
+vgaarb: loaded
+SCSI subsystem initialized
+pps_core: LinuxPPS API ver. 1 registered
+pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
+PTP clock support registered
+PCI: Probing PCI hardware
+PCI host bridge to bus 0000:00
+pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
+pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffffff]
+pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
+pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
+pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
+pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
+pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
+pci 0000:00:01.3: quirk: [io  0xb000-0xb03f] claimed by PIIX4 ACPI
+pci 0000:00:01.3: quirk: [io  0xb100-0xb10f] claimed by PIIX4 SMB
+vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
+pci 0000:00:01.0: PIIX/ICH IRQ router [8086:7000]
+Switched to clocksource kvm-clock
+pnp: PnP ACPI: disabled
+NET: Registered protocol family 2
+TCP established hash table entries: 4096 (order: 3, 32768 bytes)
+TCP bind hash table entries: 4096 (order: 6, 327680 bytes)
+TCP: Hash tables configured (established 4096 bind 4096)
+TCP: reno registered
+UDP hash table entries: 256 (order: 3, 49152 bytes)
+UDP-Lite hash table entries: 256 (order: 3, 49152 bytes)
+NET: Registered protocol family 1
+pci 0000:00:00.0: Limiting direct PCI/PCI transfers
+pci 0000:00:01.0: PIIX3: Enabling Passive Release
+pci 0000:00:01.0: Activating ISA DMA hang workarounds
+platform rtc_cmos: registered platform RTC device (no PNP device found)
+rcu-torture:--- Start of test: nreaders=1 nfakewriters=4 stat_interval=60 verbose=1 test_no_idle_hz=1 shuffle_interval=3 stutter=5 irqreader=1 fqs_duration=0 fqs_holdoff=0 fqs_stutter=3 test_boost=1/0 test_boost_interval=7 test_boost_duration=4 shutdown_secs=0 stall_cpu=0 stall_cpu_holdoff=10 n_barrier_cbs=0 onoff_interval=0 onoff_holdoff=0
+rcu-torture: Creating rcu_torture_writer task
+rcu-torture: Creating rcu_torture_fakewriter task
+rcu-torture: rcu_torture_writer task started
+rcu-torture: Creating rcu_torture_fakewriter task
+rcu-torture: rcu_torture_fakewriter task started
+rcu-torture: Creating rcu_torture_fakewriter task
+rcu-torture: rcu_torture_fakewriter task started
+rcu-torture: Creating rcu_torture_fakewriter task
+rcu-torture: rcu_torture_fakewriter task started
+rcu-torture: Creating rcu_torture_reader task
+rcu-torture: rcu_torture_fakewriter task started
+rcu-torture: Creating rcu_torture_stats task
+rcu-torture: rcu_torture_reader task started
+rcu-torture: Creating torture_shuffle task
+rcu-torture: rcu_torture_stats task started
+rcu-torture: Creating torture_stutter task
+rcu-torture: torture_shuffle task started
+rcu-torture: torture_stutter task started
+futex hash table entries: 256 (order: 3, 32768 bytes)
+audit: initializing netlink subsys (disabled)
+audit: type=2000 audit(1407740961.384:1): initialized
+HugeTLB registered 2 MB page size, pre-allocated 0 pages
+msgmni has been set to 948
+Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
+io scheduler noop registered (default)
+pci_hotplug: PCI Hot Plug PCI Core version: 0.5
+Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
+�serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
+Non-volatile memory driver v1.3
+Linux agpgart interface v0.103
+brd: module loaded
+loop: module loaded
+scsi host0: ata_piix
+scsi host1: ata_piix
+ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc040 irq 14
+ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc048 irq 15
+libphy: Fixed MDIO Bus: probed
+e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
+e1000: Copyright (c) 1999-2006 Intel Corporation.
+e1000 0000:00:03.0: found PCI INT A -> IRQ 11
+ata1.00: ATA-7: QEMU HARDDISK, 1.6.2, max UDMA/100
+ata1.00: 10485760 sectors, multi 16: LBA48 
+ata1.00: configured for MWDMA2
+ata2.00: ATAPI: QEMU DVD-ROM, 1.6.2, max UDMA/100
+ata2.00: configured for MWDMA2
+scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    2    PQ: 0 ANSI: 5
+sd 0:0:0:0: [sda] 10485760 512-byte logical blocks: (5.36 GB/5.00 GiB)
+sd 0:0:0:0: [sda] Write Protect is off
+sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
+scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     1.6. PQ: 0 ANSI: 5
+sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
+cdrom: Uniform CD-ROM driver Revision: 3.20
+ sda: sda1 sda2
+sd 0:0:0:0: [sda] Attached SCSI disk
+e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56
+e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
+i8042: PNP: No PS/2 controller found. Probing ports directly.
+serio: i8042 KBD port at 0x60,0x64 irq 1
+serio: i8042 AUX port at 0x60,0x64 irq 12
+mousedev: PS/2 mouse device common for all mice
+input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
+pps pps0: new PPS source ktimer
+pps pps0: ktimer PPS source registered
+pps_ldisc: PPS line discipline registered
+device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
+TCP: cubic registered
+NET: Registered protocol family 17
+kmemleak: Kernel memory leak detector initialized
+kmemleak: Automatic memory scanning thread started
+EXT4-fs (sda2): couldn't mount as ext3 due to feature incompatibilities
+EXT4-fs (sda2): couldn't mount as ext2 due to feature incompatibilities
+EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
+VFS: Mounted root (ext4 filesystem) readonly on device 8:2.
+debug: unmapping init [mem 0xffffffff818b7000-0xffffffff81b84fff]
+Write protecting the kernel read-only data: 8192k
+debug: unmapping init [mem 0xffff8800013f1000-0xffff8800013fffff]
+debug: unmapping init [mem 0xffff880001622000-0xffff8800017fffff]
+rcu-torture: rtc: ffffffff828fd3f0 ver: 1 tfle: 0 rta: 1 rtaf: 0 rtf: 0 rtmbe: 0 rtbke: 0 rtbre: 0 rtbf: 0 rtb: 0 nt: 1 onoff: 0/0:0/0 -1,0:-1,0 0:0 (HZ=250) barrier: 0/0:0
+rcu-torture: Reader Pipe:  2 0 0 0 0 0 0 0 0 0 0
+rcu-torture: Reader Batch:  2 0 0 0 0 0 0 0 0 0 0
+rcu-torture: Free-Block Circulation:  0 0 0 0 0 0 0 0 0 0 0


		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-11  7:13                 ` Amit Shah
@ 2014-08-11 16:28                   ` Paul E. McKenney
  2014-08-11 19:41                     ` Amit Shah
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-11 16:28 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Mon, Aug 11, 2014 at 12:43:08PM +0530, Amit Shah wrote:
> On (Fri) 08 Aug 2014 [14:46:48], Paul E. McKenney wrote:
> > On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> > > On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > > > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> > > 
> > > [ . . . ]
> > > 
> > > > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > > > with the kernel parameter "acpi=off"?
> > > > 
> > > > That doesn't change anything - still hangs.
> > > > 
> > > > I intend to look at this more on Monday, though - turning in for
> > > > today.  In the meantime, if there's anything else you'd like me to
> > > > try, please let me know.
> > > 
> > > OK, given that I still cannot reproduce it, I do need your help with
> > > the diagnostics.  And so what sorts of diagnostics work for you in
> > > the hung state?  Are you able to dump ftrace buffers?
> > > 
> > > If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> > > and send me the resulting trace.
> > 
> > And another random kernel boot parameter to try is rcu_nocb_poll.
> 
> Right, this gets the boot going again:

OK, that likely indicates a lost wakeup.  The event tracing enabled by
"rcu:rcu_nocb_wake" should help track those down.  Last time, it was qemu
losing the wakeups, but maybe it is RCU this time.  ;-)

							Thanx, Paul

> --- /var/tmp/rcu-bad.txt  2014-08-11 12:39:53.571306488 +0530
> +++ /var/tmp/rcu-good-nocb-poll.txt  2014-08-11 12:40:37.760432052 +0530
> @@ -1,7 +1,7 @@
> -$ qemu-kvm -m 512 -smp 1 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 acpi=off console=ttyS0 console=tty0'  -snapshot  -serial stdio
> +$ qemu-kvm -m 512 -smp 1 -cpu host,+kvmclock,+x2apic -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage /guests/f11-auto.qcow2  -append 'root=/dev/sda2 acpi=off console=ttyS0 console=tty0 rcu_nocb_poll'  -snapshot  -serial stdio
>  Initializing cgroup subsys cpu
>  Linux version 3.16.0+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #80 SMP PREEMPT Fri Aug 8 22:57:35 IST 2014
> -Command line: root=/dev/sda2 acpi=off console=ttyS0 console=tty0
> +Command line: root=/dev/sda2 acpi=off console=ttyS0 console=tty0 rcu_nocb_poll
>  e820: BIOS-provided physical RAM map:
>  BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
>  BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
> @@ -47,14 +47,14 @@
>  KVM setup async PF for cpu 0
>  kvm-stealtime: cpu 0, msr 1fa0cbc0
>  Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 128903
> -Kernel command line: root=/dev/sda2 acpi=off console=ttyS0 console=tty0
> +Kernel command line: root=/dev/sda2 acpi=off console=ttyS0 console=tty0 rcu_nocb_poll
>  PID hash table entries: 2048 (order: 2, 16384 bytes)
>  Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
>  Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
>  xsave: enabled xstate_bv 0x7, cntxt size 0x340
>  AGP: Checking aperture...
>  AGP: No AGP bridge found
> -Memory: 485836K/523888K available (4029K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 38052K reserved)
> +Memory: 485832K/523888K available (4029K kernel code, 727K rwdata, 2184K rodata, 2872K init, 14172K bss, 38056K reserved)
>  SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
>  Preemptible hierarchical RCU implementation.
>  	     RCU debugfs-based tracing is enabled.
> @@ -63,6 +63,7 @@
>    RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
>    Offload RCU callbacks from all CPUs
>    Offload RCU callbacks from CPUs: 0.
> +  Poll for callbacks from no-CBs CPUs.
>  RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
>  NO_HZ: Full dynticks CPUs: 1-3.
>  NR_IRQS:4352 nr_irqs:256 16
> @@ -114,3 +115,118 @@
>  cpuidle: using governor ladder
>  cpuidle: using governor menu
>  PCI: Using configuration type 1 for base access
> +ACPI: Interpreter disabled.
> +vgaarb: loaded
> +SCSI subsystem initialized
> +pps_core: LinuxPPS API ver. 1 registered
> +pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
> +PTP clock support registered
> +PCI: Probing PCI hardware
> +PCI host bridge to bus 0000:00
> +pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
> +pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffffff]
> +pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]
> +pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
> +pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
> +pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
> +pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
> +pci 0000:00:01.3: quirk: [io  0xb000-0xb03f] claimed by PIIX4 ACPI
> +pci 0000:00:01.3: quirk: [io  0xb100-0xb10f] claimed by PIIX4 SMB
> +vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
> +pci 0000:00:01.0: PIIX/ICH IRQ router [8086:7000]
> +Switched to clocksource kvm-clock
> +pnp: PnP ACPI: disabled
> +NET: Registered protocol family 2
> +TCP established hash table entries: 4096 (order: 3, 32768 bytes)
> +TCP bind hash table entries: 4096 (order: 6, 327680 bytes)
> +TCP: Hash tables configured (established 4096 bind 4096)
> +TCP: reno registered
> +UDP hash table entries: 256 (order: 3, 49152 bytes)
> +UDP-Lite hash table entries: 256 (order: 3, 49152 bytes)
> +NET: Registered protocol family 1
> +pci 0000:00:00.0: Limiting direct PCI/PCI transfers
> +pci 0000:00:01.0: PIIX3: Enabling Passive Release
> +pci 0000:00:01.0: Activating ISA DMA hang workarounds
> +platform rtc_cmos: registered platform RTC device (no PNP device found)
> +rcu-torture:--- Start of test: nreaders=1 nfakewriters=4 stat_interval=60 verbose=1 test_no_idle_hz=1 shuffle_interval=3 stutter=5 irqreader=1 fqs_duration=0 fqs_holdoff=0 fqs_stutter=3 test_boost=1/0 test_boost_interval=7 test_boost_duration=4 shutdown_secs=0 stall_cpu=0 stall_cpu_holdoff=10 n_barrier_cbs=0 onoff_interval=0 onoff_holdoff=0
> +rcu-torture: Creating rcu_torture_writer task
> +rcu-torture: Creating rcu_torture_fakewriter task
> +rcu-torture: rcu_torture_writer task started
> +rcu-torture: Creating rcu_torture_fakewriter task
> +rcu-torture: rcu_torture_fakewriter task started
> +rcu-torture: Creating rcu_torture_fakewriter task
> +rcu-torture: rcu_torture_fakewriter task started
> +rcu-torture: Creating rcu_torture_fakewriter task
> +rcu-torture: rcu_torture_fakewriter task started
> +rcu-torture: Creating rcu_torture_reader task
> +rcu-torture: rcu_torture_fakewriter task started
> +rcu-torture: Creating rcu_torture_stats task
> +rcu-torture: rcu_torture_reader task started
> +rcu-torture: Creating torture_shuffle task
> +rcu-torture: rcu_torture_stats task started
> +rcu-torture: Creating torture_stutter task
> +rcu-torture: torture_shuffle task started
> +rcu-torture: torture_stutter task started
> +futex hash table entries: 256 (order: 3, 32768 bytes)
> +audit: initializing netlink subsys (disabled)
> +audit: type=2000 audit(1407740961.384:1): initialized
> +HugeTLB registered 2 MB page size, pre-allocated 0 pages
> +msgmni has been set to 948
> +Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
> +io scheduler noop registered (default)
> +pci_hotplug: PCI Hot Plug PCI Core version: 0.5
> +Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> +�serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
> +Non-volatile memory driver v1.3
> +Linux agpgart interface v0.103
> +brd: module loaded
> +loop: module loaded
> +scsi host0: ata_piix
> +scsi host1: ata_piix
> +ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc040 irq 14
> +ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc048 irq 15
> +libphy: Fixed MDIO Bus: probed
> +e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
> +e1000: Copyright (c) 1999-2006 Intel Corporation.
> +e1000 0000:00:03.0: found PCI INT A -> IRQ 11
> +ata1.00: ATA-7: QEMU HARDDISK, 1.6.2, max UDMA/100
> +ata1.00: 10485760 sectors, multi 16: LBA48 
> +ata1.00: configured for MWDMA2
> +ata2.00: ATAPI: QEMU DVD-ROM, 1.6.2, max UDMA/100
> +ata2.00: configured for MWDMA2
> +scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    2    PQ: 0 ANSI: 5
> +sd 0:0:0:0: [sda] 10485760 512-byte logical blocks: (5.36 GB/5.00 GiB)
> +sd 0:0:0:0: [sda] Write Protect is off
> +sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
> +scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     1.6. PQ: 0 ANSI: 5
> +sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
> +cdrom: Uniform CD-ROM driver Revision: 3.20
> + sda: sda1 sda2
> +sd 0:0:0:0: [sda] Attached SCSI disk
> +e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56
> +e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
> +i8042: PNP: No PS/2 controller found. Probing ports directly.
> +serio: i8042 KBD port at 0x60,0x64 irq 1
> +serio: i8042 AUX port at 0x60,0x64 irq 12
> +mousedev: PS/2 mouse device common for all mice
> +input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
> +pps pps0: new PPS source ktimer
> +pps pps0: ktimer PPS source registered
> +pps_ldisc: PPS line discipline registered
> +device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
> +TCP: cubic registered
> +NET: Registered protocol family 17
> +kmemleak: Kernel memory leak detector initialized
> +kmemleak: Automatic memory scanning thread started
> +EXT4-fs (sda2): couldn't mount as ext3 due to feature incompatibilities
> +EXT4-fs (sda2): couldn't mount as ext2 due to feature incompatibilities
> +EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
> +VFS: Mounted root (ext4 filesystem) readonly on device 8:2.
> +debug: unmapping init [mem 0xffffffff818b7000-0xffffffff81b84fff]
> +Write protecting the kernel read-only data: 8192k
> +debug: unmapping init [mem 0xffff8800013f1000-0xffff8800013fffff]
> +debug: unmapping init [mem 0xffff880001622000-0xffff8800017fffff]
> +rcu-torture: rtc: ffffffff828fd3f0 ver: 1 tfle: 0 rta: 1 rtaf: 0 rtf: 0 rtmbe: 0 rtbke: 0 rtbre: 0 rtbf: 0 rtb: 0 nt: 1 onoff: 0/0:0/0 -1,0:-1,0 0:0 (HZ=250) barrier: 0/0:0
> +rcu-torture: Reader Pipe:  2 0 0 0 0 0 0 0 0 0 0
> +rcu-torture: Reader Batch:  2 0 0 0 0 0 0 0 0 0 0
> +rcu-torture: Free-Block Circulation:  0 0 0 0 0 0 0 0 0 0 0
> 
> 
> 		Amit
> 


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-11 16:28                   ` Paul E. McKenney
@ 2014-08-11 19:41                     ` Amit Shah
  2014-08-11 20:11                       ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-11 19:41 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Mon) 11 Aug 2014 [09:28:07], Paul E. McKenney wrote:
> On Mon, Aug 11, 2014 at 12:43:08PM +0530, Amit Shah wrote:
> > On (Fri) 08 Aug 2014 [14:46:48], Paul E. McKenney wrote:
> > > On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> > > > On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > > > > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> > > > 
> > > > [ . . . ]
> > > > 
> > > > > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > > > > with the kernel parameter "acpi=off"?
> > > > > 
> > > > > That doesn't change anything - still hangs.
> > > > > 
> > > > > I intend to look at this more on Monday, though - turning in for
> > > > > today.  In the meantime, if there's anything else you'd like me to
> > > > > try, please let me know.
> > > > 
> > > > OK, given that I still cannot reproduce it, I do need your help with
> > > > the diagnostics.  And so what sorts of diagnostics work for you in
> > > > the hung state?  Are you able to dump ftrace buffers?
> > > > 
> > > > If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> > > > and send me the resulting trace.
> > > 
> > > And another random kernel boot parameter to try is rcu_nocb_poll.
> > 
> > Right, this gets the boot going again:
> 
> OK, that likely indicates a lost wakeup.  The event tracing enabled by
> "rcu:rcu_nocb_wake" should help track those down.  Last time, it was qemu
> losing the wakeups, but maybe it is RCU this time.  ;-)

The guest goes dead pretty early; is there a trick to enabling and
getting these traces out of the guest that I don't know of that
doesn't involve being booted into userspace?  I can perhaps try
getting the trace output out from a virtio-serial channel; but even
that driver isn't probed yet when the lockup happens.

		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-11 19:41                     ` Amit Shah
@ 2014-08-11 20:11                       ` Paul E. McKenney
  2014-08-11 20:18                         ` Amit Shah
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-11 20:11 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Tue, Aug 12, 2014 at 01:11:26AM +0530, Amit Shah wrote:
> On (Mon) 11 Aug 2014 [09:28:07], Paul E. McKenney wrote:
> > On Mon, Aug 11, 2014 at 12:43:08PM +0530, Amit Shah wrote:
> > > On (Fri) 08 Aug 2014 [14:46:48], Paul E. McKenney wrote:
> > > > On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> > > > > On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > > > > > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> > > > > 
> > > > > [ . . . ]
> > > > > 
> > > > > > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > > > > > with the kernel parameter "acpi=off"?
> > > > > > 
> > > > > > That doesn't change anything - still hangs.
> > > > > > 
> > > > > > I intend to look at this more on Monday, though - turning in for
> > > > > > today.  In the meantime, if there's anything else you'd like me to
> > > > > > try, please let me know.
> > > > > 
> > > > > OK, given that I still cannot reproduce it, I do need your help with
> > > > > the diagnostics.  And so what sorts of diagnostics work for you in
> > > > > the hung state?  Are you able to dump ftrace buffers?
> > > > > 
> > > > > If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> > > > > and send me the resulting trace.
> > > > 
> > > > And another random kernel boot parameter to try is rcu_nocb_poll.
> > > 
> > > Right, this gets the boot going again:
> > 
> > OK, that likely indicates a lost wakeup.  The event tracing enabled by
> > "rcu:rcu_nocb_wake" should help track those down.  Last time, it was qemu
> > losing the wakeups, but maybe it is RCU this time.  ;-)
> 
> The guest goes dead pretty early; is there a trick to enabling and
> getting these traces out of the guest that I don't know of that
> doesn't involve being booted into userspace?  I can perhaps try
> getting the trace output out from a virtio-serial channel; but even
> that driver isn't probed yet when the lockup happens.

First boot with the kernel parameter "trace_event=rcu:rcu_nocb_wake".
Then when the system hangs, do "sendkey alt-sysrq-z" at the "(qemu)"
prompt to dump the ftrace buffer.  This hopefully dumps the trace buffer
to dmesg.

In addition "sendkey alt-sysrq-t" at the "(qemu)" prompt dumps all tasks'
stacks, which would also likely be useful information.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-11 20:11                       ` Paul E. McKenney
@ 2014-08-11 20:18                         ` Amit Shah
  2014-08-11 20:34                           ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-11 20:18 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Mon) 11 Aug 2014 [13:11:02], Paul E. McKenney wrote:
> On Tue, Aug 12, 2014 at 01:11:26AM +0530, Amit Shah wrote:
> > On (Mon) 11 Aug 2014 [09:28:07], Paul E. McKenney wrote:
> > > On Mon, Aug 11, 2014 at 12:43:08PM +0530, Amit Shah wrote:
> > > > On (Fri) 08 Aug 2014 [14:46:48], Paul E. McKenney wrote:
> > > > > On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> > > > > > On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > > > > > > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> > > > > > 
> > > > > > [ . . . ]
> > > > > > 
> > > > > > > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > > > > > > with the kernel parameter "acpi=off"?
> > > > > > > 
> > > > > > > That doesn't change anything - still hangs.
> > > > > > > 
> > > > > > > I intend to look at this more on Monday, though - turning in for
> > > > > > > today.  In the meantime, if there's anything else you'd like me to
> > > > > > > try, please let me know.
> > > > > > 
> > > > > > OK, given that I still cannot reproduce it, I do need your help with
> > > > > > the diagnostics.  And so what sorts of diagnostics work for you in
> > > > > > the hung state?  Are you able to dump ftrace buffers?
> > > > > > 
> > > > > > If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> > > > > > and send me the resulting trace.
> > > > > 
> > > > > And another random kernel boot parameter to try is rcu_nocb_poll.
> > > > 
> > > > Right, this gets the boot going again:
> > > 
> > > OK, that likely indicates a lost wakeup.  The event tracing enabled by
> > > "rcu:rcu_nocb_wake" should help track those down.  Last time, it was qemu
> > > losing the wakeups, but maybe it is RCU this time.  ;-)
> > 
> > The guest goes dead pretty early; is there a trick to enabling and
> > getting these traces out of the guest that I don't know of that
> > doesn't involve being booted into userspace?  I can perhaps try
> > getting the trace output out from a virtio-serial channel; but even
> > that driver isn't probed yet when the lockup happens.
> 
> First boot with the kernel parameter "trace_event=rcu:rcu_nocb_wake".
> Then when the system hangs, do "sendkey alt-sysrq-z" at the "(qemu)"
> prompt to dump the ftrace buffer.  This hopefully dumps the trace buffer
> to dmesg.
> 
> In addition "sendkey alt-sysrq-t" at the "(qemu)" prompt dumps all tasks'
> stacks, which would also likely be useful information.

Nah, this doesn't work -- the guest's totally locked up.  I need a way
to continuously dump buffers till the lockup happens, I suppose.

		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-11 20:18                         ` Amit Shah
@ 2014-08-11 20:34                           ` Paul E. McKenney
  2014-08-12  3:45                             ` Paul E. McKenney
  2014-08-12  5:27                             ` Amit Shah
  0 siblings, 2 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-11 20:34 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Tue, Aug 12, 2014 at 01:48:45AM +0530, Amit Shah wrote:
> On (Mon) 11 Aug 2014 [13:11:02], Paul E. McKenney wrote:
> > On Tue, Aug 12, 2014 at 01:11:26AM +0530, Amit Shah wrote:
> > > On (Mon) 11 Aug 2014 [09:28:07], Paul E. McKenney wrote:
> > > > On Mon, Aug 11, 2014 at 12:43:08PM +0530, Amit Shah wrote:
> > > > > On (Fri) 08 Aug 2014 [14:46:48], Paul E. McKenney wrote:
> > > > > > On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> > > > > > > On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > > > > > > > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> > > > > > > 
> > > > > > > [ . . . ]
> > > > > > > 
> > > > > > > > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > > > > > > > with the kernel parameter "acpi=off"?
> > > > > > > > 
> > > > > > > > That doesn't change anything - still hangs.
> > > > > > > > 
> > > > > > > > I intend to look at this more on Monday, though - turning in for
> > > > > > > > today.  In the meantime, if there's anything else you'd like me to
> > > > > > > > try, please let me know.
> > > > > > > 
> > > > > > > OK, given that I still cannot reproduce it, I do need your help with
> > > > > > > the diagnostics.  And so what sorts of diagnostics work for you in
> > > > > > > the hung state?  Are you able to dump ftrace buffers?
> > > > > > > 
> > > > > > > If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> > > > > > > and send me the resulting trace.
> > > > > > 
> > > > > > And another random kernel boot parameter to try is rcu_nocb_poll.
> > > > > 
> > > > > Right, this gets the boot going again:
> > > > 
> > > > OK, that likely indicates a lost wakeup.  The event tracing enabled by
> > > > "rcu:rcu_nocb_wake" should help track those down.  Last time, it was qemu
> > > > losing the wakeups, but maybe it is RCU this time.  ;-)
> > > 
> > > The guest goes dead pretty early; is there a trick to enabling and
> > > getting these traces out of the guest that I don't know of that
> > > doesn't involve being booted into userspace?  I can perhaps try
> > > getting the trace output out from a virtio-serial channel; but even
> > > that driver isn't probed yet when the lockup happens.
> > 
> > First boot with the kernel parameter "trace_event=rcu:rcu_nocb_wake".
> > Then when the system hangs, do "sendkey alt-sysrq-z" at the "(qemu)"
> > prompt to dump the ftrace buffer.  This hopefully dumps the trace buffer
> > to dmesg.
> > 
> > In addition "sendkey alt-sysrq-t" at the "(qemu)" prompt dumps all tasks'
> > stacks, which would also likely be useful information.
> 
> Nah, this doesn't work -- the guest's totally locked up.  I need a way
> to continuously dump buffers till the lockup happens, I suppose.

That is a bit surprising.  Is it possible that the system is OOMing
quickly due to grace periods not proceeding?  If so, maybe giving the
VM more memory would help.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-11 20:34                           ` Paul E. McKenney
@ 2014-08-12  3:45                             ` Paul E. McKenney
  2014-08-12  5:33                               ` Amit Shah
  2014-08-12  5:27                             ` Amit Shah
  1 sibling, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-12  3:45 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Mon, Aug 11, 2014 at 01:34:21PM -0700, Paul E. McKenney wrote:
> On Tue, Aug 12, 2014 at 01:48:45AM +0530, Amit Shah wrote:
> > On (Mon) 11 Aug 2014 [13:11:02], Paul E. McKenney wrote:
> > > On Tue, Aug 12, 2014 at 01:11:26AM +0530, Amit Shah wrote:
> > > > On (Mon) 11 Aug 2014 [09:28:07], Paul E. McKenney wrote:
> > > > > On Mon, Aug 11, 2014 at 12:43:08PM +0530, Amit Shah wrote:
> > > > > > On (Fri) 08 Aug 2014 [14:46:48], Paul E. McKenney wrote:
> > > > > > > On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> > > > > > > > On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > > > > > > > > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> > > > > > > > 
> > > > > > > > [ . . . ]
> > > > > > > > 
> > > > > > > > > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > > > > > > > > with the kernel parameter "acpi=off"?
> > > > > > > > > 
> > > > > > > > > That doesn't change anything - still hangs.
> > > > > > > > > 
> > > > > > > > > I intend to look at this more on Monday, though - turning in for
> > > > > > > > > today.  In the meantime, if there's anything else you'd like me to
> > > > > > > > > try, please let me know.
> > > > > > > > 
> > > > > > > > OK, given that I still cannot reproduce it, I do need your help with
> > > > > > > > the diagnostics.  And so what sorts of diagnostics work for you in
> > > > > > > > the hung state?  Are you able to dump ftrace buffers?
> > > > > > > > 
> > > > > > > > If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> > > > > > > > and send me the resulting trace.
> > > > > > > 
> > > > > > > And another random kernel boot parameter to try is rcu_nocb_poll.
> > > > > > 
> > > > > > Right, this gets the boot going again:
> > > > > 
> > > > > OK, that likely indicates a lost wakeup.  The event tracing enabled by
> > > > > "rcu:rcu_nocb_wake" should help track those down.  Last time, it was qemu
> > > > > losing the wakeups, but maybe it is RCU this time.  ;-)
> > > > 
> > > > The guest goes dead pretty early; is there a trick to enabling and
> > > > getting these traces out of the guest that I don't know of that
> > > > doesn't involve being booted into userspace?  I can perhaps try
> > > > getting the trace output out from a virtio-serial channel; but even
> > > > that driver isn't probed yet when the lockup happens.
> > > 
> > > First boot with the kernel parameter "trace_event=rcu:rcu_nocb_wake".
> > > Then when the system hangs, do "sendkey alt-sysrq-z" at the "(qemu)"
> > > prompt to dump the ftrace buffer.  This hopefully dumps the trace buffer
> > > to dmesg.
> > > 
> > > In addition "sendkey alt-sysrq-t" at the "(qemu)" prompt dumps all tasks'
> > > stacks, which would also likely be useful information.
> > 
> > Nah, this doesn't work -- the guest's totally locked up.  I need a way
> > to continuously dump buffers till the lockup happens, I suppose.
> 
> That is a bit surprising.  Is it possible that the system is OOMing
> quickly due to grace periods not proceeding?  If so, maybe giving the
> VM more memory would help.

Oh, and it is necessary to build the kernel with CONFIG_RCU_TRACE=y
for the rcu_nocb_wake trace events to be enabled in the first place.
I am assuming that your kernel was built with CONFIG_MAGIC_SYSRQ=y.

If all of that is in place and no joy, is it possible to extract the
ftrace buffer from the running/hung guest?  It should be in there
somewhere!  ;-)

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-11 20:34                           ` Paul E. McKenney
  2014-08-12  3:45                             ` Paul E. McKenney
@ 2014-08-12  5:27                             ` Amit Shah
  2014-08-12 16:08                               ` Paul E. McKenney
  1 sibling, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-12  5:27 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Mon) 11 Aug 2014 [13:34:21], Paul E. McKenney wrote:
> On Tue, Aug 12, 2014 at 01:48:45AM +0530, Amit Shah wrote:
> > On (Mon) 11 Aug 2014 [13:11:02], Paul E. McKenney wrote:
> > > On Tue, Aug 12, 2014 at 01:11:26AM +0530, Amit Shah wrote:
> > > > On (Mon) 11 Aug 2014 [09:28:07], Paul E. McKenney wrote:
> > > > > On Mon, Aug 11, 2014 at 12:43:08PM +0530, Amit Shah wrote:
> > > > > > On (Fri) 08 Aug 2014 [14:46:48], Paul E. McKenney wrote:
> > > > > > > On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> > > > > > > > On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > > > > > > > > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> > > > > > > > 
> > > > > > > > [ . . . ]
> > > > > > > > 
> > > > > > > > > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > > > > > > > > with the kernel parameter "acpi=off"?
> > > > > > > > > 
> > > > > > > > > That doesn't change anything - still hangs.
> > > > > > > > > 
> > > > > > > > > I intend to look at this more on Monday, though - turning in for
> > > > > > > > > today.  In the meantime, if there's anything else you'd like me to
> > > > > > > > > try, please let me know.
> > > > > > > > 
> > > > > > > > OK, given that I still cannot reproduce it, I do need your help with
> > > > > > > > the diagnostics.  And so what sorts of diagnostics work for you in
> > > > > > > > the hung state?  Are you able to dump ftrace buffers?
> > > > > > > > 
> > > > > > > > If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> > > > > > > > and send me the resulting trace.
> > > > > > > 
> > > > > > > And another random kernel boot parameter to try is rcu_nocb_poll.
> > > > > > 
> > > > > > Right, this gets the boot going again:
> > > > > 
> > > > > OK, that likely indicates a lost wakeup.  The event tracing enabled by
> > > > > "rcu:rcu_nocb_wake" should help track those down.  Last time, it was qemu
> > > > > losing the wakeups, but maybe it is RCU this time.  ;-)
> > > > 
> > > > The guest goes dead pretty early; is there a trick to enabling and
> > > > getting these traces out of the guest that I don't know of that
> > > > doesn't involve being booted into userspace?  I can perhaps try
> > > > getting the trace output out from a virtio-serial channel; but even
> > > > that driver isn't probed yet when the lockup happens.
> > > 
> > > First boot with the kernel parameter "trace_event=rcu:rcu_nocb_wake".
> > > Then when the system hangs, do "sendkey alt-sysrq-z" at the "(qemu)"
> > > prompt to dump the ftrace buffer.  This hopefully dumps the trace buffer
> > > to dmesg.
> > > 
> > > In addition "sendkey alt-sysrq-t" at the "(qemu)" prompt dumps all tasks'
> > > stacks, which would also likely be useful information.
> > 
> > Nah, this doesn't work -- the guest's totally locked up.  I need a way
> > to continuously dump buffers till the lockup happens, I suppose.
> 
> That is a bit surprising.  Is it possible that the system is OOMing
> quickly due to grace periods not proceeding?  If so, maybe giving the
> VM more memory would help.

I bumped it up to 1G and then 2G, same result.

		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-12  3:45                             ` Paul E. McKenney
@ 2014-08-12  5:33                               ` Amit Shah
  2014-08-12 16:06                                 ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-12  5:33 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Mon) 11 Aug 2014 [20:45:31], Paul E. McKenney wrote:
> On Mon, Aug 11, 2014 at 01:34:21PM -0700, Paul E. McKenney wrote:
> > On Tue, Aug 12, 2014 at 01:48:45AM +0530, Amit Shah wrote:
> > > On (Mon) 11 Aug 2014 [13:11:02], Paul E. McKenney wrote:
> > > > On Tue, Aug 12, 2014 at 01:11:26AM +0530, Amit Shah wrote:
> > > > > On (Mon) 11 Aug 2014 [09:28:07], Paul E. McKenney wrote:
> > > > > > On Mon, Aug 11, 2014 at 12:43:08PM +0530, Amit Shah wrote:
> > > > > > > On (Fri) 08 Aug 2014 [14:46:48], Paul E. McKenney wrote:
> > > > > > > > On Fri, Aug 08, 2014 at 02:43:47PM -0700, Paul E. McKenney wrote:
> > > > > > > > > On Sat, Aug 09, 2014 at 12:04:24AM +0530, Amit Shah wrote:
> > > > > > > > > > On (Fri) 08 Aug 2014 [11:18:35], Paul E. McKenney wrote:
> > > > > > > > > 
> > > > > > > > > [ . . . ]
> > > > > > > > > 
> > > > > > > > > > > Hmmm... What happens if you boot a7d7a143d0b4cb1914705884ca5c25e322dba693
> > > > > > > > > > > with the kernel parameter "acpi=off"?
> > > > > > > > > > 
> > > > > > > > > > That doesn't change anything - still hangs.
> > > > > > > > > > 
> > > > > > > > > > I intend to look at this more on Monday, though - turning in for
> > > > > > > > > > today.  In the meantime, if there's anything else you'd like me to
> > > > > > > > > > try, please let me know.
> > > > > > > > > 
> > > > > > > > > OK, given that I still cannot reproduce it, I do need your help with
> > > > > > > > > the diagnostics.  And so what sorts of diagnostics work for you in
> > > > > > > > > the hung state?  Are you able to dump ftrace buffers?
> > > > > > > > > 
> > > > > > > > > If you are able to dump ftrace buffers, please enable rcu:rcu_nocb_wake
> > > > > > > > > and send me the resulting trace.
> > > > > > > > 
> > > > > > > > And another random kernel boot parameter to try is rcu_nocb_poll.
> > > > > > > 
> > > > > > > Right, this gets the boot going again:
> > > > > > 
> > > > > > OK, that likely indicates a lost wakeup.  The event tracing enabled by
> > > > > > "rcu:rcu_nocb_wake" should help track those down.  Last time, it was qemu
> > > > > > losing the wakeups, but maybe it is RCU this time.  ;-)
> > > > > 
> > > > > The guest goes dead pretty early; is there a trick to enabling and
> > > > > getting these traces out of the guest that I don't know of that
> > > > > doesn't involve being booted into userspace?  I can perhaps try
> > > > > getting the trace output out from a virtio-serial channel; but even
> > > > > that driver isn't probed yet when the lockup happens.
> > > > 
> > > > First boot with the kernel parameter "trace_event=rcu:rcu_nocb_wake".
> > > > Then when the system hangs, do "sendkey alt-sysrq-z" at the "(qemu)"
> > > > prompt to dump the ftrace buffer.  This hopefully dumps the trace buffer
> > > > to dmesg.
> > > > 
> > > > In addition "sendkey alt-sysrq-t" at the "(qemu)" prompt dumps all tasks'
> > > > stacks, which would also likely be useful information.
> > > 
> > > Nah, this doesn't work -- the guest's totally locked up.  I need a way
> > > to continuously dump buffers till the lockup happens, I suppose.
> > 
> > That is a bit surprising.  Is it possible that the system is OOMing
> > quickly due to grace periods not proceeding?  If so, maybe giving the
> > VM more memory would help.
> 
> Oh, and it is necessary to build the kernel with CONFIG_RCU_TRACE=y
> for the rcu_nocb_wake trace events to be enabled in the first place.
> I am assuming that your kernel was built with CONFIG_MAGIC_SYSRQ=y.

Yes, it is :-)  I checked the rcu_nocb_poll cmdline option does indeed
dump all the ftrace buffers to dmesg.

> If all of that is in place and no joy, is it possible to extract the
> ftrace buffer from the running/hung guest?  It should be in there
> somewhere!  ;-)

I know of only virtio-console doing this (via userspace only,
though).

		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-12  5:33                               ` Amit Shah
@ 2014-08-12 16:06                                 ` Paul E. McKenney
  2014-08-12 21:39                                   ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-12 16:06 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> On (Mon) 11 Aug 2014 [20:45:31], Paul E. McKenney wrote:

[ . . . ]

> > > That is a bit surprising.  Is it possible that the system is OOMing
> > > quickly due to grace periods not proceeding?  If so, maybe giving the
> > > VM more memory would help.
> > 
> > Oh, and it is necessary to build the kernel with CONFIG_RCU_TRACE=y
> > for the rcu_nocb_wake trace events to be enabled in the first place.
> > I am assuming that your kernel was built with CONFIG_MAGIC_SYSRQ=y.
> 
> Yes, it is :-)  I checked the rcu_nocb_poll cmdline option does indeed
> dump all the ftrace buffers to dmesg.

Good.  ;-)

> > If all of that is in place and no joy, is it possible to extract the
> > ftrace buffer from the running/hung guest?  It should be in there
> > somewhere!  ;-)
> 
> I know of only virtio-console doing this (via userspace only,
> though).

As in userspace within the guest?  That would not work.  The userspace
that the qemu is running in might.  There is a way to extract ftrace info
from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
pull the buffer from the resulting dump.  For all I know, there might also
be some script that uses the qemu "x" command to get at the ftrace buffer.

Again, I cannot reproduce this, and I have been through the code several
times over the past few days, and am not seeing it.  I could start
sending you random diagnostic patches, but it would be much better if
we could get the trace data from the failure.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-12  5:27                             ` Amit Shah
@ 2014-08-12 16:08                               ` Paul E. McKenney
  0 siblings, 0 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-12 16:08 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Tue, Aug 12, 2014 at 10:57:26AM +0530, Amit Shah wrote:
> On (Mon) 11 Aug 2014 [13:34:21], Paul E. McKenney wrote:
> > On Tue, Aug 12, 2014 at 01:48:45AM +0530, Amit Shah wrote:

[ . . . ]

> > > > In addition "sendkey alt-sysrq-t" at the "(qemu)" prompt dumps all tasks'
> > > > stacks, which would also likely be useful information.
> > > 
> > > Nah, this doesn't work -- the guest's totally locked up.  I need a way
> > > to continuously dump buffers till the lockup happens, I suppose.
> > 
> > That is a bit surprising.  Is it possible that the system is OOMing
> > quickly due to grace periods not proceeding?  If so, maybe giving the
> > VM more memory would help.
> 
> I bumped it up to 1G and then 2G, same result.

OK.  I am then back at making the system dump core.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-12 16:06                                 ` Paul E. McKenney
@ 2014-08-12 21:39                                   ` Paul E. McKenney
  2014-08-12 21:41                                     ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-12 21:39 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:

[ . . . ]

> > I know of only virtio-console doing this (via userspace only,
> > though).
> 
> As in userspace within the guest?  That would not work.  The userspace
> that the qemu is running in might.  There is a way to extract ftrace info
> from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> pull the buffer from the resulting dump.  For all I know, there might also
> be some script that uses the qemu "x" command to get at the ftrace buffer.
> 
> Again, I cannot reproduce this, and I have been through the code several
> times over the past few days, and am not seeing it.  I could start
> sending you random diagnostic patches, but it would be much better if
> we could get the trace data from the failure.

Hearing no objections, random patch #1.  The compiler could in theory
cause trouble without this patch, so there is some possibility that
it is a fix.

							Thanx, Paul

------------------------------------------------------------------------

diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
index a2333d07f5d6..1dc72f523c4a 100644
--- a/kernel/rcu/tree_plugin.h
+++ b/kernel/rcu/tree_plugin.h
@@ -2043,7 +2043,7 @@ static void wake_nocb_leader(struct rcu_data *rdp, bool force)
 	if (!ACCESS_ONCE(rdp_leader->nocb_kthread))
 		return;
 	if (!ACCESS_ONCE(rdp_leader->nocb_leader_wake) || force) {
-		/* Prior xchg orders against prior callback enqueue. */
+		/* Prior smp_mb__after_atomic() orders against prior enqueue. */
 		ACCESS_ONCE(rdp_leader->nocb_leader_wake) = true;
 		wake_up(&rdp_leader->nocb_wq);
 	}
@@ -2072,6 +2072,7 @@ static void __call_rcu_nocb_enqueue(struct rcu_data *rdp,
 	ACCESS_ONCE(*old_rhpp) = rhp;
 	atomic_long_add(rhcount, &rdp->nocb_q_count);
 	atomic_long_add(rhcount_lazy, &rdp->nocb_q_count_lazy);
+	smp_mb__after_atomic(); /* Store *old_rhpp before _wake test. */
 
 	/* If we are not being polled and there is a kthread, awaken it ... */
 	t = ACCESS_ONCE(rdp->nocb_kthread);


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-12 21:39                                   ` Paul E. McKenney
@ 2014-08-12 21:41                                     ` Paul E. McKenney
  2014-08-12 21:44                                       ` Paul E. McKenney
  2014-08-13  5:44                                       ` Amit Shah
  0 siblings, 2 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-12 21:41 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Tue, Aug 12, 2014 at 02:39:36PM -0700, Paul E. McKenney wrote:
> On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> > On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> 
> [ . . . ]
> 
> > > I know of only virtio-console doing this (via userspace only,
> > > though).
> > 
> > As in userspace within the guest?  That would not work.  The userspace
> > that the qemu is running in might.  There is a way to extract ftrace info
> > from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> > pull the buffer from the resulting dump.  For all I know, there might also
> > be some script that uses the qemu "x" command to get at the ftrace buffer.
> > 
> > Again, I cannot reproduce this, and I have been through the code several
> > times over the past few days, and am not seeing it.  I could start
> > sending you random diagnostic patches, but it would be much better if
> > we could get the trace data from the failure.
> 
> Hearing no objections, random patch #1.  The compiler could in theory
> cause trouble without this patch, so there is some possibility that
> it is a fix.

#2...  This would have been a problem without the earlier patch, but
who knows?  (#1 moved from theoretically possible but not on x86 to
maybe on x86 given a sufficiently malevolent compiler with the
patch that you located with bisection.)

							Thanx, Paul

------------------------------------------------------------------------

diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
index 1dc72f523c4a..1da605740e8d 100644
--- a/kernel/rcu/tree_plugin.h
+++ b/kernel/rcu/tree_plugin.h
@@ -2137,6 +2137,17 @@ static bool __call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *rhp,
 		trace_rcu_callback(rdp->rsp->name, rhp,
 				   -atomic_long_read(&rdp->nocb_q_count_lazy),
 				   -atomic_long_read(&rdp->nocb_q_count));
+
+	/*
+	 * If called from an extended quiescent state with interrupts
+	 * disabled, invoke the RCU core in order to allow the idle-entry
+	 * deferred-wakeup check to function.
+	 */
+	if (irqs_disabled_flags(flags) &&
+	    !rcu_is_watching() &&
+	    cpu_online(smp_processor_id()))
+		invoke_rcu_core();
+
 	return true;
 }
 


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-12 21:41                                     ` Paul E. McKenney
@ 2014-08-12 21:44                                       ` Paul E. McKenney
  2014-08-13  5:44                                       ` Amit Shah
  1 sibling, 0 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-12 21:44 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Tue, Aug 12, 2014 at 02:41:51PM -0700, Paul E. McKenney wrote:
> On Tue, Aug 12, 2014 at 02:39:36PM -0700, Paul E. McKenney wrote:
> > On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> > > On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> > 
> > [ . . . ]
> > 
> > > > I know of only virtio-console doing this (via userspace only,
> > > > though).
> > > 
> > > As in userspace within the guest?  That would not work.  The userspace
> > > that the qemu is running in might.  There is a way to extract ftrace info
> > > from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> > > pull the buffer from the resulting dump.  For all I know, there might also
> > > be some script that uses the qemu "x" command to get at the ftrace buffer.
> > > 
> > > Again, I cannot reproduce this, and I have been through the code several
> > > times over the past few days, and am not seeing it.  I could start
> > > sending you random diagnostic patches, but it would be much better if
> > > we could get the trace data from the failure.
> > 
> > Hearing no objections, random patch #1.  The compiler could in theory
> > cause trouble without this patch, so there is some possibility that
> > it is a fix.
> 
> #2...  This would have been a problem without the earlier patch, but
> who knows?  (#1 moved from theoretically possible but not on x86 to
> maybe on x86 given a sufficiently malevolent compiler with the
> patch that you located with bisection.)

#3...  This one is theoretically possible, but not on any system that has
a full barrier on lock acquisition.  This code did not exist before the
patch you located via bisection, but on the other hand, given that you
were running only two CPUs, it should be dead code anyway.  But who knows?

							Thanx, Paul

------------------------------------------------------------------------

diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
index 1da605740e8d..70bff565dab6 100644
--- a/kernel/rcu/tree_plugin.h
+++ b/kernel/rcu/tree_plugin.h
@@ -2314,6 +2314,7 @@ wait_again:
 		atomic_long_add(rdp->nocb_gp_count, &rdp->nocb_follower_count);
 		atomic_long_add(rdp->nocb_gp_count_lazy,
 				&rdp->nocb_follower_count_lazy);
+		smp_mb__after_atomic(); /* Store *tail before wakeup. */
 		if (rdp != my_rdp && tail == &rdp->nocb_follower_head) {
 			/*
 			 * List was empty, wake up the follower.


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-12 21:41                                     ` Paul E. McKenney
  2014-08-12 21:44                                       ` Paul E. McKenney
@ 2014-08-13  5:44                                       ` Amit Shah
  2014-08-13 13:00                                         ` Paul E. McKenney
  1 sibling, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-13  5:44 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Tue) 12 Aug 2014 [14:41:51], Paul E. McKenney wrote:
> On Tue, Aug 12, 2014 at 02:39:36PM -0700, Paul E. McKenney wrote:
> > On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> > > On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> > 
> > [ . . . ]
> > 
> > > > I know of only virtio-console doing this (via userspace only,
> > > > though).
> > > 
> > > As in userspace within the guest?  That would not work.  The userspace
> > > that the qemu is running in might.  There is a way to extract ftrace info
> > > from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> > > pull the buffer from the resulting dump.  For all I know, there might also
> > > be some script that uses the qemu "x" command to get at the ftrace buffer.
> > > 
> > > Again, I cannot reproduce this, and I have been through the code several
> > > times over the past few days, and am not seeing it.  I could start
> > > sending you random diagnostic patches, but it would be much better if
> > > we could get the trace data from the failure.

I think the only recourse I now have is to dump the guest state from
qemu, and attempt to find the ftrace buffers by poking pages and
finding some ftrace-like struct... and then dumping the buffers.

> > Hearing no objections, random patch #1.  The compiler could in theory
> > cause trouble without this patch, so there is some possibility that
> > it is a fix.
> 
> #2...  This would have been a problem without the earlier patch, but
> who knows?  (#1 moved from theoretically possible but not on x86 to
> maybe on x86 given a sufficiently malevolent compiler with the
> patch that you located with bisection.)

I tried all 3 patches individually, and all 3 together, no success.

My gcc is gcc-4.8.3-1.fc20.x86_64.  I'm using a fairly uptodate Fedora
20 system on my laptop for these tests.

Curiously, patches 1 and 3 applied fine, but this one had a conflict.

> diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
> index 1dc72f523c4a..1da605740e8d 100644
> --- a/kernel/rcu/tree_plugin.h
> +++ b/kernel/rcu/tree_plugin.h
> @@ -2137,6 +2137,17 @@ static bool __call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *rhp,

I have this hunk at line 2161, and...

>  		trace_rcu_callback(rdp->rsp->name, rhp,
>  				   -atomic_long_read(&rdp->nocb_q_count_lazy),
>  				   -atomic_long_read(&rdp->nocb_q_count));
> +
> +	/*
> +	 * If called from an extended quiescent state with interrupts
> +	 * disabled, invoke the RCU core in order to allow the idle-entry
> +	 * deferred-wakeup check to function.
> +	 */
> +	if (irqs_disabled_flags(flags) &&
> +	    !rcu_is_watching() &&
> +	    cpu_online(smp_processor_id()))
> +		invoke_rcu_core();
> +
>  	return true;

I have return 1; here.

I'm on linux.git, c8d6637d0497d62093dbba0694c7b3a80b79bfe1.


		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-13  5:44                                       ` Amit Shah
@ 2014-08-13 13:00                                         ` Paul E. McKenney
  2014-08-13 14:18                                           ` Paul E. McKenney
  2014-08-15  5:24                                           ` Amit Shah
  0 siblings, 2 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-13 13:00 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Wed, Aug 13, 2014 at 11:14:39AM +0530, Amit Shah wrote:
> On (Tue) 12 Aug 2014 [14:41:51], Paul E. McKenney wrote:
> > On Tue, Aug 12, 2014 at 02:39:36PM -0700, Paul E. McKenney wrote:
> > > On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> > > > On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> > > 
> > > [ . . . ]
> > > 
> > > > > I know of only virtio-console doing this (via userspace only,
> > > > > though).
> > > > 
> > > > As in userspace within the guest?  That would not work.  The userspace
> > > > that the qemu is running in might.  There is a way to extract ftrace info
> > > > from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> > > > pull the buffer from the resulting dump.  For all I know, there might also
> > > > be some script that uses the qemu "x" command to get at the ftrace buffer.
> > > > 
> > > > Again, I cannot reproduce this, and I have been through the code several
> > > > times over the past few days, and am not seeing it.  I could start
> > > > sending you random diagnostic patches, but it would be much better if
> > > > we could get the trace data from the failure.
> 
> I think the only recourse I now have is to dump the guest state from
> qemu, and attempt to find the ftrace buffers by poking pages and
> finding some ftrace-like struct... and then dumping the buffers.

The data exists in the qemu guest state, so it would be good to have
it one way or another.  My current (perhaps self-serving) guess is that
you have come up with a way to trick qemu into dropping IPIs.

> > > Hearing no objections, random patch #1.  The compiler could in theory
> > > cause trouble without this patch, so there is some possibility that
> > > it is a fix.
> > 
> > #2...  This would have been a problem without the earlier patch, but
> > who knows?  (#1 moved from theoretically possible but not on x86 to
> > maybe on x86 given a sufficiently malevolent compiler with the
> > patch that you located with bisection.)
> 
> I tried all 3 patches individually, and all 3 together, no success.

I am not at all surprised.  You would have to have an extremely malevolent
compiler for two of them to have any effect, and you would have to have
someone invoking call_rcu() with irqs disabled from idle for the other
to have any effect.  Which is why I missed seeing them the first three
times I reviewed this code over the past few days.

> My gcc is gcc-4.8.3-1.fc20.x86_64.  I'm using a fairly uptodate Fedora
> 20 system on my laptop for these tests.
> 
> Curiously, patches 1 and 3 applied fine, but this one had a conflict.
> 
> > diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h
> > index 1dc72f523c4a..1da605740e8d 100644
> > --- a/kernel/rcu/tree_plugin.h
> > +++ b/kernel/rcu/tree_plugin.h
> > @@ -2137,6 +2137,17 @@ static bool __call_rcu_nocb(struct rcu_data *rdp, struct rcu_head *rhp,
> 
> I have this hunk at line 2161, and...
> 
> >  		trace_rcu_callback(rdp->rsp->name, rhp,
> >  				   -atomic_long_read(&rdp->nocb_q_count_lazy),
> >  				   -atomic_long_read(&rdp->nocb_q_count));
> > +
> > +	/*
> > +	 * If called from an extended quiescent state with interrupts
> > +	 * disabled, invoke the RCU core in order to allow the idle-entry
> > +	 * deferred-wakeup check to function.
> > +	 */
> > +	if (irqs_disabled_flags(flags) &&
> > +	    !rcu_is_watching() &&
> > +	    cpu_online(smp_processor_id()))
> > +		invoke_rcu_core();
> > +
> >  	return true;
> 
> I have return 1; here.
> 
> I'm on linux.git, c8d6637d0497d62093dbba0694c7b3a80b79bfe1.

I am working on top of my -rcu tree, which contains the fix from "1" to
"true" compared to current mainline.  So this will resolve itself, and
you should be OK fixing up conflict in either direction.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-13 13:00                                         ` Paul E. McKenney
@ 2014-08-13 14:18                                           ` Paul E. McKenney
  2014-08-15  5:24                                           ` Amit Shah
  1 sibling, 0 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-13 14:18 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Wed, Aug 13, 2014 at 06:00:49AM -0700, Paul E. McKenney wrote:
> On Wed, Aug 13, 2014 at 11:14:39AM +0530, Amit Shah wrote:
> > On (Tue) 12 Aug 2014 [14:41:51], Paul E. McKenney wrote:
> > > On Tue, Aug 12, 2014 at 02:39:36PM -0700, Paul E. McKenney wrote:
> > > > On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> > > > > On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> > > > 
> > > > [ . . . ]
> > > > 
> > > > > > I know of only virtio-console doing this (via userspace only,
> > > > > > though).
> > > > > 
> > > > > As in userspace within the guest?  That would not work.  The userspace
> > > > > that the qemu is running in might.  There is a way to extract ftrace info
> > > > > from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> > > > > pull the buffer from the resulting dump.  For all I know, there might also
> > > > > be some script that uses the qemu "x" command to get at the ftrace buffer.
> > > > > 
> > > > > Again, I cannot reproduce this, and I have been through the code several
> > > > > times over the past few days, and am not seeing it.  I could start
> > > > > sending you random diagnostic patches, but it would be much better if
> > > > > we could get the trace data from the failure.
> > 
> > I think the only recourse I now have is to dump the guest state from
> > qemu, and attempt to find the ftrace buffers by poking pages and
> > finding some ftrace-like struct... and then dumping the buffers.
> 
> The data exists in the qemu guest state, so it would be good to have
> it one way or another.  My current (perhaps self-serving) guess is that
> you have come up with a way to trick qemu into dropping IPIs.

Oh, and I wrote up my last inspection of the nocb code.  Please see below.

							Thanx, Paul

------------------------------------------------------------------------

Given that specifying rcu_nocb_poll avoids the hang, the natural focus
is on checks for rcu_nocb_poll:

o	__call_rcu_nocb_enqueue() skips the wakeup if rcu_nocb_poll,
	which is legitimate because the rcuo kthreads do their own
	wakeups in this case.

o	nocb_leader_wait() does wait_event_interruptible() on
	my_rdp->nocb_leader_wake if !rcu_nocb_poll.  So one further
	question is the handling of ->nocb_leader_wake.

	The thing to check for is if ->nocb_leader_wake can get set to
	true without a wakeup while the leader sleeps, as this would
	clearly lead to a hang.  Checking each use:

	o	wake_nocb_leader() tests ->nocb_leader_wake, and
		if false, sets it and does a wakeup.  The set is
		ordered after the test due to control dependencies.
		Multiple followers might concurrently attempt to
		wake their leader, and this can result in multiple
		wakeups, which should be OK -- we only need one
		wakeup, so more won't hurt.

		Here, every time ->nocb_leader_wake is set, we
		follow up with a wakeup, so this particular use
		avoids the sleep-while-set problem.

		It is also important to note that

	o	nocb_leader_wait() waits for ->nocb_leader_wake, as
		noted above.

	o	nocb_leader_wait() checks for spurious wakeups, but
		before sleeping again, it clears ->nocb_leader_wake,
		does a memory barrier, and rescans the callback
		queues, and sets ->nocb_leader_wake if any have
		callbacks.  Either way, it goes to wait again.  If it
		set ->nocb_leader_wake, then the wait won't wait,
		as required.

		The check for spurious wakeups also moves callbacks
		to an intermediate list for the grace-period-wait
		operation.  This ensures that we don't prematurely
		invoke any callbacks that arrive while the grace period
		is in progress.

	o	If the wakeup was real, nocb_leader_wait() clears
		->nocb_leader_wake, does a memory barrier, and moves
		callbacks from the intermediate lists to the followers'
		lists (including itself, as a leader is its own first
		follower).  During this move, the leader checks for
		new callbacks having arrived during the grace period,
		and sets ->nocb_leader_wake if there are any, again
		short-circuiting the following wake.

	o	Note that nocb_leader_wait() never sets ->nocb_leader_wake
		unless it has found callbacks waiting for it, and that
		setting ->nocb_leader_wake short-circuits the next wait,
		so that a wakeup is not required.

		Note also that every time nocb_leader_wait() clears
		->nocb_leader_wake, it does a memory barrier and
		scans all the lists before sleeping again.  This means
		that if a wakeup arrives just before nocb_leader_wait()
		clears ->nocb_leader_wake, then nocb_leader_wait() will
		be guaranteed to see the newly arrived callback, and
		thus not need a wakeup.

o	Because nocb_leader_wait() always checks the queue head, it is
	necessary that the callers of wake_nocb_leader() ensure that
	the head is updated before the call to wake_nocb_leader().
	This is a problem, and smp_mb__after_atomic() is added after
	the atomic_add_long() in __call_rcu_nocb_enqueue() to fix
	this.  Note that atomic_add_long() does not have a barrier()
	directive, so this misordering could in theory happen even on
	strongly-ordered systems, courtesy of the compiler.

o	The leader-follower wakeups also need attention, as it references
	rcu_nocb_poll.

	nocb_follower_wait() does a wait on rdp->nocb_follower_head, and
	ensures ordering with the later smp_load_acquire() from that same
	variable.

	The wakeup happens in nocb_leader_wait().  This has the same
	sequence as __call_rcu_nocb_enqueue(), but there is no _wake
	flag.  This means that the only way that confusion could result
	is if the assignment to *tail was moved to after the wake_up().
	Now, wake_up() unconditionally acquires a lock, but in theory
	only guarantees that stuff before the lock acquisition happens
	before the lock release.  So might as well also add
	smp_mb__after_atomic here, also.  (This will not affect x86,
	which has strong ordering on lock acquisition.)

o	Check use of do_nocb_deferred_wakeup().  If any of these has
	been omitted, then a wakeup could be lost.

	This is invoked on next entry to an extended quiescent state and
	on exit from __rcu_process_callbacks().  It is checked on every
	scheduling-clock interrupt via rcu_nocb_need_deferred_wakeup(),
	and if needed, an RCU_SOFTIRQ is issued, which will result in
	a later invocation of __rcu_process_callbacks().

	So the only vulnerability is a call_rcu() with irqs disabled from
	idle.  This needs a check.  Note that there is a similar check
	in __call_rcu_core(), though not for irqs disabled.  Check added.


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-13 13:00                                         ` Paul E. McKenney
  2014-08-13 14:18                                           ` Paul E. McKenney
@ 2014-08-15  5:24                                           ` Amit Shah
  2014-08-15 15:04                                             ` Paul E. McKenney
  1 sibling, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-15  5:24 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Wed) 13 Aug 2014 [06:00:49], Paul E. McKenney wrote:
> On Wed, Aug 13, 2014 at 11:14:39AM +0530, Amit Shah wrote:
> > On (Tue) 12 Aug 2014 [14:41:51], Paul E. McKenney wrote:
> > > On Tue, Aug 12, 2014 at 02:39:36PM -0700, Paul E. McKenney wrote:
> > > > On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> > > > > On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> > > > 
> > > > [ . . . ]
> > > > 
> > > > > > I know of only virtio-console doing this (via userspace only,
> > > > > > though).
> > > > > 
> > > > > As in userspace within the guest?  That would not work.  The userspace
> > > > > that the qemu is running in might.  There is a way to extract ftrace info
> > > > > from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> > > > > pull the buffer from the resulting dump.  For all I know, there might also
> > > > > be some script that uses the qemu "x" command to get at the ftrace buffer.
> > > > > 
> > > > > Again, I cannot reproduce this, and I have been through the code several
> > > > > times over the past few days, and am not seeing it.  I could start
> > > > > sending you random diagnostic patches, but it would be much better if
> > > > > we could get the trace data from the failure.
> > 
> > I think the only recourse I now have is to dump the guest state from
> > qemu, and attempt to find the ftrace buffers by poking pages and
> > finding some ftrace-like struct... and then dumping the buffers.
> 
> The data exists in the qemu guest state, so it would be good to have
> it one way or another.  My current (perhaps self-serving) guess is that
> you have come up with a way to trick qemu into dropping IPIs.

I didn't get around to doing this yet; will get to it next week.

In the meantime, I tried this on RHEL6 (with RHEL6 qemu and gcc and
seabios), and that exhibits the problem similarly with my .config.

<snip>

> > > +
> > >  	return true;
> > 
> > I have return 1; here.
> > 
> > I'm on linux.git, c8d6637d0497d62093dbba0694c7b3a80b79bfe1.
> 
> I am working on top of my -rcu tree, which contains the fix from "1" to
> "true" compared to current mainline.  So this will resolve itself, and
> you should be OK fixing up conflict in either direction.

Yep, I did do that.  Just noted here that the hunk didn't directly
apply.

Thanks,

		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-15  5:24                                           ` Amit Shah
@ 2014-08-15 15:04                                             ` Paul E. McKenney
  2014-08-18 17:53                                               ` Amit Shah
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-15 15:04 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Fri, Aug 15, 2014 at 10:54:11AM +0530, Amit Shah wrote:
> On (Wed) 13 Aug 2014 [06:00:49], Paul E. McKenney wrote:
> > On Wed, Aug 13, 2014 at 11:14:39AM +0530, Amit Shah wrote:
> > > On (Tue) 12 Aug 2014 [14:41:51], Paul E. McKenney wrote:
> > > > On Tue, Aug 12, 2014 at 02:39:36PM -0700, Paul E. McKenney wrote:
> > > > > On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> > > > > > On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> > > > > 
> > > > > [ . . . ]
> > > > > 
> > > > > > > I know of only virtio-console doing this (via userspace only,
> > > > > > > though).
> > > > > > 
> > > > > > As in userspace within the guest?  That would not work.  The userspace
> > > > > > that the qemu is running in might.  There is a way to extract ftrace info
> > > > > > from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> > > > > > pull the buffer from the resulting dump.  For all I know, there might also
> > > > > > be some script that uses the qemu "x" command to get at the ftrace buffer.
> > > > > > 
> > > > > > Again, I cannot reproduce this, and I have been through the code several
> > > > > > times over the past few days, and am not seeing it.  I could start
> > > > > > sending you random diagnostic patches, but it would be much better if
> > > > > > we could get the trace data from the failure.
> > > 
> > > I think the only recourse I now have is to dump the guest state from
> > > qemu, and attempt to find the ftrace buffers by poking pages and
> > > finding some ftrace-like struct... and then dumping the buffers.
> > 
> > The data exists in the qemu guest state, so it would be good to have
> > it one way or another.  My current (perhaps self-serving) guess is that
> > you have come up with a way to trick qemu into dropping IPIs.
> 
> I didn't get around to doing this yet; will get to it next week.
> 
> In the meantime, I tried this on RHEL6 (with RHEL6 qemu and gcc and
> seabios), and that exhibits the problem similarly with my .config.

And I am running my tests successfully on an x86_64 system running
Ubuntu 12.04.  Some testing on 14.04 seems to require booting with
acpi=off, leading to my perhaps self-serving guess above.

> <snip>
> 
> > > > +
> > > >  	return true;
> > > 
> > > I have return 1; here.
> > > 
> > > I'm on linux.git, c8d6637d0497d62093dbba0694c7b3a80b79bfe1.
> > 
> > I am working on top of my -rcu tree, which contains the fix from "1" to
> > "true" compared to current mainline.  So this will resolve itself, and
> > you should be OK fixing up conflict in either direction.
> 
> Yep, I did do that.  Just noted here that the hunk didn't directly
> apply.

Fair enough, thank you for letting me know.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-15 15:04                                             ` Paul E. McKenney
@ 2014-08-18 17:53                                               ` Amit Shah
  2014-08-19  4:01                                                 ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-18 17:53 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Fri) 15 Aug 2014 [08:04:05], Paul E. McKenney wrote:
> On Fri, Aug 15, 2014 at 10:54:11AM +0530, Amit Shah wrote:
> > On (Wed) 13 Aug 2014 [06:00:49], Paul E. McKenney wrote:
> > > On Wed, Aug 13, 2014 at 11:14:39AM +0530, Amit Shah wrote:
> > > > On (Tue) 12 Aug 2014 [14:41:51], Paul E. McKenney wrote:
> > > > > On Tue, Aug 12, 2014 at 02:39:36PM -0700, Paul E. McKenney wrote:
> > > > > > On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> > > > > > > On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> > > > > > 
> > > > > > [ . . . ]
> > > > > > 
> > > > > > > > I know of only virtio-console doing this (via userspace only,
> > > > > > > > though).
> > > > > > > 
> > > > > > > As in userspace within the guest?  That would not work.  The userspace
> > > > > > > that the qemu is running in might.  There is a way to extract ftrace info
> > > > > > > from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> > > > > > > pull the buffer from the resulting dump.  For all I know, there might also
> > > > > > > be some script that uses the qemu "x" command to get at the ftrace buffer.
> > > > > > > 
> > > > > > > Again, I cannot reproduce this, and I have been through the code several
> > > > > > > times over the past few days, and am not seeing it.  I could start
> > > > > > > sending you random diagnostic patches, but it would be much better if
> > > > > > > we could get the trace data from the failure.
> > > > 
> > > > I think the only recourse I now have is to dump the guest state from
> > > > qemu, and attempt to find the ftrace buffers by poking pages and
> > > > finding some ftrace-like struct... and then dumping the buffers.
> > > 
> > > The data exists in the qemu guest state, so it would be good to have
> > > it one way or another.  My current (perhaps self-serving) guess is that
> > > you have come up with a way to trick qemu into dropping IPIs.
> > 
> > I didn't get around to doing this yet; will get to it next week.
> > 
> > In the meantime, I tried this on RHEL6 (with RHEL6 qemu and gcc and
> > seabios), and that exhibits the problem similarly with my .config.
> 
> And I am running my tests successfully on an x86_64 system running
> Ubuntu 12.04.  Some testing on 14.04 seems to require booting with
> acpi=off, leading to my perhaps self-serving guess above.

It looks like Ubuntu 12.04 has a choice of multiple kernels.  Which
one are you running?

Also, is there a chance you could try this on a RHEL6 box?

Thanks,

		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-18 17:53                                               ` Amit Shah
@ 2014-08-19  4:01                                                 ` Paul E. McKenney
  2014-08-22 12:24                                                   ` Amit Shah
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-19  4:01 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Mon, Aug 18, 2014 at 11:23:45PM +0530, Amit Shah wrote:
> On (Fri) 15 Aug 2014 [08:04:05], Paul E. McKenney wrote:
> > On Fri, Aug 15, 2014 at 10:54:11AM +0530, Amit Shah wrote:
> > > On (Wed) 13 Aug 2014 [06:00:49], Paul E. McKenney wrote:
> > > > On Wed, Aug 13, 2014 at 11:14:39AM +0530, Amit Shah wrote:
> > > > > On (Tue) 12 Aug 2014 [14:41:51], Paul E. McKenney wrote:
> > > > > > On Tue, Aug 12, 2014 at 02:39:36PM -0700, Paul E. McKenney wrote:
> > > > > > > On Tue, Aug 12, 2014 at 09:06:21AM -0700, Paul E. McKenney wrote:
> > > > > > > > On Tue, Aug 12, 2014 at 11:03:21AM +0530, Amit Shah wrote:
> > > > > > > 
> > > > > > > [ . . . ]
> > > > > > > 
> > > > > > > > > I know of only virtio-console doing this (via userspace only,
> > > > > > > > > though).
> > > > > > > > 
> > > > > > > > As in userspace within the guest?  That would not work.  The userspace
> > > > > > > > that the qemu is running in might.  There is a way to extract ftrace info
> > > > > > > > from crash dumps, so one approach would be "sendkey alt-sysrq-c", then
> > > > > > > > pull the buffer from the resulting dump.  For all I know, there might also
> > > > > > > > be some script that uses the qemu "x" command to get at the ftrace buffer.
> > > > > > > > 
> > > > > > > > Again, I cannot reproduce this, and I have been through the code several
> > > > > > > > times over the past few days, and am not seeing it.  I could start
> > > > > > > > sending you random diagnostic patches, but it would be much better if
> > > > > > > > we could get the trace data from the failure.
> > > > > 
> > > > > I think the only recourse I now have is to dump the guest state from
> > > > > qemu, and attempt to find the ftrace buffers by poking pages and
> > > > > finding some ftrace-like struct... and then dumping the buffers.
> > > > 
> > > > The data exists in the qemu guest state, so it would be good to have
> > > > it one way or another.  My current (perhaps self-serving) guess is that
> > > > you have come up with a way to trick qemu into dropping IPIs.
> > > 
> > > I didn't get around to doing this yet; will get to it next week.
> > > 
> > > In the meantime, I tried this on RHEL6 (with RHEL6 qemu and gcc and
> > > seabios), and that exhibits the problem similarly with my .config.
> > 
> > And I am running my tests successfully on an x86_64 system running
> > Ubuntu 12.04.  Some testing on 14.04 seems to require booting with
> > acpi=off, leading to my perhaps self-serving guess above.
> 
> It looks like Ubuntu 12.04 has a choice of multiple kernels.  Which
> one are you running?

3.2.0-67-generic-pae and 3.13.0-30-generic for the host.

> Also, is there a chance you could try this on a RHEL6 box?

The odds are low over the next few days.  I am adding nastier rcutorture
testing, however.  It would still be very good to get debug information
from your setup.  One approach would be to convert the trace function
calls into printk(), if that would help.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-19  4:01                                                 ` Paul E. McKenney
@ 2014-08-22 12:24                                                   ` Amit Shah
  2014-08-22 12:36                                                     ` Amit Shah
  2014-08-22 14:43                                                     ` Paul E. McKenney
  0 siblings, 2 replies; 42+ messages in thread
From: Amit Shah @ 2014-08-22 12:24 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

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

On (Mon) 18 Aug 2014 [21:01:49], Paul E. McKenney wrote:

> The odds are low over the next few days.  I am adding nastier rcutorture
> testing, however.  It would still be very good to get debug information
> from your setup.  One approach would be to convert the trace function
> calls into printk(), if that would help.

I added a few printks on the lines of the traces in cases where
rcu_nocb_poll was checked -- since that reproduces the hang.  Are the
following traces sufficient, or should I keep adding more printks?

In the case of rcu-trace-nopoll.txt, the messages stop after a while
(when the guest locks up hard).  That's when I kill the qemu process.


		Amit

[-- Attachment #2: rcu-trace-nopoll.txt --]
[-- Type: text/plain, Size: 158712 bytes --]

$ ~/build/qemu/x86_64-softmmu/qemu-system-x86_64 -m 256 -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage -vnc :1     -serial stdio -net none  -append 'root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake'
Initializing cgroup subsys cpu
Linux version 3.17.0-rc1+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #96 SMP PREEMPT Fri Aug 22 17:46:45 IST 2014
Command line: root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake
e820: BIOS-provided physical RAM map:
BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
BIOS-e820: [mem 0x0000000000100000-0x000000000ffdffff] usable
BIOS-e820: [mem 0x000000000ffe0000-0x000000000fffffff] reserved
BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
NX (Execute Disable) protection: active
SMBIOS 2.8 present.
Hypervisor detected: KVM
AGP: No AGP bridge found
e820: last_pfn = 0xffe0 max_arch_pfn = 0x400000000
PAT not supported by CPU.
init_memory_mapping: [mem 0x00000000-0x000fffff]
init_memory_mapping: [mem 0x0fc00000-0x0fdfffff]
init_memory_mapping: [mem 0x0c000000-0x0fbfffff]
init_memory_mapping: [mem 0x00100000-0x0bffffff]
init_memory_mapping: [mem 0x0fe00000-0x0ffdffff]
ACPI: Early table checksum verification disabled
ACPI: RSDP 0x00000000000F0CB0 000014 (v00 BOCHS )
ACPI: RSDT 0x000000000FFE1854 000034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
ACPI: FACP 0x000000000FFE0B37 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
ACPI: DSDT 0x000000000FFE0040 000AF7 (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
ACPI: FACS 0x000000000FFE0000 000040
ACPI: SSDT 0x000000000FFE0BAB 000BF9 (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
ACPI: APIC 0x000000000FFE17A4 000078 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
ACPI: HPET 0x000000000FFE181C 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
kvm-clock: Using msrs 4b564d01 and 4b564d00
kvm-clock: cpu 0, msr 0:ffdf001, primary cpu clock
Zone ranges:
  DMA      [mem 0x00001000-0x00ffffff]
  DMA32    [mem 0x01000000-0xffffffff]
  Normal   empty
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x00001000-0x0009efff]
  node   0: [mem 0x00100000-0x0ffdffff]
ACPI: PM-Timer IO Port: 0x608
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8086a201 base: 0xfed00000
smpboot: Allowing 1 CPUs, 0 hotplug CPUs
PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
e820: [mem 0x10000000-0xfeffbfff] available for PCI devices
Booting paravirtualized kernel on KVM
setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:1 nr_node_ids:1
PERCPU: Embedded 475 pages/cpu @ffff88000fa00000 s1916544 r8192 d20864 u2097152
KVM setup async PF for cpu 0
kvm-stealtime: cpu 0, msr fa0cbc0
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 64361
Kernel command line: root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake
PID hash table entries: 1024 (order: 1, 8192 bytes)
Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
Inode-cache hash table entries: 16384 (order: 5, 131072 bytes)
AGP: Checking aperture...
AGP: No AGP bridge found
Memory: 228588K/261624K available (4039K kernel code, 728K rwdata, 2188K rodata, 2872K init, 14176K bss, 33036K reserved)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Preemptible hierarchical RCU implementation.
	RCU debugfs-based tracing is enabled.
	RCU lockdep checking is enabled.
	Additional per-CPU info printed with stalls.
	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
	Offload RCU callbacks from all CPUs
	Offload RCU callbacks from CPUs: 0.
RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
NO_HZ: Full dynticks CPUs: 1-3.
NR_IRQS:4352 nr_irqs:256 0
Console: colour VGA+ 80x25
console [tty0] enabled
console [ttyS0] enabled
Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
... MAX_LOCKDEP_SUBCLASSES:  8
... MAX_LOCK_DEPTH:          48
... MAX_LOCKDEP_KEYS:        8191
... CLASSHASH_SIZE:          4096
... MAX_LOCKDEP_ENTRIES:     32768
... MAX_LOCKDEP_CHAINS:      65536
... CHAINHASH_SIZE:          32768
 memory used by lock dependency info: 8671 kB
 per task-struct memory footprint: 2688 bytes
tsc: Detected 2790.936 MHz processor
Calibrating delay loop (skipped) preset value.. 5581.87 BogoMIPS (lpj=11163744)
pid_max: default: 32768 minimum: 301
ACPI: Core revision 20140724
ACPI: All ACPI Tables successfully acquired
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes)
Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
debug: unmapping init [mem 0xffffffff81b86000-0xffffffff81b88fff]
ftrace: allocating 17909 entries in 70 pages
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
smpboot: CPU0: Intel QEMU Virtual CPU version 2.1.50 (fam: 06, model: 06, stepping: 03)
Performance Events: Broken PMU hardware detected, using software events only.
Failed to access perfctr msr (MSR c1 is 0)
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
x86: Booted up 1 node, 1 CPUs
smpboot: Total of 1 processors activated (5581.87 BogoMIPS)
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
prandom: seed boundary self test passed
prandom: 100 self tests passed
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
NET: Registered protocol family 16
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
cpuidle: using governor ladder
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
cpuidle: using governor menu
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
ACPI: bus type PCI registered
acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
PCI: Using configuration type 1 for base access
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
qemu: terminating on signal 2


[-- Attachment #3: rcu-traces-poll.txt --]
[-- Type: text/plain, Size: 36083 bytes --]

$ ~/build/qemu/x86_64-softmmu/qemu-system-x86_64 -m 256 -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage -vnc :1     -serial stdio -net none  -append 'root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake rcu_nocb_poll'
Initializing cgroup subsys cpu
Linux version 3.17.0-rc1+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #96 SMP PREEMPT Fri Aug 22 17:46:45 IST 2014
Command line: root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake rcu_nocb_poll
e820: BIOS-provided physical RAM map:
BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
BIOS-e820: [mem 0x0000000000100000-0x000000000ffdffff] usable
BIOS-e820: [mem 0x000000000ffe0000-0x000000000fffffff] reserved
BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
NX (Execute Disable) protection: active
SMBIOS 2.8 present.
Hypervisor detected: KVM
AGP: No AGP bridge found
e820: last_pfn = 0xffe0 max_arch_pfn = 0x400000000
PAT not supported by CPU.
init_memory_mapping: [mem 0x00000000-0x000fffff]
init_memory_mapping: [mem 0x0fc00000-0x0fdfffff]
init_memory_mapping: [mem 0x0c000000-0x0fbfffff]
init_memory_mapping: [mem 0x00100000-0x0bffffff]
init_memory_mapping: [mem 0x0fe00000-0x0ffdffff]
ACPI: Early table checksum verification disabled
ACPI: RSDP 0x00000000000F0CB0 000014 (v00 BOCHS )
ACPI: RSDT 0x000000000FFE1854 000034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
ACPI: FACP 0x000000000FFE0B37 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
ACPI: DSDT 0x000000000FFE0040 000AF7 (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
ACPI: FACS 0x000000000FFE0000 000040
ACPI: SSDT 0x000000000FFE0BAB 000BF9 (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
ACPI: APIC 0x000000000FFE17A4 000078 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
ACPI: HPET 0x000000000FFE181C 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
kvm-clock: Using msrs 4b564d01 and 4b564d00
kvm-clock: cpu 0, msr 0:ffdf001, primary cpu clock
Zone ranges:
  DMA      [mem 0x00001000-0x00ffffff]
  DMA32    [mem 0x01000000-0xffffffff]
  Normal   empty
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x00001000-0x0009efff]
  node   0: [mem 0x00100000-0x0ffdffff]
ACPI: PM-Timer IO Port: 0x608
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Using ACPI (MADT) for SMP configuration information
ACPI: HPET id: 0x8086a201 base: 0xfed00000
smpboot: Allowing 1 CPUs, 0 hotplug CPUs
PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
e820: [mem 0x10000000-0xfeffbfff] available for PCI devices
Booting paravirtualized kernel on KVM
setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:1 nr_node_ids:1
PERCPU: Embedded 475 pages/cpu @ffff88000fa00000 s1916544 r8192 d20864 u2097152
KVM setup async PF for cpu 0
kvm-stealtime: cpu 0, msr fa0cbc0
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 64361
Kernel command line: root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake rcu_nocb_poll
PID hash table entries: 1024 (order: 1, 8192 bytes)
Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
Inode-cache hash table entries: 16384 (order: 5, 131072 bytes)
AGP: Checking aperture...
AGP: No AGP bridge found
Memory: 228588K/261624K available (4039K kernel code, 728K rwdata, 2188K rodata, 2872K init, 14176K bss, 33036K reserved)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Preemptible hierarchical RCU implementation.
	RCU debugfs-based tracing is enabled.
	RCU lockdep checking is enabled.
	Additional per-CPU info printed with stalls.
	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
	Offload RCU callbacks from all CPUs
	Offload RCU callbacks from CPUs: 0.
	Poll for callbacks from no-CBs CPUs.
RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
NO_HZ: Full dynticks CPUs: 1-3.
NR_IRQS:4352 nr_irqs:256 0
Console: colour VGA+ 80x25
console [tty0] enabled
console [ttyS0] enabled
Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
... MAX_LOCKDEP_SUBCLASSES:  8
... MAX_LOCK_DEPTH:          48
... MAX_LOCKDEP_KEYS:        8191
... CLASSHASH_SIZE:          4096
... MAX_LOCKDEP_ENTRIES:     32768
... MAX_LOCKDEP_CHAINS:      65536
... CHAINHASH_SIZE:          32768
 memory used by lock dependency info: 8671 kB
 per task-struct memory footprint: 2688 bytes
tsc: Detected 2790.936 MHz processor
Calibrating delay loop (skipped) preset value.. 5581.87 BogoMIPS (lpj=11163744)
pid_max: default: 32768 minimum: 301
ACPI: Core revision 20140724
ACPI: All ACPI Tables successfully acquired
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes)
Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
debug: unmapping init [mem 0xffffffff81b86000-0xffffffff81b88fff]
ftrace: allocating 17909 entries in 70 pages
..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
smpboot: CPU0: Intel QEMU Virtual CPU version 2.1.50 (fam: 06, model: 06, stepping: 03)
Performance Events: Broken PMU hardware detected, using software events only.
Failed to access perfctr msr (MSR c1 is 0)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_sched 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_bh 0 Poll
x86: Booted up 1 node, 1 CPUs
smpboot: Total of 1 processors activated (5581.87 BogoMIPS)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
prandom: seed boundary self test passed
prandom: 100 self tests passed
NET: Registered protocol family 16
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
cpuidle: using governor ladder
cpuidle: using governor menu
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: bus type PCI registered
acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
PCI: Using configuration type 1 for base access
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: Added _OSI(Module Device)
ACPI: Added _OSI(Processor Device)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: Added _OSI(3.0 _SCP Extensions)
ACPI: Added _OSI(Processor Aggregator Device)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: Interpreter enabled
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: (supports S0 S3 S4 S5)
ACPI: Using IOAPIC for interrupt routing
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpi PNP0A03:00: _OSC: OS supports [Segments MSI]
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [3] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [4] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [5] registered
acpiphp: Slot [6] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [7] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [8] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [9] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [10] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [11] registered
acpiphp: Slot [12] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [13] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [14] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [15] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [16] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [17] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [18] registered
acpiphp: Slot [19] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [20] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [21] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [22] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [23] registered
acpiphp: Slot [24] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [25] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [26] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [27] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [28] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [29] registered
acpiphp: Slot [30] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
acpiphp: Slot [31] registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
PCI host bridge to bus 0000:00
pci_bus 0000:00: root bus resource [bus 00-ff]
pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pci_bus 0000:00: root bus resource [io  0x0d00-0xadff]
pci_bus 0000:00: root bus resource [io  0xae0f-0xaeff]
pci_bus 0000:00: root bus resource [io  0xaf20-0xafdf]
pci_bus 0000:00: root bus resource [io  0xafe4-0xffff]
pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
pci_bus 0000:00: root bus resource [mem 0x10000000-0xfebfffff]
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: PCI Interrupt Link [LNKB] (IRQs
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
 5 *10 11)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: PCI Interrupt Link [LNKS] (IRQs *9
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ACPI: Enabled 16 GPEs in block 00 to 0F
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
vgaarb: loaded
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
vgaarb: bridge control possible 0000:00:02.0
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
SCSI subsystem initialized
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
PTP clock support registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
PCI: Using ACPI for IRQ routing
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
HPET: 3 timers in total, 0 timers will be used for per-cpu timer
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
Switched to clocksource kvm-clock
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pnp: PnP ACPI init
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pnp: PnP ACPI: found 6 devices
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
NET: Registered protocol family 2
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
TCP established hash table entries: 2048 (order: 2, 16384 bytes)
TCP bind hash table entries: 2048 (order: 5, 163840 bytes)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
TCP: Hash tables configured (established 2048 bind 2048)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
TCP: reno registered
UDP hash table entries: 256 (order: 3, 49152 bytes)
UDP-Lite hash table entries: 256 (order: 3, 49152 bytes)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
NET: Registered protocol family 1
pci 0000:00:00.0: Limiting direct PCI/PCI transfers
pci 0000:00:01.0: PIIX3: Enabling Passive Release
pci 0000:00:01.0: Activating ISA DMA hang workarounds
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
rcu-torture:--- Start of test: nreaders=1 nfakewriters=4 stat_interval=60 verbose=1 test_no_idle_hz=1 shuffle_interval=3 stutter=5 irqreader=1 fqs_duration=0 fqs_holdoff=0 fqs_stutter=3 test_boost=1/0 test_boost_interval=7 test_boost_duration=4 shutdown_secs=0 stall_cpu=0 stall_cpu_holdoff=10 n_barrier_cbs=0 onoff_interval=0 onoff_holdoff=0
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
rcu-torture: Creating rcu_torture_writer task
rcu-torture: Creating rcu_torture_fakewriter task
rcu-torture: rcu_torture_writer task started
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
rcu-torture: Creating rcu_torture_fakewriter task
rcu-torture: rcu_torture_fakewriter task started
rcu-torture: Creating rcu_torture_fakewriter task
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
rcu-torture: rcu_torture_fakewriter task started
rcu-torture: Creating rcu_torture_fakewriter task
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
rcu-torture: rcu_torture_fakewriter task started
rcu-torture: Creating rcu_torture_reader task
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
rcu-torture: rcu_torture_fakewriter task started
rcu-torture: Creating rcu_torture_stats task
rcu-torture: rcu_torture_reader task started
rcu-torture: Creating torture_shuffle task
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
rcu-torture: rcu_torture_stats task started
rcu-torture: Creating torture_stutter task
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
rcu-torture: torture_shuffle task started
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
rcu-torture: torture_stutter task started
futex hash table entries: 256 (order: 3, 32768 bytes)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
audit: initializing netlink subsys (disabled)
audit: type=2000 audit(1408709846.260:1): initialized
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
HugeTLB registered 2 MB page size, pre-allocated 0 pages
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
msgmni has been set to 446
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
io scheduler noop registered (default)
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pci_hotplug: PCI Hot Plug PCI Core version: 0.5
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
ACPI: Power Button [PWRF]
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
Non-volatile memory driver v1.3
Linux agpgart interface v0.103
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
brd: module loaded
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
loop: module loaded
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
scsi host0: ata_piix
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
scsi host1: ata_piix
ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc000 irq 14
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc008 irq 15
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
libphy: Fixed MDIO Bus: probed
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
e1000: Copyright (c) 1999-2006 Intel Corporation.
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
serio: i8042 KBD port at 0x60,0x64 irq 1
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
serio: i8042 AUX port at 0x60,0x64 irq 12
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
mousedev: PS/2 mouse device common for all mice
input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pps pps0: new PPS source ktimer
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
pps pps0: ktimer PPS source registered
pps_ldisc: PPS line discipline registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
TCP: cubic registered
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
NET: Registered protocol family 17
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
kmemleak: Kernel memory leak detector initialized
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
kmemleak: Automatic memory scanning thread started
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
ata2.00: ATAPI: QEMU DVD-ROM, 2.1.50, max UDMA/100
ata2.00: configured for MWDMA2
scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.1. PQ: 0 ANSI: 5
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
cdrom: Uniform CD-ROM driver Revision: 3.20
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
VFS: Cannot open root device "sda2" or unknown-block(0,0): error -6
Please append a correct "root=" boot option; here are the available partitions:
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
0b00         1048575 sr0  driver: sr
RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
CPU: 0 PID: 1 Comm: swapper/0 Not tainted 3.17.0-rc1+ #96
Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.7.5-0-ge51488c-20140602_164612-nilsson.home.kraxel.org 04/01/2014
 0000000000000000 00000000b5808356 ffff88000e953df0 ffffffff813e7be9
 ffffffff8157cb44 ffff88000e953e70 ffffffff813e3e62 3030623000000010
 ffff88000e953e80 ffff88000e953e20 00000000b5808356 0000000000000008
Call Trace:
 [<ffffffff813e7be9>] dump_stack+0x4e/0x7a
 [<ffffffff813e3e62>] panic+0xec/0x20f
 [<ffffffff81a8d46f>] mount_block_root+0x296/0x2a5
 [<ffffffff81a8d61b>] mount_root+0x53/0x56
 [<ffffffff81a8d785>] prepare_namespace+0x167/0x193
 [<ffffffff81a8d102>] kernel_init_freeable+0x187/0x194
 [<ffffffff81a8c7f0>] ? do_early_param+0x88/0x88
 [<ffffffff813e083f>] ? rest_init+0x133/0x133
 [<ffffffff813e084d>] kernel_init+0xe/0xda
 [<ffffffff813eeebc>] ret_from_fork+0x7c/0xb0
 [<ffffffff813e083f>] ? rest_init+0x133/0x133
Kernel Offset: 0x0 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffff9fffffff)
---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
qemu: terminating on signal 2

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-22 12:24                                                   ` Amit Shah
@ 2014-08-22 12:36                                                     ` Amit Shah
  2014-08-22 12:56                                                       ` Amit Shah
  2014-08-22 14:43                                                     ` Paul E. McKenney
  1 sibling, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-22 12:36 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Fri) 22 Aug 2014 [17:54:53], Amit Shah wrote:
> On (Mon) 18 Aug 2014 [21:01:49], Paul E. McKenney wrote:
> 
> > The odds are low over the next few days.  I am adding nastier rcutorture
> > testing, however.  It would still be very good to get debug information
> > from your setup.  One approach would be to convert the trace function
> > calls into printk(), if that would help.
> 
> I added a few printks on the lines of the traces in cases where
> rcu_nocb_poll was checked -- since that reproduces the hang.  Are the
> following traces sufficient, or should I keep adding more printks?
> 
> In the case of rcu-trace-nopoll.txt, the messages stop after a while
> (when the guest locks up hard).  That's when I kill the qemu process.

And this is bt from gdb when the endless 

  RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot

messages are being spewed.

I can't time it, but hope it gives some indication along with the printks.

Program received signal SIGINT, Interrupt.
io_serial_out (p=0xffffffff82940780 <serial8250_ports>, offset=<optimized out>, value=<optimized out>) at drivers/tty/serial/8250/8250_core.c:439
439	      }
(gdb) bt
#0  io_serial_out (p=0xffffffff82940780 <serial8250_ports>, offset=<optimized out>, value=<optimized out>) at drivers/tty/serial/8250/8250_core.c:439
#1  0xffffffff812b260a in serial_port_out (up=<optimized out>, offset=<optimized out>, value=<optimized out>) at include/linux/serial_core.h:214
#2  0xffffffff812b4781 in serial8250_console_putchar (port=0xffffffff82940780 <serial8250_ports>, ch=111) at drivers/tty/serial/8250/8250_core.c:2990
#3  0xffffffff812af07d in uart_console_write (port=0xffffffff82940780 <serial8250_ports>, 
    s=0xffffffff828dd96a <text+58> "t\n8fff]\nes: 4KB 0, 2MB 0, 4MB 0, 1GB 0\n6K bss, 33036K reserved)\n2 17:46:45 IST 2014\n", count=60, 
    putchar=0xffffffff812b4758 <serial8250_console_putchar>) at drivers/tty/serial/serial_core.c:1747
#4  0xffffffff812b470c in serial8250_console_write (co=<optimized out>, s=<optimized out>, count=60) at drivers/tty/serial/8250/8250_core.c:3025
#5  0xffffffff8107f517 in call_console_drivers (level=<optimized out>, len=60, text=<optimized out>) at kernel/printk/printk.c:1421
#6  0xffffffff81080498 in console_unlock () at kernel/printk/printk.c:2244
#7  0xffffffff81080b39 in vprintk_emit (facility=<optimized out>, level=<optimized out>, dict=<optimized out>, dictlen=<optimized out>, 
    fmt=<optimized out>, args=<optimized out>) at kernel/printk/printk.c:1786
#8  0xffffffff813e5235 in printk (fmt=<optimized out>) at kernel/printk/printk.c:1851
#9  0xffffffff8108e46b in __call_rcu_nocb_enqueue (rdp=0xffff88000fbcce00, rhp=<optimized out>, rhtp=<optimized out>, rhcount=<optimized out>, 
    rhcount_lazy=<optimized out>, flags=<optimized out>) at kernel/rcu/tree_plugin.h:2144
#10 0xffffffff81091140 in __call_rcu_nocb (flags=<optimized out>, lazy=<optimized out>, rhp=<optimized out>, rdp=<optimized out>)
    at kernel/rcu/tree_plugin.h:2166
#11 __call_rcu (head=0xffff88000e6c5390, func=0xffffffff81131346 <free_object_rcu>, rsp=0xffffffff818389c0 <rcu_preempt_state>, cpu=<optimized out>, 
    lazy=<optimized out>) at kernel/rcu/tree.c:2687
#12 0xffffffff81091673 in call_rcu (head=<optimized out>, func=<optimized out>) at kernel/rcu/tree_plugin.h:678
#13 0xffffffff81131756 in put_object (object=0xffff88000e6c5308) at mm/kmemleak.c:471
#14 0xffffffff81131b8c in delete_object_full (ptr=<optimized out>) at mm/kmemleak.c:641
#15 0xffffffff813e1782 in kmemleak_free (ptr=<optimized out>) at mm/kmemleak.c:944
#16 0xffffffff81128782 in kmemleak_free_recursive (flags=<optimized out>, ptr=<optimized out>) at include/linux/kmemleak.h:50
#17 slab_free_hook (s=0xffffffff82940780 <serial8250_ports>, x=0xffff88000e991c68) at mm/slub.c:1265
#18 0xffffffff8112a725 in slab_free (addr=<optimized out>, x=<optimized out>, page=<optimized out>, s=<optimized out>) at mm/slub.c:2644
#19 kmem_cache_free (s=<optimized out>, x=0xffff88000e991c68) at mm/slub.c:2681
#20 0xffffffff8121d84c in ida_get_new_above (ida=0xffffffff82940780 <serial8250_ports>, starting_id=<optimized out>, p_id=<optimized out>) at lib/idr.c:999
#21 0xffffffff8121dbe6 in ida_simple_get (ida=0xffffffff82940780 <serial8250_ports>, start=1016, end=<optimized out>, gfp_mask=0) at lib/idr.c:1101
#22 0xffffffff81188f19 in __kernfs_new_node (root=<optimized out>, name=0x0 <irq_stack_union>, mode=33060, flags=514) at fs/kernfs/dir.c:530
#23 0xffffffff81189e22 in kernfs_new_node (parent=0xffff88000e651000, name=<optimized out>, mode=33060, flags=<optimized out>) at fs/kernfs/dir.c:558
#24 0xffffffff8118b3a3 in __kernfs_create_file (parent=<optimized out>, name=<optimized out>, mode=<optimized out>, size=4096, 
    ops=0xffffffff81424a80 <sysfs_file_kfops_rw>, priv=<optimized out>, ns=0x0 <irq_stack_union>, name_is_static=true, key=0xffffffff81bc3a20 <__key.17290>)
    at fs/kernfs/file.c:920
#25 0xffffffff8118bb6e in sysfs_add_file_mode_ns (parent=0xffff88000e651000, attr=0xffff88000e621358, is_bin=<optimized out>, mode=<optimized out>, 
    ns=<optimized out>) at fs/sysfs/file.c:256
#26 0xffffffff8118c4c0 in create_files (update=<optimized out>, grp=<optimized out>, kobj=<optimized out>, parent=<optimized out>) at fs/sysfs/group.c:58
#27 internal_create_group (kobj=0xffff88000e67a1a8, update=<optimized out>, grp=0xffff88000e621298) at fs/sysfs/group.c:116
#28 0xffffffff8118c562 in sysfs_create_group (kobj=<optimized out>, grp=<optimized out>) at fs/sysfs/group.c:138
#29 0xffffffff81aa09e9 in kernel_add_sysfs_param (name_skip=<optimized out>, kparam=<optimized out>, name=<optimized out>) at kernel/params.c:783
#30 param_sysfs_builtin () at kernel/params.c:820
#31 param_sysfs_init () at kernel/params.c:940
#32 0xffffffff810003f4 in do_one_initcall (fn=0xffffffff81aa0886 <param_sysfs_init>) at init/main.c:791
#33 0xffffffff81a8d08a in do_initcall_level (level=<optimized out>) at init/main.c:857
#34 do_initcalls () at init/main.c:865
#35 do_basic_setup () at init/main.c:884
#36 kernel_init_freeable () at init/main.c:1005
#37 0xffffffff813e084d in kernel_init (unused=<optimized out>) at init/main.c:935
#38 <signal handler called>
#39 0x0000000000000000 in irq_stack_union ()
#40 0x0000000000000000 in ?? ()



		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-22 12:36                                                     ` Amit Shah
@ 2014-08-22 12:56                                                       ` Amit Shah
  2014-08-22 14:48                                                         ` Paul E. McKenney
  0 siblings, 1 reply; 42+ messages in thread
From: Amit Shah @ 2014-08-22 12:56 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Fri) 22 Aug 2014 [18:06:51], Amit Shah wrote:
> On (Fri) 22 Aug 2014 [17:54:53], Amit Shah wrote:
> > On (Mon) 18 Aug 2014 [21:01:49], Paul E. McKenney wrote:
> > 
> > > The odds are low over the next few days.  I am adding nastier rcutorture
> > > testing, however.  It would still be very good to get debug information
> > > from your setup.  One approach would be to convert the trace function
> > > calls into printk(), if that would help.
> > 
> > I added a few printks on the lines of the traces in cases where
> > rcu_nocb_poll was checked -- since that reproduces the hang.  Are the
> > following traces sufficient, or should I keep adding more printks?
> > 
> > In the case of rcu-trace-nopoll.txt, the messages stop after a while
> > (when the guest locks up hard).  That's when I kill the qemu process.
> 
> And this is bt from gdb when the endless 
> 
>   RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> 
> messages are being spewed.
> 
> I can't time it, but hope it gives some indication along with the printks.

... and after the system 'locks up', this is the state it's in:

^C
Program received signal SIGINT, Interrupt.
native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
50		 }
(gdb) bt
#0  native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
#1  0xffffffff8100b9c1 in arch_safe_halt () at ./arch/x86/include/asm/paravirt.h:111
#2  default_idle () at arch/x86/kernel/process.c:311
#3  0xffffffff8100c107 in arch_cpu_idle () at arch/x86/kernel/process.c:302
#4  0xffffffff8106a25a in cpuidle_idle_call () at kernel/sched/idle.c:120
#5  cpu_idle_loop () at kernel/sched/idle.c:220
#6  cpu_startup_entry (state=<optimized out>) at kernel/sched/idle.c:268
#7  0xffffffff813e068b in rest_init () at init/main.c:418
#8  0xffffffff81a8cf5a in start_kernel () at init/main.c:680
#9  0xffffffff81a8c4ba in x86_64_start_reservations (real_mode_data=<optimized out>) at arch/x86/kernel/head64.c:193
#10 0xffffffff81a8c607 in x86_64_start_kernel (real_mode_data=0x13f90 <cpu_lock_stats+29184> <error: Cannot access memory at address 0x13f90>)
    at arch/x86/kernel/head64.c:182
#11 0x0000000000000000 in ?? ()


Wondering why it's doing this.  Am stepping through
cpu_startup_entry() to see if I get any clues.


		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-22 12:24                                                   ` Amit Shah
  2014-08-22 12:36                                                     ` Amit Shah
@ 2014-08-22 14:43                                                     ` Paul E. McKenney
  1 sibling, 0 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-22 14:43 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, niv, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Fri, Aug 22, 2014 at 05:54:53PM +0530, Amit Shah wrote:
> On (Mon) 18 Aug 2014 [21:01:49], Paul E. McKenney wrote:
> 
> > The odds are low over the next few days.  I am adding nastier rcutorture
> > testing, however.  It would still be very good to get debug information
> > from your setup.  One approach would be to convert the trace function
> > calls into printk(), if that would help.
> 
> I added a few printks on the lines of the traces in cases where
> rcu_nocb_poll was checked -- since that reproduces the hang.  Are the
> following traces sufficient, or should I keep adding more printks?
> 
> In the case of rcu-trace-nopoll.txt, the messages stop after a while
> (when the guest locks up hard).  That's when I kill the qemu process.

Thank you very much for collecting this data!  I will dig through it and
see what I can come up with.

							Thanx, Paul

> 
> 		Amit

> $ ~/build/qemu/x86_64-softmmu/qemu-system-x86_64 -m 256 -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage -vnc :1     -serial stdio -net none  -append 'root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake'
> Initializing cgroup subsys cpu
> Linux version 3.17.0-rc1+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #96 SMP PREEMPT Fri Aug 22 17:46:45 IST 2014
> Command line: root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake
> e820: BIOS-provided physical RAM map:
> BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
> BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
> BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
> BIOS-e820: [mem 0x0000000000100000-0x000000000ffdffff] usable
> BIOS-e820: [mem 0x000000000ffe0000-0x000000000fffffff] reserved
> BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
> BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
> NX (Execute Disable) protection: active
> SMBIOS 2.8 present.
> Hypervisor detected: KVM
> AGP: No AGP bridge found
> e820: last_pfn = 0xffe0 max_arch_pfn = 0x400000000
> PAT not supported by CPU.
> init_memory_mapping: [mem 0x00000000-0x000fffff]
> init_memory_mapping: [mem 0x0fc00000-0x0fdfffff]
> init_memory_mapping: [mem 0x0c000000-0x0fbfffff]
> init_memory_mapping: [mem 0x00100000-0x0bffffff]
> init_memory_mapping: [mem 0x0fe00000-0x0ffdffff]
> ACPI: Early table checksum verification disabled
> ACPI: RSDP 0x00000000000F0CB0 000014 (v00 BOCHS )
> ACPI: RSDT 0x000000000FFE1854 000034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
> ACPI: FACP 0x000000000FFE0B37 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
> ACPI: DSDT 0x000000000FFE0040 000AF7 (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
> ACPI: FACS 0x000000000FFE0000 000040
> ACPI: SSDT 0x000000000FFE0BAB 000BF9 (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
> ACPI: APIC 0x000000000FFE17A4 000078 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
> ACPI: HPET 0x000000000FFE181C 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
> kvm-clock: Using msrs 4b564d01 and 4b564d00
> kvm-clock: cpu 0, msr 0:ffdf001, primary cpu clock
> Zone ranges:
>   DMA      [mem 0x00001000-0x00ffffff]
>   DMA32    [mem 0x01000000-0xffffffff]
>   Normal   empty
> Movable zone start for each node
> Early memory node ranges
>   node   0: [mem 0x00001000-0x0009efff]
>   node   0: [mem 0x00100000-0x0ffdffff]
> ACPI: PM-Timer IO Port: 0x608
> ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
> ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
> ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
> IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
> ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
> Using ACPI (MADT) for SMP configuration information
> ACPI: HPET id: 0x8086a201 base: 0xfed00000
> smpboot: Allowing 1 CPUs, 0 hotplug CPUs
> PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
> PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
> PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
> e820: [mem 0x10000000-0xfeffbfff] available for PCI devices
> Booting paravirtualized kernel on KVM
> setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:1 nr_node_ids:1
> PERCPU: Embedded 475 pages/cpu @ffff88000fa00000 s1916544 r8192 d20864 u2097152
> KVM setup async PF for cpu 0
> kvm-stealtime: cpu 0, msr fa0cbc0
> Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 64361
> Kernel command line: root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake
> PID hash table entries: 1024 (order: 1, 8192 bytes)
> Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
> Inode-cache hash table entries: 16384 (order: 5, 131072 bytes)
> AGP: Checking aperture...
> AGP: No AGP bridge found
> Memory: 228588K/261624K available (4039K kernel code, 728K rwdata, 2188K rodata, 2872K init, 14176K bss, 33036K reserved)
> SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
> Preemptible hierarchical RCU implementation.
> 	RCU debugfs-based tracing is enabled.
> 	RCU lockdep checking is enabled.
> 	Additional per-CPU info printed with stalls.
> 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
> 	Offload RCU callbacks from all CPUs
> 	Offload RCU callbacks from CPUs: 0.
> RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
> NO_HZ: Full dynticks CPUs: 1-3.
> NR_IRQS:4352 nr_irqs:256 0
> Console: colour VGA+ 80x25
> console [tty0] enabled
> console [ttyS0] enabled
> Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
> ... MAX_LOCKDEP_SUBCLASSES:  8
> ... MAX_LOCK_DEPTH:          48
> ... MAX_LOCKDEP_KEYS:        8191
> ... CLASSHASH_SIZE:          4096
> ... MAX_LOCKDEP_ENTRIES:     32768
> ... MAX_LOCKDEP_CHAINS:      65536
> ... CHAINHASH_SIZE:          32768
>  memory used by lock dependency info: 8671 kB
>  per task-struct memory footprint: 2688 bytes
> tsc: Detected 2790.936 MHz processor
> Calibrating delay loop (skipped) preset value.. 5581.87 BogoMIPS (lpj=11163744)
> pid_max: default: 32768 minimum: 301
> ACPI: Core revision 20140724
> ACPI: All ACPI Tables successfully acquired
> Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
> Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes)
> Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
> debug: unmapping init [mem 0xffffffff81b86000-0xffffffff81b88fff]
> ftrace: allocating 17909 entries in 70 pages
> ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> smpboot: CPU0: Intel QEMU Virtual CPU version 2.1.50 (fam: 06, model: 06, stepping: 03)
> Performance Events: Broken PMU hardware detected, using software events only.
> Failed to access perfctr msr (MSR c1 is 0)
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> x86: Booted up 1 node, 1 CPUs
> smpboot: Total of 1 processors activated (5581.87 BogoMIPS)
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> prandom: seed boundary self test passed
> prandom: 100 self tests passed
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> NET: Registered protocol family 16
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> cpuidle: using governor ladder
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> cpuidle: using governor menu
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> ACPI: bus type PCI registered
> acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> PCI: Using configuration type 1 for base access
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> qemu: terminating on signal 2
> 

> $ ~/build/qemu/x86_64-softmmu/qemu-system-x86_64 -m 256 -enable-kvm  -kernel ~/src/linux/arch/x86/boot/bzImage -vnc :1     -serial stdio -net none  -append 'root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake rcu_nocb_poll'
> Initializing cgroup subsys cpu
> Linux version 3.17.0-rc1+ (amit@grmbl.mre) (gcc version 4.8.3 20140624 (Red Hat 4.8.3-1) (GCC) ) #96 SMP PREEMPT Fri Aug 22 17:46:45 IST 2014
> Command line: root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake rcu_nocb_poll
> e820: BIOS-provided physical RAM map:
> BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
> BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
> BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
> BIOS-e820: [mem 0x0000000000100000-0x000000000ffdffff] usable
> BIOS-e820: [mem 0x000000000ffe0000-0x000000000fffffff] reserved
> BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
> BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
> NX (Execute Disable) protection: active
> SMBIOS 2.8 present.
> Hypervisor detected: KVM
> AGP: No AGP bridge found
> e820: last_pfn = 0xffe0 max_arch_pfn = 0x400000000
> PAT not supported by CPU.
> init_memory_mapping: [mem 0x00000000-0x000fffff]
> init_memory_mapping: [mem 0x0fc00000-0x0fdfffff]
> init_memory_mapping: [mem 0x0c000000-0x0fbfffff]
> init_memory_mapping: [mem 0x00100000-0x0bffffff]
> init_memory_mapping: [mem 0x0fe00000-0x0ffdffff]
> ACPI: Early table checksum verification disabled
> ACPI: RSDP 0x00000000000F0CB0 000014 (v00 BOCHS )
> ACPI: RSDT 0x000000000FFE1854 000034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
> ACPI: FACP 0x000000000FFE0B37 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
> ACPI: DSDT 0x000000000FFE0040 000AF7 (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
> ACPI: FACS 0x000000000FFE0000 000040
> ACPI: SSDT 0x000000000FFE0BAB 000BF9 (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
> ACPI: APIC 0x000000000FFE17A4 000078 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
> ACPI: HPET 0x000000000FFE181C 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
> kvm-clock: Using msrs 4b564d01 and 4b564d00
> kvm-clock: cpu 0, msr 0:ffdf001, primary cpu clock
> Zone ranges:
>   DMA      [mem 0x00001000-0x00ffffff]
>   DMA32    [mem 0x01000000-0xffffffff]
>   Normal   empty
> Movable zone start for each node
> Early memory node ranges
>   node   0: [mem 0x00001000-0x0009efff]
>   node   0: [mem 0x00100000-0x0ffdffff]
> ACPI: PM-Timer IO Port: 0x608
> ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
> ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
> ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
> IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
> ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
> ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
> Using ACPI (MADT) for SMP configuration information
> ACPI: HPET id: 0x8086a201 base: 0xfed00000
> smpboot: Allowing 1 CPUs, 0 hotplug CPUs
> PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
> PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
> PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
> e820: [mem 0x10000000-0xfeffbfff] available for PCI devices
> Booting paravirtualized kernel on KVM
> setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:1 nr_node_ids:1
> PERCPU: Embedded 475 pages/cpu @ffff88000fa00000 s1916544 r8192 d20864 u2097152
> KVM setup async PF for cpu 0
> kvm-stealtime: cpu 0, msr fa0cbc0
> Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 64361
> Kernel command line: root=/dev/sda2 console=ttyS0 console=tty0 trace_event=rcu:rcu_nocb_wake rcu_nocb_poll
> PID hash table entries: 1024 (order: 1, 8192 bytes)
> Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
> Inode-cache hash table entries: 16384 (order: 5, 131072 bytes)
> AGP: Checking aperture...
> AGP: No AGP bridge found
> Memory: 228588K/261624K available (4039K kernel code, 728K rwdata, 2188K rodata, 2872K init, 14176K bss, 33036K reserved)
> SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
> Preemptible hierarchical RCU implementation.
> 	RCU debugfs-based tracing is enabled.
> 	RCU lockdep checking is enabled.
> 	Additional per-CPU info printed with stalls.
> 	RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=1.
> 	Offload RCU callbacks from all CPUs
> 	Offload RCU callbacks from CPUs: 0.
> 	Poll for callbacks from no-CBs CPUs.
> RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
> NO_HZ: Full dynticks CPUs: 1-3.
> NR_IRQS:4352 nr_irqs:256 0
> Console: colour VGA+ 80x25
> console [tty0] enabled
> console [ttyS0] enabled
> Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
> ... MAX_LOCKDEP_SUBCLASSES:  8
> ... MAX_LOCK_DEPTH:          48
> ... MAX_LOCKDEP_KEYS:        8191
> ... CLASSHASH_SIZE:          4096
> ... MAX_LOCKDEP_ENTRIES:     32768
> ... MAX_LOCKDEP_CHAINS:      65536
> ... CHAINHASH_SIZE:          32768
>  memory used by lock dependency info: 8671 kB
>  per task-struct memory footprint: 2688 bytes
> tsc: Detected 2790.936 MHz processor
> Calibrating delay loop (skipped) preset value.. 5581.87 BogoMIPS (lpj=11163744)
> pid_max: default: 32768 minimum: 301
> ACPI: Core revision 20140724
> ACPI: All ACPI Tables successfully acquired
> Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
> Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes)
> Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
> Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
> debug: unmapping init [mem 0xffffffff81b86000-0xffffffff81b88fff]
> ftrace: allocating 17909 entries in 70 pages
> ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
> smpboot: CPU0: Intel QEMU Virtual CPU version 2.1.50 (fam: 06, model: 06, stepping: 03)
> Performance Events: Broken PMU hardware detected, using software events only.
> Failed to access perfctr msr (MSR c1 is 0)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_sched 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_bh 0 Poll
> x86: Booted up 1 node, 1 CPUs
> smpboot: Total of 1 processors activated (5581.87 BogoMIPS)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> prandom: seed boundary self test passed
> prandom: 100 self tests passed
> NET: Registered protocol family 16
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> cpuidle: using governor ladder
> cpuidle: using governor menu
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: bus type PCI registered
> acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> PCI: Using configuration type 1 for base access
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: Added _OSI(Module Device)
> ACPI: Added _OSI(Processor Device)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: Added _OSI(3.0 _SCP Extensions)
> ACPI: Added _OSI(Processor Aggregator Device)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: Interpreter enabled
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: (supports S0 S3 S4 S5)
> ACPI: Using IOAPIC for interrupt routing
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpi PNP0A03:00: _OSC: OS supports [Segments MSI]
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [3] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [4] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [5] registered
> acpiphp: Slot [6] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [7] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [8] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [9] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [10] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [11] registered
> acpiphp: Slot [12] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [13] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [14] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [15] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [16] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [17] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [18] registered
> acpiphp: Slot [19] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [20] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [21] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [22] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [23] registered
> acpiphp: Slot [24] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [25] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [26] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [27] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [28] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [29] registered
> acpiphp: Slot [30] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> acpiphp: Slot [31] registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> PCI host bridge to bus 0000:00
> pci_bus 0000:00: root bus resource [bus 00-ff]
> pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pci_bus 0000:00: root bus resource [io  0x0d00-0xadff]
> pci_bus 0000:00: root bus resource [io  0xae0f-0xaeff]
> pci_bus 0000:00: root bus resource [io  0xaf20-0xafdf]
> pci_bus 0000:00: root bus resource [io  0xafe4-0xffff]
> pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
> pci_bus 0000:00: root bus resource [mem 0x10000000-0xfebfffff]
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
> pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
> pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
> pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: PCI Interrupt Link [LNKB] (IRQs
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
>  5 *10 11)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: PCI Interrupt Link [LNKS] (IRQs *9
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> )
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ACPI: Enabled 16 GPEs in block 00 to 0F
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
> vgaarb: loaded
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> vgaarb: bridge control possible 0000:00:02.0
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> SCSI subsystem initialized
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pps_core: LinuxPPS API ver. 1 registered
> pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> PTP clock support registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> PCI: Using ACPI for IRQ routing
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> HPET: 3 timers in total, 0 timers will be used for per-cpu timer
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> Switched to clocksource kvm-clock
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pnp: PnP ACPI init
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pnp: PnP ACPI: found 6 devices
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> NET: Registered protocol family 2
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> TCP established hash table entries: 2048 (order: 2, 16384 bytes)
> TCP bind hash table entries: 2048 (order: 5, 163840 bytes)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> TCP: Hash tables configured (established 2048 bind 2048)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> TCP: reno registered
> UDP hash table entries: 256 (order: 3, 49152 bytes)
> UDP-Lite hash table entries: 256 (order: 3, 49152 bytes)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> NET: Registered protocol family 1
> pci 0000:00:00.0: Limiting direct PCI/PCI transfers
> pci 0000:00:01.0: PIIX3: Enabling Passive Release
> pci 0000:00:01.0: Activating ISA DMA hang workarounds
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> rcu-torture:--- Start of test: nreaders=1 nfakewriters=4 stat_interval=60 verbose=1 test_no_idle_hz=1 shuffle_interval=3 stutter=5 irqreader=1 fqs_duration=0 fqs_holdoff=0 fqs_stutter=3 test_boost=1/0 test_boost_interval=7 test_boost_duration=4 shutdown_secs=0 stall_cpu=0 stall_cpu_holdoff=10 n_barrier_cbs=0 onoff_interval=0 onoff_holdoff=0
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> rcu-torture: Creating rcu_torture_writer task
> rcu-torture: Creating rcu_torture_fakewriter task
> rcu-torture: rcu_torture_writer task started
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> rcu-torture: Creating rcu_torture_fakewriter task
> rcu-torture: rcu_torture_fakewriter task started
> rcu-torture: Creating rcu_torture_fakewriter task
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> rcu-torture: rcu_torture_fakewriter task started
> rcu-torture: Creating rcu_torture_fakewriter task
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> rcu-torture: rcu_torture_fakewriter task started
> rcu-torture: Creating rcu_torture_reader task
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> rcu-torture: rcu_torture_fakewriter task started
> rcu-torture: Creating rcu_torture_stats task
> rcu-torture: rcu_torture_reader task started
> rcu-torture: Creating torture_shuffle task
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> rcu-torture: rcu_torture_stats task started
> rcu-torture: Creating torture_stutter task
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> rcu-torture: torture_shuffle task started
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> rcu-torture: torture_stutter task started
> futex hash table entries: 256 (order: 3, 32768 bytes)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> audit: initializing netlink subsys (disabled)
> audit: type=2000 audit(1408709846.260:1): initialized
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> HugeTLB registered 2 MB page size, pre-allocated 0 pages
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> msgmni has been set to 446
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> io scheduler noop registered (default)
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pci_hotplug: PCI Hot Plug PCI Core version: 0.5
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
> ACPI: Power Button [PWRF]
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> Non-volatile memory driver v1.3
> Linux agpgart interface v0.103
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> brd: module loaded
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> loop: module loaded
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> scsi host0: ata_piix
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> scsi host1: ata_piix
> ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc000 irq 14
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc008 irq 15
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> libphy: Fixed MDIO Bus: probed
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
> e1000: Copyright (c) 1999-2006 Intel Corporation.
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> serio: i8042 KBD port at 0x60,0x64 irq 1
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> serio: i8042 AUX port at 0x60,0x64 irq 12
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> mousedev: PS/2 mouse device common for all mice
> input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pps pps0: new PPS source ktimer
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> pps pps0: ktimer PPS source registered
> pps_ldisc: PPS line discipline registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> TCP: cubic registered
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> NET: Registered protocol family 17
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> kmemleak: Kernel memory leak detector initialized
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> kmemleak: Automatic memory scanning thread started
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> ata2.00: ATAPI: QEMU DVD-ROM, 2.1.50, max UDMA/100
> ata2.00: configured for MWDMA2
> scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.1. PQ: 0 ANSI: 5
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> cdrom: Uniform CD-ROM driver Revision: 3.20
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> VFS: Cannot open root device "sda2" or unknown-block(0,0): error -6
> Please append a correct "root=" boot option; here are the available partitions:
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> 0b00         1048575 sr0  driver: sr
> RCUDEBUG nocb_leader_wait 2275 rcu_preempt 0 Poll
> Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
> CPU: 0 PID: 1 Comm: swapper/0 Not tainted 3.17.0-rc1+ #96
> Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.7.5-0-ge51488c-20140602_164612-nilsson.home.kraxel.org 04/01/2014
>  0000000000000000 00000000b5808356 ffff88000e953df0 ffffffff813e7be9
>  ffffffff8157cb44 ffff88000e953e70 ffffffff813e3e62 3030623000000010
>  ffff88000e953e80 ffff88000e953e20 00000000b5808356 0000000000000008
> Call Trace:
>  [<ffffffff813e7be9>] dump_stack+0x4e/0x7a
>  [<ffffffff813e3e62>] panic+0xec/0x20f
>  [<ffffffff81a8d46f>] mount_block_root+0x296/0x2a5
>  [<ffffffff81a8d61b>] mount_root+0x53/0x56
>  [<ffffffff81a8d785>] prepare_namespace+0x167/0x193
>  [<ffffffff81a8d102>] kernel_init_freeable+0x187/0x194
>  [<ffffffff81a8c7f0>] ? do_early_param+0x88/0x88
>  [<ffffffff813e083f>] ? rest_init+0x133/0x133
>  [<ffffffff813e084d>] kernel_init+0xe/0xda
>  [<ffffffff813eeebc>] ret_from_fork+0x7c/0xb0
>  [<ffffffff813e083f>] ? rest_init+0x133/0x133
> Kernel Offset: 0x0 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffff9fffffff)
> ---[ end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
> qemu: terminating on signal 2


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-22 12:56                                                       ` Amit Shah
@ 2014-08-22 14:48                                                         ` Paul E. McKenney
  2014-08-22 17:14                                                           ` Amit Shah
  0 siblings, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-22 14:48 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Fri, Aug 22, 2014 at 06:26:49PM +0530, Amit Shah wrote:
> On (Fri) 22 Aug 2014 [18:06:51], Amit Shah wrote:
> > On (Fri) 22 Aug 2014 [17:54:53], Amit Shah wrote:
> > > On (Mon) 18 Aug 2014 [21:01:49], Paul E. McKenney wrote:
> > > 
> > > > The odds are low over the next few days.  I am adding nastier rcutorture
> > > > testing, however.  It would still be very good to get debug information
> > > > from your setup.  One approach would be to convert the trace function
> > > > calls into printk(), if that would help.
> > > 
> > > I added a few printks on the lines of the traces in cases where
> > > rcu_nocb_poll was checked -- since that reproduces the hang.  Are the
> > > following traces sufficient, or should I keep adding more printks?
> > > 
> > > In the case of rcu-trace-nopoll.txt, the messages stop after a while
> > > (when the guest locks up hard).  That's when I kill the qemu process.
> > 
> > And this is bt from gdb when the endless 
> > 
> >   RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> > 
> > messages are being spewed.
> > 
> > I can't time it, but hope it gives some indication along with the printks.
> 
> ... and after the system 'locks up', this is the state it's in:
> 
> ^C
> Program received signal SIGINT, Interrupt.
> native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
> 50		 }
> (gdb) bt
> #0  native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
> #1  0xffffffff8100b9c1 in arch_safe_halt () at ./arch/x86/include/asm/paravirt.h:111
> #2  default_idle () at arch/x86/kernel/process.c:311
> #3  0xffffffff8100c107 in arch_cpu_idle () at arch/x86/kernel/process.c:302
> #4  0xffffffff8106a25a in cpuidle_idle_call () at kernel/sched/idle.c:120
> #5  cpu_idle_loop () at kernel/sched/idle.c:220
> #6  cpu_startup_entry (state=<optimized out>) at kernel/sched/idle.c:268
> #7  0xffffffff813e068b in rest_init () at init/main.c:418
> #8  0xffffffff81a8cf5a in start_kernel () at init/main.c:680
> #9  0xffffffff81a8c4ba in x86_64_start_reservations (real_mode_data=<optimized out>) at arch/x86/kernel/head64.c:193
> #10 0xffffffff81a8c607 in x86_64_start_kernel (real_mode_data=0x13f90 <cpu_lock_stats+29184> <error: Cannot access memory at address 0x13f90>)
>     at arch/x86/kernel/head64.c:182
> #11 0x0000000000000000 in ?? ()
> 
> 
> Wondering why it's doing this.  Am stepping through
> cpu_startup_entry() to see if I get any clues.

This looks to me like normal behavior in the x86 ACPI idle loop.
My guess is that the lockup is caused by indefinite blocking, in
which case we would expect all the CPUs to be in the idle loop.

Of course, this all assumes that your system is using ACPI for idle.
(Is it?)

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-22 14:48                                                         ` Paul E. McKenney
@ 2014-08-22 17:14                                                           ` Amit Shah
  2014-08-22 17:37                                                             ` Amit Shah
  2014-08-22 21:53                                                             ` Paul E. McKenney
  0 siblings, 2 replies; 42+ messages in thread
From: Amit Shah @ 2014-08-22 17:14 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Fri) 22 Aug 2014 [07:48:19], Paul E. McKenney wrote:
> On Fri, Aug 22, 2014 at 06:26:49PM +0530, Amit Shah wrote:
> > On (Fri) 22 Aug 2014 [18:06:51], Amit Shah wrote:
> > > On (Fri) 22 Aug 2014 [17:54:53], Amit Shah wrote:
> > > > On (Mon) 18 Aug 2014 [21:01:49], Paul E. McKenney wrote:
> > > > 
> > > > > The odds are low over the next few days.  I am adding nastier rcutorture
> > > > > testing, however.  It would still be very good to get debug information
> > > > > from your setup.  One approach would be to convert the trace function
> > > > > calls into printk(), if that would help.
> > > > 
> > > > I added a few printks on the lines of the traces in cases where
> > > > rcu_nocb_poll was checked -- since that reproduces the hang.  Are the
> > > > following traces sufficient, or should I keep adding more printks?
> > > > 
> > > > In the case of rcu-trace-nopoll.txt, the messages stop after a while
> > > > (when the guest locks up hard).  That's when I kill the qemu process.
> > > 
> > > And this is bt from gdb when the endless 
> > > 
> > >   RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> > > 
> > > messages are being spewed.
> > > 
> > > I can't time it, but hope it gives some indication along with the printks.
> > 
> > ... and after the system 'locks up', this is the state it's in:
> > 
> > ^C
> > Program received signal SIGINT, Interrupt.
> > native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
> > 50		 }
> > (gdb) bt
> > #0  native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
> > #1  0xffffffff8100b9c1 in arch_safe_halt () at ./arch/x86/include/asm/paravirt.h:111
> > #2  default_idle () at arch/x86/kernel/process.c:311
> > #3  0xffffffff8100c107 in arch_cpu_idle () at arch/x86/kernel/process.c:302
> > #4  0xffffffff8106a25a in cpuidle_idle_call () at kernel/sched/idle.c:120
> > #5  cpu_idle_loop () at kernel/sched/idle.c:220
> > #6  cpu_startup_entry (state=<optimized out>) at kernel/sched/idle.c:268
> > #7  0xffffffff813e068b in rest_init () at init/main.c:418
> > #8  0xffffffff81a8cf5a in start_kernel () at init/main.c:680
> > #9  0xffffffff81a8c4ba in x86_64_start_reservations (real_mode_data=<optimized out>) at arch/x86/kernel/head64.c:193
> > #10 0xffffffff81a8c607 in x86_64_start_kernel (real_mode_data=0x13f90 <cpu_lock_stats+29184> <error: Cannot access memory at address 0x13f90>)
> >     at arch/x86/kernel/head64.c:182
> > #11 0x0000000000000000 in ?? ()
> > 
> > 
> > Wondering why it's doing this.  Am stepping through
> > cpu_startup_entry() to see if I get any clues.
> 
> This looks to me like normal behavior in the x86 ACPI idle loop.
> My guess is that the lockup is caused by indefinite blocking, in
> which case we would expect all the CPUs to be in the idle loop.

Hm, found it:

The stall happens in do_initcalls().

pm_sysrq_init() is the function that causes the hang.  When I #if 0
the line

    register_sysrq_key('o', &sysrq_poweroff_op);

in pm_sysrq_init(), the boot proceeds normally.

Now what this is, and what relation this has to rcu and that patch in
particular is next...


		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-22 17:14                                                           ` Amit Shah
@ 2014-08-22 17:37                                                             ` Amit Shah
  2014-08-22 21:53                                                             ` Paul E. McKenney
  1 sibling, 0 replies; 42+ messages in thread
From: Amit Shah @ 2014-08-22 17:37 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On (Fri) 22 Aug 2014 [22:44:05], Amit Shah wrote:
> Hm, found it:
> 
> The stall happens in do_initcalls().
> 
> pm_sysrq_init() is the function that causes the hang.  When I #if 0
> the line
> 
>     register_sysrq_key('o', &sysrq_poweroff_op);
> 
> in pm_sysrq_init(), the boot proceeds normally.
> 
> Now what this is, and what relation this has to rcu and that patch in
> particular is next...

... and enabling the following debug options makes the bug disappear:

CONFIG_DEBUG_OBJECTS=y
CONFIG_DEBUG_OBJECTS_SELFTEST=y
CONFIG_DEBUG_OBJECTS_FREE=y
CONFIG_DEBUG_OBJECTS_TIMERS=y
CONFIG_DEBUG_OBJECTS_WORK=y
CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1

Anyway, so it looks like a race somewhere in the schedule_work_on()
chain.  Not sure how to capture the debug messages there w/o disabling
these debug options.  I'll keep trying, though.


		Amit

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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-22 17:14                                                           ` Amit Shah
  2014-08-22 17:37                                                             ` Amit Shah
@ 2014-08-22 21:53                                                             ` Paul E. McKenney
  2014-08-22 21:57                                                               ` Paul E. McKenney
  1 sibling, 1 reply; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-22 21:53 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Fri, Aug 22, 2014 at 10:44:05PM +0530, Amit Shah wrote:
> On (Fri) 22 Aug 2014 [07:48:19], Paul E. McKenney wrote:
> > On Fri, Aug 22, 2014 at 06:26:49PM +0530, Amit Shah wrote:
> > > On (Fri) 22 Aug 2014 [18:06:51], Amit Shah wrote:
> > > > On (Fri) 22 Aug 2014 [17:54:53], Amit Shah wrote:
> > > > > On (Mon) 18 Aug 2014 [21:01:49], Paul E. McKenney wrote:
> > > > > 
> > > > > > The odds are low over the next few days.  I am adding nastier rcutorture
> > > > > > testing, however.  It would still be very good to get debug information
> > > > > > from your setup.  One approach would be to convert the trace function
> > > > > > calls into printk(), if that would help.
> > > > > 
> > > > > I added a few printks on the lines of the traces in cases where
> > > > > rcu_nocb_poll was checked -- since that reproduces the hang.  Are the
> > > > > following traces sufficient, or should I keep adding more printks?
> > > > > 
> > > > > In the case of rcu-trace-nopoll.txt, the messages stop after a while
> > > > > (when the guest locks up hard).  That's when I kill the qemu process.
> > > > 
> > > > And this is bt from gdb when the endless 
> > > > 
> > > >   RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> > > > 
> > > > messages are being spewed.
> > > > 
> > > > I can't time it, but hope it gives some indication along with the printks.
> > > 
> > > ... and after the system 'locks up', this is the state it's in:
> > > 
> > > ^C
> > > Program received signal SIGINT, Interrupt.
> > > native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
> > > 50		 }
> > > (gdb) bt
> > > #0  native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
> > > #1  0xffffffff8100b9c1 in arch_safe_halt () at ./arch/x86/include/asm/paravirt.h:111
> > > #2  default_idle () at arch/x86/kernel/process.c:311
> > > #3  0xffffffff8100c107 in arch_cpu_idle () at arch/x86/kernel/process.c:302
> > > #4  0xffffffff8106a25a in cpuidle_idle_call () at kernel/sched/idle.c:120
> > > #5  cpu_idle_loop () at kernel/sched/idle.c:220
> > > #6  cpu_startup_entry (state=<optimized out>) at kernel/sched/idle.c:268
> > > #7  0xffffffff813e068b in rest_init () at init/main.c:418
> > > #8  0xffffffff81a8cf5a in start_kernel () at init/main.c:680
> > > #9  0xffffffff81a8c4ba in x86_64_start_reservations (real_mode_data=<optimized out>) at arch/x86/kernel/head64.c:193
> > > #10 0xffffffff81a8c607 in x86_64_start_kernel (real_mode_data=0x13f90 <cpu_lock_stats+29184> <error: Cannot access memory at address 0x13f90>)
> > >     at arch/x86/kernel/head64.c:182
> > > #11 0x0000000000000000 in ?? ()
> > > 
> > > 
> > > Wondering why it's doing this.  Am stepping through
> > > cpu_startup_entry() to see if I get any clues.
> > 
> > This looks to me like normal behavior in the x86 ACPI idle loop.
> > My guess is that the lockup is caused by indefinite blocking, in
> > which case we would expect all the CPUs to be in the idle loop.
> 
> Hm, found it:
> 
> The stall happens in do_initcalls().
> 
> pm_sysrq_init() is the function that causes the hang.  When I #if 0
> the line
> 
>     register_sysrq_key('o', &sysrq_poweroff_op);
> 
> in pm_sysrq_init(), the boot proceeds normally.

Yow!!!

> Now what this is, and what relation this has to rcu and that patch in
> particular is next...

Hmmm...  Please try replacing the synchronize_rcu() in
__sysrq_swap_key_ops() with (say) schedule_timeout_interruptible(HZ / 10).
I bet that gets rid of the hang.  (And also introduces a low-probability
bug, but should be OK for testing.)

The other thing to try is to revert your patch that turned my event
traces into printk()s, then put an ftrace_dump(DUMP_ALL); just after
the synchronize_rcu() -- that might make it so that the ftrace data
actually gets dumped out.

							Thanx, Paul


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

* Re: [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups
  2014-08-22 21:53                                                             ` Paul E. McKenney
@ 2014-08-22 21:57                                                               ` Paul E. McKenney
  0 siblings, 0 replies; 42+ messages in thread
From: Paul E. McKenney @ 2014-08-22 21:57 UTC (permalink / raw)
  To: Amit Shah
  Cc: linux-kernel, riel, mingo, laijs, dipankar, akpm,
	mathieu.desnoyers, josh, tglx, peterz, rostedt, dhowells,
	edumazet, dvhart, fweisbec, oleg, sbw

On Fri, Aug 22, 2014 at 02:53:44PM -0700, Paul E. McKenney wrote:
> On Fri, Aug 22, 2014 at 10:44:05PM +0530, Amit Shah wrote:
> > On (Fri) 22 Aug 2014 [07:48:19], Paul E. McKenney wrote:
> > > On Fri, Aug 22, 2014 at 06:26:49PM +0530, Amit Shah wrote:
> > > > On (Fri) 22 Aug 2014 [18:06:51], Amit Shah wrote:
> > > > > On (Fri) 22 Aug 2014 [17:54:53], Amit Shah wrote:
> > > > > > On (Mon) 18 Aug 2014 [21:01:49], Paul E. McKenney wrote:
> > > > > > 
> > > > > > > The odds are low over the next few days.  I am adding nastier rcutorture
> > > > > > > testing, however.  It would still be very good to get debug information
> > > > > > > from your setup.  One approach would be to convert the trace function
> > > > > > > calls into printk(), if that would help.
> > > > > > 
> > > > > > I added a few printks on the lines of the traces in cases where
> > > > > > rcu_nocb_poll was checked -- since that reproduces the hang.  Are the
> > > > > > following traces sufficient, or should I keep adding more printks?
> > > > > > 
> > > > > > In the case of rcu-trace-nopoll.txt, the messages stop after a while
> > > > > > (when the guest locks up hard).  That's when I kill the qemu process.
> > > > > 
> > > > > And this is bt from gdb when the endless 
> > > > > 
> > > > >   RCUDEBUG __call_rcu_nocb_enqueue 2146 rcu_preempt 0 WakeNot
> > > > > 
> > > > > messages are being spewed.
> > > > > 
> > > > > I can't time it, but hope it gives some indication along with the printks.
> > > > 
> > > > ... and after the system 'locks up', this is the state it's in:
> > > > 
> > > > ^C
> > > > Program received signal SIGINT, Interrupt.
> > > > native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
> > > > 50		 }
> > > > (gdb) bt
> > > > #0  native_safe_halt () at ./arch/x86/include/asm/irqflags.h:50
> > > > #1  0xffffffff8100b9c1 in arch_safe_halt () at ./arch/x86/include/asm/paravirt.h:111
> > > > #2  default_idle () at arch/x86/kernel/process.c:311
> > > > #3  0xffffffff8100c107 in arch_cpu_idle () at arch/x86/kernel/process.c:302
> > > > #4  0xffffffff8106a25a in cpuidle_idle_call () at kernel/sched/idle.c:120
> > > > #5  cpu_idle_loop () at kernel/sched/idle.c:220
> > > > #6  cpu_startup_entry (state=<optimized out>) at kernel/sched/idle.c:268
> > > > #7  0xffffffff813e068b in rest_init () at init/main.c:418
> > > > #8  0xffffffff81a8cf5a in start_kernel () at init/main.c:680
> > > > #9  0xffffffff81a8c4ba in x86_64_start_reservations (real_mode_data=<optimized out>) at arch/x86/kernel/head64.c:193
> > > > #10 0xffffffff81a8c607 in x86_64_start_kernel (real_mode_data=0x13f90 <cpu_lock_stats+29184> <error: Cannot access memory at address 0x13f90>)
> > > >     at arch/x86/kernel/head64.c:182
> > > > #11 0x0000000000000000 in ?? ()
> > > > 
> > > > 
> > > > Wondering why it's doing this.  Am stepping through
> > > > cpu_startup_entry() to see if I get any clues.
> > > 
> > > This looks to me like normal behavior in the x86 ACPI idle loop.
> > > My guess is that the lockup is caused by indefinite blocking, in
> > > which case we would expect all the CPUs to be in the idle loop.
> > 
> > Hm, found it:
> > 
> > The stall happens in do_initcalls().
> > 
> > pm_sysrq_init() is the function that causes the hang.  When I #if 0
> > the line
> > 
> >     register_sysrq_key('o', &sysrq_poweroff_op);
> > 
> > in pm_sysrq_init(), the boot proceeds normally.
> 
> Yow!!!
> 
> > Now what this is, and what relation this has to rcu and that patch in
> > particular is next...
> 
> Hmmm...  Please try replacing the synchronize_rcu() in
> __sysrq_swap_key_ops() with (say) schedule_timeout_interruptible(HZ / 10).
> I bet that gets rid of the hang.  (And also introduces a low-probability
> bug, but should be OK for testing.)
> 
> The other thing to try is to revert your patch that turned my event
> traces into printk()s, then put an ftrace_dump(DUMP_ALL); just after
> the synchronize_rcu() -- that might make it so that the ftrace data
> actually gets dumped out.

And one other thing to try...

Put a printk at the beginning of rcu_spawn_gp_kthread(), which is in
kernel/rcu/tree.c.  If that printk does not appear before the call
to pm_sysrq_init(), that would be an important clue.

							Thanx, Paul


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

end of thread, other threads:[~2014-08-22 21:57 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-07-07 22:48 [PATCH tip/core/rcu 0/2] Callback-offloading changes for 3.17 Paul E. McKenney
2014-07-11 13:35 ` [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups Paul E. McKenney
2014-07-11 13:35   ` [PATCH tip/core/rcu 2/2] rcu: Don't offload callbacks unless specifically requested Paul E. McKenney
2014-07-11 13:47     ` Frederic Weisbecker
2014-07-11 15:28       ` Paul E. McKenney
2014-08-08  8:40   ` [PATCH tip/core/rcu 1/2] rcu: Parallelize and economize NOCB kthread wakeups Amit Shah
2014-08-08 16:25     ` Paul E. McKenney
2014-08-08 17:37       ` Amit Shah
2014-08-08 18:18         ` Paul E. McKenney
2014-08-08 18:34           ` Amit Shah
2014-08-08 21:43             ` Paul E. McKenney
2014-08-08 21:46               ` Paul E. McKenney
2014-08-11  7:13                 ` Amit Shah
2014-08-11 16:28                   ` Paul E. McKenney
2014-08-11 19:41                     ` Amit Shah
2014-08-11 20:11                       ` Paul E. McKenney
2014-08-11 20:18                         ` Amit Shah
2014-08-11 20:34                           ` Paul E. McKenney
2014-08-12  3:45                             ` Paul E. McKenney
2014-08-12  5:33                               ` Amit Shah
2014-08-12 16:06                                 ` Paul E. McKenney
2014-08-12 21:39                                   ` Paul E. McKenney
2014-08-12 21:41                                     ` Paul E. McKenney
2014-08-12 21:44                                       ` Paul E. McKenney
2014-08-13  5:44                                       ` Amit Shah
2014-08-13 13:00                                         ` Paul E. McKenney
2014-08-13 14:18                                           ` Paul E. McKenney
2014-08-15  5:24                                           ` Amit Shah
2014-08-15 15:04                                             ` Paul E. McKenney
2014-08-18 17:53                                               ` Amit Shah
2014-08-19  4:01                                                 ` Paul E. McKenney
2014-08-22 12:24                                                   ` Amit Shah
2014-08-22 12:36                                                     ` Amit Shah
2014-08-22 12:56                                                       ` Amit Shah
2014-08-22 14:48                                                         ` Paul E. McKenney
2014-08-22 17:14                                                           ` Amit Shah
2014-08-22 17:37                                                             ` Amit Shah
2014-08-22 21:53                                                             ` Paul E. McKenney
2014-08-22 21:57                                                               ` Paul E. McKenney
2014-08-22 14:43                                                     ` Paul E. McKenney
2014-08-12  5:27                             ` Amit Shah
2014-08-12 16:08                               ` Paul E. McKenney

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