Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
Conflicts: Documentation/feature-removal-schedule.txt drivers/net/wireless/ipw2x00/ipw2200.c
This commit is contained in:
@@ -547,8 +547,20 @@ static int genl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
|
||||
info.userhdr = nlmsg_data(nlh) + GENL_HDRLEN;
|
||||
info.attrs = family->attrbuf;
|
||||
genl_info_net_set(&info, net);
|
||||
memset(&info.user_ptr, 0, sizeof(info.user_ptr));
|
||||
|
||||
return ops->doit(skb, &info);
|
||||
if (family->pre_doit) {
|
||||
err = family->pre_doit(ops, skb, &info);
|
||||
if (err)
|
||||
return err;
|
||||
}
|
||||
|
||||
err = ops->doit(skb, &info);
|
||||
|
||||
if (family->post_doit)
|
||||
family->post_doit(ops, skb, &info);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
static void genl_rcv(struct sk_buff *skb)
|
||||
|
Reference in New Issue
Block a user