Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 142230
b: refs/heads/master
c: 6258c4f
h: refs/heads/master
v: v3
  • Loading branch information
Ingo Molnar committed Apr 3, 2009
1 parent fd853cd commit 36a102a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b1f77b0581b8fd837acb4a973f7d5496cae6efee
refs/heads/master: 6258c4fb59e77d748f7efc2c137ad420372edd07
8 changes: 4 additions & 4 deletions trunk/kernel/rcutree.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ EXPORT_SYMBOL_GPL(rcu_lock_map);
.n_force_qs_ngp = 0, \
}

static struct rcu_state rcu_state = RCU_STATE_INITIALIZER(rcu_state);
static DEFINE_PER_CPU(struct rcu_data, rcu_data);
struct rcu_state rcu_state = RCU_STATE_INITIALIZER(rcu_state);
DEFINE_PER_CPU(struct rcu_data, rcu_data);

static struct rcu_state rcu_bh_state = RCU_STATE_INITIALIZER(rcu_bh_state);
static DEFINE_PER_CPU(struct rcu_data, rcu_bh_data);
struct rcu_state rcu_bh_state = RCU_STATE_INITIALIZER(rcu_bh_state);
DEFINE_PER_CPU(struct rcu_data, rcu_bh_data);

/*
* Increment the quiescent state counter.
Expand Down
10 changes: 10 additions & 0 deletions trunk/kernel/rcutree.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

/*
* RCU implementation internal declarations:
*/
extern struct rcu_state rcu_state;
DECLARE_PER_CPU(struct rcu_data, rcu_data);

extern struct rcu_state rcu_bh_state;
DECLARE_PER_CPU(struct rcu_data, rcu_bh_data);

2 changes: 2 additions & 0 deletions trunk/kernel/rcutree_trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
#include <linux/debugfs.h>
#include <linux/seq_file.h>

#include "rcutree.h"

static void print_one_rcu_data(struct seq_file *m, struct rcu_data *rdp)
{
if (!rdp->beenonline)
Expand Down

0 comments on commit 36a102a

Please sign in to comment.