[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <51779347.2000808@asianux.com>
Date: Wed, 24 Apr 2013 16:09:43 +0800
From: Chen Gang <gang.chen@...anux.com>
To: David Miller <davem@...emloft.net>, kaber@...sh.net,
xemul@...allels.com, avagin@...nvz.org,
netdev <netdev@...r.kernel.org>
Subject: [PATCH net-next] netlink: compiling issue, need a dummy function
sk_diag_put_rings_cfg when CONFIG_NETLINK_MMAP disabled
When disable CONFIG_NETLINK_MMAP, need a dummy function for
sk_diag_put_rings_cfg, or will cause compiling issue.
Signed-off-by: Chen Gang <gang.chen@...anux.com>
---
net/netlink/diag.c | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/net/netlink/diag.c b/net/netlink/diag.c
index 4e4aa47..d0ab090 100644
--- a/net/netlink/diag.c
+++ b/net/netlink/diag.c
@@ -7,6 +7,8 @@
#include "af_netlink.h"
+#ifdef CONFIG_NETLINK_MMAP
+
static int sk_diag_put_ring(struct netlink_ring *ring, int nl_type,
struct sk_buff *nlskb)
{
@@ -35,6 +37,15 @@ static int sk_diag_put_rings_cfg(struct sock *sk, struct sk_buff *nlskb)
return ret;
}
+#else /* !CONFIG_NETLINK_MMAP */
+
+static int sk_diag_put_rings_cfg(struct sock *sk, struct sk_buff *nlskb)
+{
+ return 0;
+}
+
+#endif /* CONFIG_NETLINK_MMAP */
+
static int sk_diag_dump_groups(struct sock *sk, struct sk_buff *nlskb)
{
struct netlink_sock *nlk = nlk_sk(sk);
--
1.7.7.6
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists