1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#include <net/genetlink.h>
#include <linux/version.h>
#ifndef HAVE_GENL_NOTIFY_TAKES_FAMILY
int rpl___genl_register_family(struct rpl_genl_family *f)
{
int err;
f->compat_family.id = f->id;
f->compat_family.hdrsize = f->hdrsize;
strncpy(f->compat_family.name, f->name, GENL_NAMSIZ);
f->compat_family.version = f->version;
f->compat_family.maxattr = f->maxattr;
f->compat_family.netnsok = f->netnsok;
#ifdef HAVE_PARALLEL_OPS
f->compat_family.parallel_ops = f->parallel_ops;
#endif
err = genl_register_family_with_ops(&f->compat_family,
(struct genl_ops *) f->ops, f->n_ops);
if (err)
goto error;
if (f->mcgrps) {
/* Need to Fix GROUP_ID() for more than one group. */
BUG_ON(f->n_mcgrps > 1);
err = genl_register_mc_group(&f->compat_family,
(struct genl_multicast_group *) f->mcgrps);
if (err)
goto error;
}
error:
return err;
}
EXPORT_SYMBOL_GPL(rpl___genl_register_family);
#endif /* HAVE_GENL_NOTIFY_TAKES_FAMILY */
#ifdef HAVE_GENL_NOTIFY_TAKES_NET
#undef genl_notify
void rpl_genl_notify(struct genl_family *family, struct sk_buff *skb,
struct genl_info *info, u32 group, gfp_t flags)
{
struct net *net = genl_info_net(info);
u32 portid = info->snd_portid;
struct nlmsghdr *nlh = info->nlhdr;
#ifdef HAVE_GENL_NOTIFY_TAKES_FAMILY
genl_notify(family, skb, net, portid, group, nlh, flags);
#else
genl_notify(skb, net, portid, group, nlh, flags);
#endif
}
#endif /* HAVE_GENL_NOTIFY_TAKES_NET */
|