Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
0612fdbe
Commit
0612fdbe
authored
Jul 14, 2003
by
Andi Kleen
Committed by
David S. Miller
Jul 14, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET]: Turn softnet_data into per-cpu data.
parent
6019d2cb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
40 deletions
+36
-40
include/linux/netdevice.h
include/linux/netdevice.h
+13
-17
net/core/dev.c
net/core/dev.c
+22
-22
net/netsyms.c
net/netsyms.c
+1
-1
No files found.
include/linux/netdevice.h
View file @
0612fdbe
...
...
@@ -29,6 +29,7 @@
#include <linux/if_ether.h>
#include <linux/if_packet.h>
#include <linux/device.h>
#include <linux/percpu.h>
#include <asm/atomic.h>
#include <asm/cache.h>
...
...
@@ -544,10 +545,9 @@ struct softnet_data
struct
sk_buff
*
completion_queue
;
struct
net_device
backlog_dev
;
/* Sorry. 8) */
}
____cacheline_aligned
;
};
extern
struct
softnet_data
softnet_data
[
NR_CPUS
]
;
DECLARE_PER_CPU
(
struct
softnet_data
,
softnet_data
)
;
#define HAVE_NETIF_QUEUE
...
...
@@ -555,12 +555,12 @@ static inline void __netif_schedule(struct net_device *dev)
{
if
(
!
test_and_set_bit
(
__LINK_STATE_SCHED
,
&
dev
->
state
))
{
unsigned
long
flags
;
int
cpu
;
struct
softnet_data
*
sd
;
local_irq_save
(
flags
);
cpu
=
smp_processor_id
(
);
dev
->
next_sched
=
s
oftnet_data
[
cpu
].
output_queue
;
s
oftnet_data
[
cpu
].
output_queue
=
dev
;
sd
=
&
__get_cpu_var
(
softnet_data
);
dev
->
next_sched
=
s
d
->
output_queue
;
s
d
->
output_queue
=
dev
;
raise_softirq_irqoff
(
NET_TX_SOFTIRQ
);
local_irq_restore
(
flags
);
}
...
...
@@ -605,13 +605,13 @@ static inline int netif_running(const struct net_device *dev)
static
inline
void
dev_kfree_skb_irq
(
struct
sk_buff
*
skb
)
{
if
(
atomic_dec_and_test
(
&
skb
->
users
))
{
int
cpu
;
struct
softnet_data
*
sd
;
unsigned
long
flags
;
local_irq_save
(
flags
);
cpu
=
smp_processor_id
(
);
skb
->
next
=
s
oftnet_data
[
cpu
].
completion_queue
;
s
oftnet_data
[
cpu
].
completion_queue
=
skb
;
sd
=
&
__get_cpu_var
(
softnet_data
);
skb
->
next
=
s
d
->
completion_queue
;
s
d
->
completion_queue
=
skb
;
raise_softirq_irqoff
(
NET_TX_SOFTIRQ
);
local_irq_restore
(
flags
);
}
...
...
@@ -769,12 +769,10 @@ static inline int netif_rx_schedule_prep(struct net_device *dev)
static
inline
void
__netif_rx_schedule
(
struct
net_device
*
dev
)
{
unsigned
long
flags
;
int
cpu
;
local_irq_save
(
flags
);
cpu
=
smp_processor_id
();
dev_hold
(
dev
);
list_add_tail
(
&
dev
->
poll_list
,
&
softnet_data
[
cpu
]
.
poll_list
);
list_add_tail
(
&
dev
->
poll_list
,
&
__get_cpu_var
(
softnet_data
)
.
poll_list
);
if
(
dev
->
quota
<
0
)
dev
->
quota
+=
dev
->
weight
;
else
...
...
@@ -798,13 +796,11 @@ static inline int netif_rx_reschedule(struct net_device *dev, int undo)
{
if
(
netif_rx_schedule_prep
(
dev
))
{
unsigned
long
flags
;
int
cpu
;
dev
->
quota
+=
undo
;
local_irq_save
(
flags
);
cpu
=
smp_processor_id
();
list_add_tail
(
&
dev
->
poll_list
,
&
softnet_data
[
cpu
].
poll_list
);
list_add_tail
(
&
dev
->
poll_list
,
&
__get_cpu_var
(
softnet_data
).
poll_list
);
__raise_softirq_irqoff
(
NET_RX_SOFTIRQ
);
local_irq_restore
(
flags
);
return
1
;
...
...
net/core/dev.c
View file @
0612fdbe
...
...
@@ -178,7 +178,7 @@ static struct notifier_block *netdev_chain;
* Device drivers call our routines to queue packets here. We empty the
* queue in the local softnet handler.
*/
struct
softnet_data
softnet_data
[
NR_CPUS
]
__cacheline_aligned
;
DEFINE_PER_CPU
(
struct
softnet_data
,
softnet_data
)
=
{
0
,
}
;
#ifdef CONFIG_NET_FASTROUTE
int
netdev_fastroute
;
...
...
@@ -1280,34 +1280,35 @@ static void get_sample_stats(int cpu)
unsigned
long
rd
;
int
rq
;
#endif
int
blog
=
softnet_data
[
cpu
].
input_pkt_queue
.
qlen
;
int
avg_blog
=
softnet_data
[
cpu
].
avg_blog
;
struct
softnet_data
*
sd
=
&
per_cpu
(
softnet_data
,
cpu
);
int
blog
=
sd
->
input_pkt_queue
.
qlen
;
int
avg_blog
=
sd
->
avg_blog
;
avg_blog
=
(
avg_blog
>>
1
)
+
(
blog
>>
1
);
if
(
avg_blog
>
mod_cong
)
{
/* Above moderate congestion levels. */
s
oftnet_data
[
cpu
].
cng_level
=
NET_RX_CN_HIGH
;
s
d
->
cng_level
=
NET_RX_CN_HIGH
;
#ifdef RAND_LIE
rd
=
net_random
();
rq
=
rd
%
netdev_max_backlog
;
if
(
rq
<
avg_blog
)
/* unlucky bastard */
s
oftnet_data
[
cpu
].
cng_level
=
NET_RX_DROP
;
s
d
->
cng_level
=
NET_RX_DROP
;
#endif
}
else
if
(
avg_blog
>
lo_cong
)
{
s
oftnet_data
[
cpu
].
cng_level
=
NET_RX_CN_MOD
;
s
d
->
cng_level
=
NET_RX_CN_MOD
;
#ifdef RAND_LIE
rd
=
net_random
();
rq
=
rd
%
netdev_max_backlog
;
if
(
rq
<
avg_blog
)
/* unlucky bastard */
s
oftnet_data
[
cpu
].
cng_level
=
NET_RX_CN_HIGH
;
s
d
->
cng_level
=
NET_RX_CN_HIGH
;
#endif
}
else
if
(
avg_blog
>
no_cong
)
s
oftnet_data
[
cpu
].
cng_level
=
NET_RX_CN_LOW
;
s
d
->
cng_level
=
NET_RX_CN_LOW
;
else
/* no congestion */
s
oftnet_data
[
cpu
].
cng_level
=
NET_RX_SUCCESS
;
s
d
->
cng_level
=
NET_RX_SUCCESS
;
s
oftnet_data
[
cpu
].
avg_blog
=
avg_blog
;
s
d
->
avg_blog
=
avg_blog
;
}
#ifdef OFFLINE_SAMPLE
...
...
@@ -1357,7 +1358,7 @@ int netif_rx(struct sk_buff *skb)
*/
local_irq_save
(
flags
);
this_cpu
=
smp_processor_id
();
queue
=
&
softnet_data
[
this_cpu
]
;
queue
=
&
__get_cpu_var
(
softnet_data
)
;
netdev_rx_stat
[
this_cpu
].
total
++
;
if
(
queue
->
input_pkt_queue
.
qlen
<=
netdev_max_backlog
)
{
...
...
@@ -1445,14 +1446,14 @@ static __inline__ void skb_bond(struct sk_buff *skb)
static
void
net_tx_action
(
struct
softirq_action
*
h
)
{
int
cpu
=
smp_processor_id
(
);
struct
softnet_data
*
sd
=
&
__get_cpu_var
(
softnet_data
);
if
(
s
oftnet_data
[
cpu
].
completion_queue
)
{
if
(
s
d
->
completion_queue
)
{
struct
sk_buff
*
clist
;
local_irq_disable
();
clist
=
s
oftnet_data
[
cpu
].
completion_queue
;
s
oftnet_data
[
cpu
].
completion_queue
=
NULL
;
clist
=
s
d
->
completion_queue
;
s
d
->
completion_queue
=
NULL
;
local_irq_enable
();
while
(
clist
)
{
...
...
@@ -1464,12 +1465,12 @@ static void net_tx_action(struct softirq_action *h)
}
}
if
(
s
oftnet_data
[
cpu
].
output_queue
)
{
if
(
s
d
->
output_queue
)
{
struct
net_device
*
head
;
local_irq_disable
();
head
=
s
oftnet_data
[
cpu
].
output_queue
;
s
oftnet_data
[
cpu
].
output_queue
=
NULL
;
head
=
s
d
->
output_queue
;
s
d
->
output_queue
=
NULL
;
local_irq_enable
();
while
(
head
)
{
...
...
@@ -1611,8 +1612,7 @@ static int process_backlog(struct net_device *backlog_dev, int *budget)
{
int
work
=
0
;
int
quota
=
min
(
backlog_dev
->
quota
,
*
budget
);
int
this_cpu
=
smp_processor_id
();
struct
softnet_data
*
queue
=
&
softnet_data
[
this_cpu
];
struct
softnet_data
*
queue
=
&
__get_cpu_var
(
softnet_data
);
unsigned
long
start_time
=
jiffies
;
for
(;;)
{
...
...
@@ -1673,7 +1673,7 @@ static int process_backlog(struct net_device *backlog_dev, int *budget)
static
void
net_rx_action
(
struct
softirq_action
*
h
)
{
int
this_cpu
=
smp_processor_id
();
struct
softnet_data
*
queue
=
&
softnet_data
[
this_cpu
]
;
struct
softnet_data
*
queue
=
&
__get_cpu_var
(
softnet_data
)
;
unsigned
long
start_time
=
jiffies
;
int
budget
=
netdev_max_backlog
;
...
...
@@ -2979,7 +2979,7 @@ static int __init net_dev_init(void)
for
(
i
=
0
;
i
<
NR_CPUS
;
i
++
)
{
struct
softnet_data
*
queue
;
queue
=
&
softnet_data
[
i
]
;
queue
=
&
per_cpu
(
softnet_data
,
i
)
;
skb_queue_head_init
(
&
queue
->
input_pkt_queue
);
queue
->
throttle
=
0
;
queue
->
cng_level
=
0
;
...
...
net/netsyms.c
View file @
0612fdbe
...
...
@@ -685,7 +685,7 @@ EXPORT_SYMBOL(ip_route_me_harder);
EXPORT_SYMBOL
(
register_gifconf
);
EXPORT_SYMBOL
(
softnet_data
);
EXPORT_
PER_CPU_
SYMBOL
(
softnet_data
);
#ifdef CONFIG_NET_RADIO
#include <net/iw_handler.h>
/* Wireless Extensions driver API */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment