aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netdevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r--include/linux/netdevice.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index f4169bbb60eb..b5760c67af9c 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -37,6 +37,7 @@
37#include <linux/config.h> 37#include <linux/config.h>
38#include <linux/device.h> 38#include <linux/device.h>
39#include <linux/percpu.h> 39#include <linux/percpu.h>
40#include <linux/dmaengine.h>
40 41
41struct divert_blk; 42struct divert_blk;
42struct vlan_group; 43struct vlan_group;
@@ -593,6 +594,9 @@ struct softnet_data
593 struct sk_buff *completion_queue; 594 struct sk_buff *completion_queue;
594 595
595 struct net_device backlog_dev; /* Sorry. 8) */ 596 struct net_device backlog_dev; /* Sorry. 8) */
597#ifdef CONFIG_NET_DMA
598 struct dma_chan *net_dma;
599#endif
596}; 600};
597 601
598DECLARE_PER_CPU(struct softnet_data,softnet_data); 602DECLARE_PER_CPU(struct softnet_data,softnet_data);