From: Patrick McHardy Date: Wed, 5 Dec 2007 09:29:38 +0000 (-0800) Subject: [NETFILTER]: nfnetlink_queue: mark hash table __read_mostly X-Git-Tag: v2.6.25-rc1~1162^2~1227 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9d6023ab8b97f5074f9007c92d38fef9ae04e56b;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git [NETFILTER]: nfnetlink_queue: mark hash table __read_mostly Signed-off-by: Patrick McHardy Signed-off-by: David S. Miller --- diff --git a/net/netfilter/nfnetlink_queue.c b/net/netfilter/nfnetlink_queue.c index c3aba1e..de48fd3 100644 --- a/net/netfilter/nfnetlink_queue.c +++ b/net/netfilter/nfnetlink_queue.c @@ -63,7 +63,7 @@ typedef int (*nfqnl_cmpfn)(struct nf_queue_entry *, unsigned long); static DEFINE_SPINLOCK(instances_lock); #define INSTANCE_BUCKETS 16 -static struct hlist_head instance_table[INSTANCE_BUCKETS]; +static struct hlist_head instance_table[INSTANCE_BUCKETS] __read_mostly; static inline u_int8_t instance_hashfn(u_int16_t queue_num) {