aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDipankar Sarma <dipankar@in.ibm.com>2004-08-22 22:58:04 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-22 22:58:04 -0700
commita879f6e985b868512fb2aecf183be6caf82b7023 (patch)
tree4198212be1331473d03cf033115604c29f11610a /include
parente86e2311ae3c844a1efe4f6d569dfb548f7f58c7 (diff)
downloadhistory-a879f6e985b868512fb2aecf183be6caf82b7023.tar.gz
[PATCH] rcu: fix spaces in rcupdate.h
Somehow spaces replaced tabs in rcupdate.h and I would like to keep everything clean. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/rcupdate.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h
index 45ca384109e152..8c8157be11f7c7 100644
--- a/include/linux/rcupdate.h
+++ b/include/linux/rcupdate.h
@@ -87,20 +87,20 @@ static inline int rcu_batch_after(long a, long b)
*/
struct rcu_data {
/* 1) quiescent state handling : */
- long quiescbatch; /* Batch # for grace period */
+ long quiescbatch; /* Batch # for grace period */
long qsctr; /* User-mode/idle loop etc. */
- long last_qsctr; /* value of qsctr at beginning */
- /* of rcu grace period */
+ long last_qsctr; /* value of qsctr at beginning */
+ /* of rcu grace period */
int qs_pending; /* core waits for quiesc state */
/* 2) batch handling */
- long batch; /* Batch # for current RCU batch */
- struct rcu_head *nxtlist;
+ long batch; /* Batch # for current RCU batch */
+ struct rcu_head *nxtlist;
struct rcu_head **nxttail;
- struct rcu_head *curlist;
- struct rcu_head **curtail;
- struct rcu_head *donelist;
- struct rcu_head **donetail;
+ struct rcu_head *curlist;
+ struct rcu_head **curtail;
+ struct rcu_head *donelist;
+ struct rcu_head **donetail;
int cpu;
};