aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2008-11-12 23:25:32 -0800
committerDavid S. Miller <davem@davemloft.net>2008-11-12 23:25:32 -0800
commit2378982487c492541d17adc0a870e7e83b07ba43 (patch)
tree0763aee8034a2db3c3949a6b9d7952263420335e /include
parentbnx2: Update version to 1.8.2. (diff)
downloadlinux-dev-2378982487c492541d17adc0a870e7e83b07ba43.tar.xz
linux-dev-2378982487c492541d17adc0a870e7e83b07ba43.zip
net: ifdef struct sock::sk_async_wait_queue
Every user is under CONFIG_NET_DMA already, so ifdef field as well. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/sock.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/sock.h b/include/net/sock.h
index 08291c1be41e..8b2b82131b67 100644
--- a/include/net/sock.h
+++ b/include/net/sock.h
@@ -239,7 +239,9 @@ struct sock {
int sk_sndbuf;
struct sk_buff_head sk_receive_queue;
struct sk_buff_head sk_write_queue;
+#ifdef CONFIG_NET_DMA
struct sk_buff_head sk_async_wait_queue;
+#endif
int sk_wmem_queued;
int sk_forward_alloc;
gfp_t sk_allocation;