aboutsummaryrefslogtreecommitdiffstats
path: root/net/dcb/dcbnl.c
diff options
context:
space:
mode:
authorThomas Graf <tgraf@suug.ch>2012-06-13 02:54:56 +0000
committerDavid S. Miller <davem@davemloft.net>2012-06-13 15:46:34 -0700
commit77c6849d7aca31a0743be51412853079fcea03e0 (patch)
tree3020c9fc6e7d5f276ca7ed7bbcde6b82c6e0a649 /net/dcb/dcbnl.c
parentdcbnl: Shorten all command handling functions (diff)
downloadlinux-dev-77c6849d7aca31a0743be51412853079fcea03e0.tar.xz
linux-dev-77c6849d7aca31a0743be51412853079fcea03e0.zip
dcbnl: Remove now unused dcbnl_reply()
Signed-off-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dcb/dcbnl.c')
-rw-r--r--net/dcb/dcbnl.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/net/dcb/dcbnl.c b/net/dcb/dcbnl.c
index 5e392b85d48d..5ed71674a4a1 100644
--- a/net/dcb/dcbnl.c
+++ b/net/dcb/dcbnl.c
@@ -224,43 +224,6 @@ static struct sk_buff *dcbnl_newmsg(int type, u8 cmd, u32 port, u32 seq,
return skb;
}
-/* standard netlink reply call */
-static int dcbnl_reply(u8 value, u8 event, u8 cmd, u8 attr, u32 pid,
- u32 seq, u16 flags)
-{
- struct sk_buff *dcbnl_skb;
- struct dcbmsg *dcb;
- struct nlmsghdr *nlh;
- int ret = -EINVAL;
-
- dcbnl_skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
- if (!dcbnl_skb)
- return ret;
-
- nlh = NLMSG_NEW(dcbnl_skb, pid, seq, event, sizeof(*dcb), flags);
-
- dcb = NLMSG_DATA(nlh);
- dcb->dcb_family = AF_UNSPEC;
- dcb->cmd = cmd;
- dcb->dcb_pad = 0;
-
- ret = nla_put_u8(dcbnl_skb, attr, value);
- if (ret)
- goto err;
-
- /* end the message, assign the nlmsg_len. */
- nlmsg_end(dcbnl_skb, nlh);
- ret = rtnl_unicast(dcbnl_skb, &init_net, pid);
- if (ret)
- return -EINVAL;
-
- return 0;
-nlmsg_failure:
-err:
- kfree_skb(dcbnl_skb);
- return ret;
-}
-
static int dcbnl_getstate(struct net_device *netdev, struct nlmsghdr *nlh,
u32 seq, struct nlattr **tb, struct sk_buff *skb)
{