aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/core/dev.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 54ffe9db9b02..f9d2b0f0bd58 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -146,8 +146,8 @@
146 */ 146 */
147 147
148static DEFINE_SPINLOCK(ptype_lock); 148static DEFINE_SPINLOCK(ptype_lock);
149static struct list_head ptype_base[16]; /* 16 way hashed list */ 149static struct list_head ptype_base[16] __read_mostly; /* 16 way hashed list */
150static struct list_head ptype_all; /* Taps */ 150static struct list_head ptype_all __read_mostly; /* Taps */
151 151
152#ifdef CONFIG_NET_DMA 152#ifdef CONFIG_NET_DMA
153static struct dma_client *net_dma_client; 153static struct dma_client *net_dma_client;
@@ -1533,9 +1533,9 @@ out:
1533 Receiver routines 1533 Receiver routines
1534 =======================================================================*/ 1534 =======================================================================*/
1535 1535
1536int netdev_max_backlog = 1000; 1536int netdev_max_backlog __read_mostly = 1000;
1537int netdev_budget = 300; 1537int netdev_budget __read_mostly = 300;
1538int weight_p = 64; /* old backlog weight */ 1538int weight_p __read_mostly = 64; /* old backlog weight */
1539 1539
1540DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, }; 1540DEFINE_PER_CPU(struct netif_rx_stats, netdev_rx_stat) = { 0, };
1541 1541