diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2010-02-24 20:01:56 +0100 | 
|---|---|---|
| committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2010-08-19 17:18:03 -0700 | 
| commit | 4d2deb40b20c2608486598364e63e37b09a9ac2f (patch) | |
| tree | cf61f5492623fa69ddc9a0573b50d52b002c2f85 /include/linux/init_task.h | |
| parent | d2c2486bc8e185548490e8edbc84d185de9eaff1 (diff) | |
| download | olio-linux-3.10-4d2deb40b20c2608486598364e63e37b09a9ac2f.tar.xz olio-linux-3.10-4d2deb40b20c2608486598364e63e37b09a9ac2f.zip  | |
kernel: __rcu annotations
This adds annotations for RCU operations in core kernel components
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Al Viro <viro@ZenIV.linux.org.uk>
Cc: Jens Axboe <jens.axboe@oracle.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'include/linux/init_task.h')
| -rw-r--r-- | include/linux/init_task.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 1f43fa56f60..6460fc65ed6 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h @@ -137,8 +137,8 @@ extern struct cred init_cred;  	.children	= LIST_HEAD_INIT(tsk.children),			\  	.sibling	= LIST_HEAD_INIT(tsk.sibling),			\  	.group_leader	= &tsk,						\ -	.real_cred	= &init_cred,					\ -	.cred		= &init_cred,					\ +	RCU_INIT_POINTER(.real_cred, &init_cred),			\ +	RCU_INIT_POINTER(.cred, &init_cred),				\  	.cred_guard_mutex =						\  		 __MUTEX_INITIALIZER(tsk.cred_guard_mutex),		\  	.comm		= "swapper",					\  |