diff options
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 83ab3da149ad..3c5ed5f5274e 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -1401,10 +1401,10 @@ struct softnet_data { | |||
1401 | struct napi_struct backlog; | 1401 | struct napi_struct backlog; |
1402 | }; | 1402 | }; |
1403 | 1403 | ||
1404 | static inline void incr_input_queue_head(struct softnet_data *queue) | 1404 | static inline void input_queue_head_incr(struct softnet_data *sd) |
1405 | { | 1405 | { |
1406 | #ifdef CONFIG_RPS | 1406 | #ifdef CONFIG_RPS |
1407 | queue->input_queue_head++; | 1407 | sd->input_queue_head++; |
1408 | #endif | 1408 | #endif |
1409 | } | 1409 | } |
1410 | 1410 | ||