From b03329b3f3b622d613845f84eba71e20dcb0f677 Mon Sep 17 00:00:00 2001 From: Ying Xue Date: Thu, 16 Aug 2012 12:09:12 +0000 Subject: [PATCH] --- yaml --- r: 327552 b: refs/heads/master c: 61cdd4d80b29cfdee45920238eea2d1fbb51f922 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/net/tipc/core.c | 10 +++++----- trunk/net/tipc/core.h | 10 +++++----- trunk/net/tipc/handler.c | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/[refs] b/[refs] index b30af24aba7b..0e1063e59c69 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: f046e7d9be1cbb3335694c7f9a31d18e1f998ff5 +refs/heads/master: 61cdd4d80b29cfdee45920238eea2d1fbb51f922 diff --git a/trunk/net/tipc/core.c b/trunk/net/tipc/core.c index daae7f74d418..b858f2003523 100644 --- a/trunk/net/tipc/core.c +++ b/trunk/net/tipc/core.c @@ -48,15 +48,15 @@ /* global variables used by multiple sub-systems within TIPC */ -int tipc_random; +int tipc_random __read_mostly; /* configurable TIPC parameters */ -u32 tipc_own_addr; -int tipc_max_ports; +u32 tipc_own_addr __read_mostly; +int tipc_max_ports __read_mostly; int tipc_max_subscriptions; int tipc_max_publications; -int tipc_net_id; -int tipc_remote_management; +int tipc_net_id __read_mostly; +int tipc_remote_management __read_mostly; /** diff --git a/trunk/net/tipc/core.h b/trunk/net/tipc/core.h index e4e46cd2d0e6..4c5705ac8a5a 100644 --- a/trunk/net/tipc/core.h +++ b/trunk/net/tipc/core.h @@ -74,17 +74,17 @@ int tipc_snprintf(char *buf, int len, const char *fmt, ...); /* * Global configuration variables */ -extern u32 tipc_own_addr; -extern int tipc_max_ports; +extern u32 tipc_own_addr __read_mostly; +extern int tipc_max_ports __read_mostly; extern int tipc_max_subscriptions; extern int tipc_max_publications; -extern int tipc_net_id; -extern int tipc_remote_management; +extern int tipc_net_id __read_mostly; +extern int tipc_remote_management __read_mostly; /* * Other global variables */ -extern int tipc_random; +extern int tipc_random __read_mostly; /* * Routines available to privileged subsystems diff --git a/trunk/net/tipc/handler.c b/trunk/net/tipc/handler.c index 7a52d3922f3c..111ff8300ae5 100644 --- a/trunk/net/tipc/handler.c +++ b/trunk/net/tipc/handler.c @@ -45,7 +45,7 @@ struct queue_item { static struct kmem_cache *tipc_queue_item_cache; static struct list_head signal_queue_head; static DEFINE_SPINLOCK(qitem_lock); -static int handler_enabled; +static int handler_enabled __read_mostly; static void process_signal_queue(unsigned long dummy);