X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=include%2Fnet%2Fnetlink.h;h=a63b2192ac1cdf83dfc636ba362e58bd5da8b9ad;hb=3a6c2b419b7768703cfb2cabdb894517c5065e33;hp=007bdb07dabb22f9aabc1e9014a55440de86769b;hpb=b0b7065b64fe517b4a50915a1555e8ee98890d64;p=~andy%2Flinux diff --git a/include/net/netlink.h b/include/net/netlink.h index 007bdb07dab..a63b2192ac1 100644 --- a/include/net/netlink.h +++ b/include/net/netlink.h @@ -365,7 +365,7 @@ static inline struct nlmsghdr *nlmsg_next(struct nlmsghdr *nlh, int *remaining) * * See nla_parse() */ -static inline int nlmsg_parse(struct nlmsghdr *nlh, int hdrlen, +static inline int nlmsg_parse(const struct nlmsghdr *nlh, int hdrlen, struct nlattr *tb[], int maxtype, const struct nla_policy *policy) { @@ -414,7 +414,7 @@ static inline int nlmsg_validate(struct nlmsghdr *nlh, int hdrlen, int maxtype, * * Returns 1 if a report back to the application is requested. */ -static inline int nlmsg_report(struct nlmsghdr *nlh) +static inline int nlmsg_report(const struct nlmsghdr *nlh) { return !!(nlh->nlmsg_flags & NLM_F_ECHO); }