Lines Matching defs:genl_family
50 struct genl_family { struct
51 unsigned int id;
52 unsigned int hdrsize;
53 char name[GENL_NAMSIZ];
54 unsigned int version;
55 unsigned int maxattr;
56 bool netnsok;
57 bool parallel_ops;
58 int (*pre_doit)(const struct genl_ops *ops,
61 void (*post_doit)(const struct genl_ops *ops,
64 int (*mcast_bind)(struct net *net, int group);
65 void (*mcast_unbind)(struct net *net, int group);
66 struct nlattr ** attrbuf; /* private */
67 const struct genl_ops * ops; /* private */
68 const struct genl_multicast_group *mcgrps; /* private */
69 unsigned int n_ops; /* private */
70 unsigned int n_mcgrps; /* private */
71 unsigned int mcgrp_offset; /* private */
72 struct list_head family_list; /* private */
73 struct module *module;