diff options
Diffstat (limited to 'net/tipc/netlink.c')
| -rw-r--r-- | net/tipc/netlink.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/tipc/netlink.c b/net/tipc/netlink.c index 6675914dc592..8bcd4985d0fb 100644 --- a/net/tipc/netlink.c +++ b/net/tipc/netlink.c | |||
| @@ -44,7 +44,7 @@ static int handle_cmd(struct sk_buff *skb, struct genl_info *info) | |||
| 44 | struct nlmsghdr *rep_nlh; | 44 | struct nlmsghdr *rep_nlh; |
| 45 | struct nlmsghdr *req_nlh = info->nlhdr; | 45 | struct nlmsghdr *req_nlh = info->nlhdr; |
| 46 | struct tipc_genlmsghdr *req_userhdr = info->userhdr; | 46 | struct tipc_genlmsghdr *req_userhdr = info->userhdr; |
| 47 | int hdr_space = NLMSG_SPACE(GENL_HDRLEN + TIPC_GENL_HDRLEN); | 47 | int hdr_space = nlmsg_total_size(GENL_HDRLEN + TIPC_GENL_HDRLEN); |
| 48 | u16 cmd; | 48 | u16 cmd; |
| 49 | 49 | ||
| 50 | if ((req_userhdr->cmd & 0xC000) && (!capable(CAP_NET_ADMIN))) | 50 | if ((req_userhdr->cmd & 0xC000) && (!capable(CAP_NET_ADMIN))) |
| @@ -53,8 +53,8 @@ static int handle_cmd(struct sk_buff *skb, struct genl_info *info) | |||
| 53 | cmd = req_userhdr->cmd; | 53 | cmd = req_userhdr->cmd; |
| 54 | 54 | ||
| 55 | rep_buf = tipc_cfg_do_cmd(req_userhdr->dest, cmd, | 55 | rep_buf = tipc_cfg_do_cmd(req_userhdr->dest, cmd, |
| 56 | NLMSG_DATA(req_nlh) + GENL_HDRLEN + TIPC_GENL_HDRLEN, | 56 | nlmsg_data(req_nlh) + GENL_HDRLEN + TIPC_GENL_HDRLEN, |
| 57 | NLMSG_PAYLOAD(req_nlh, GENL_HDRLEN + TIPC_GENL_HDRLEN), | 57 | nlmsg_attrlen(req_nlh, GENL_HDRLEN + TIPC_GENL_HDRLEN), |
| 58 | hdr_space); | 58 | hdr_space); |
| 59 | 59 | ||
| 60 | if (rep_buf) { | 60 | if (rep_buf) { |
