]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - include/net/genetlink.h
Merge tag 'mmc-v4.12' of git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc
[karo-tx-linux.git] / include / net / genetlink.h
index f18db6570f52f4771164de6564788d856f169842..68b88192b00c6200aa0b8b2628554952d0d79a1c 100644 (file)
@@ -174,14 +174,16 @@ genlmsg_nlhdr(void *user_hdr, const struct genl_family *family)
  * @tb: destination array with maxtype+1 elements
  * @maxtype: maximum attribute type to be expected
  * @policy: validation policy
- * */
+ * @extack: extended ACK report struct
+ */
 static inline int genlmsg_parse(const struct nlmsghdr *nlh,
                                const struct genl_family *family,
                                struct nlattr *tb[], int maxtype,
-                               const struct nla_policy *policy)
+                               const struct nla_policy *policy,
+                               struct netlink_ext_ack *extack)
 {
        return nlmsg_parse(nlh, family->hdrsize + GENL_HDRLEN, tb, maxtype,
-                          policy);
+                          policy, extack);
 }
 
 /**