Dave, This minor bug fix should probably go into 2.6.15.
cheers, jamal
fix cmd type in genl_ops to be consistent to u8 Signed-off-by: Per Liden <[EMAIL PROTECTED]> ACKed-by: Jamal Hadi Salim <[EMAIL PROTECTED]> --- diff --git a/include/net/genetlink.h b/include/net/genetlink.h index 52d8b1a..c5b96b2 100644 --- a/include/net/genetlink.h +++ b/include/net/genetlink.h @@ -60,7 +60,7 @@ struct genl_info */ struct genl_ops { - unsigned int cmd; + u8 cmd; unsigned int flags; struct nla_policy *policy; int (*doit)(struct sk_buff *skb, diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c index 287cfcc..3b13784 100644 --- a/net/netlink/genetlink.c +++ b/net/netlink/genetlink.c @@ -441,7 +441,7 @@ errout: } static struct sk_buff *ctrl_build_msg(struct genl_family *family, u32 pid, - int seq, int cmd) + int seq, u8 cmd) { struct sk_buff *skb; int err;