diff options
| author | Paul E. McKenney <[email protected]> | 2009-08-22 13:56:48 -0700 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2009-08-23 10:32:38 +0200 |
| commit | 5699ed8fcb0c32ca699e2a27ad716eb70b367dbf (patch) | |
| tree | 69f0a831c48edd3a389da165b8afeba5139adfec | |
| parent | bc33f24bdca8b6e97376e3a182ab69e6cdefa989 (diff) | |
rcu: Fix online/offline indication for rcudata.csv trace file
The heading said "Online?", but the column had "Y" for offline
CPUs and "N" for online CPUs. Swap the "Y" and "N" to match
the heading.
Signed-off-by: Paul E. McKenney <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
LKML-Reference: <12509746132841-git-send-email->
Signed-off-by: Ingo Molnar <[email protected]>
| -rw-r--r-- | kernel/rcutree_trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcutree_trace.c b/kernel/rcutree_trace.c index 236c0504fee2..ea4a47470371 100644 --- a/kernel/rcutree_trace.c +++ b/kernel/rcutree_trace.c @@ -103,7 +103,7 @@ static void print_one_rcu_data_csv(struct seq_file *m, struct rcu_data *rdp) return; seq_printf(m, "%d,%s,%ld,%ld,%d,%ld,%d", rdp->cpu, - cpu_is_offline(rdp->cpu) ? "\"Y\"" : "\"N\"", + cpu_is_offline(rdp->cpu) ? "\"N\"" : "\"Y\"", rdp->completed, rdp->gpnum, rdp->passed_quiesc, rdp->passed_quiesc_completed, rdp->qs_pending); |