Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 327552
b: refs/heads/master
c: 61cdd4d
h: refs/heads/master
v: v3
  • Loading branch information
Ying Xue authored and David S. Miller committed Aug 20, 2012
1 parent 6d63e39 commit b03329b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 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: f046e7d9be1cbb3335694c7f9a31d18e1f998ff5
refs/heads/master: 61cdd4d80b29cfdee45920238eea2d1fbb51f922
10 changes: 5 additions & 5 deletions trunk/net/tipc/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;


/**
Expand Down
10 changes: 5 additions & 5 deletions trunk/net/tipc/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/tipc/handler.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit b03329b

Please sign in to comment.