Lines Matching defs:genl_family
62 struct genl_family { struct
63 unsigned int hdrsize;
64 char name[GENL_NAMSIZ];
65 unsigned int version;
66 unsigned int maxattr;
67 u8 netnsok:1;
68 u8 parallel_ops:1;
69 u8 n_ops;
70 u8 n_small_ops;
71 u8 n_split_ops;
72 u8 n_mcgrps;
73 u8 resv_start_op;
74 const struct nla_policy *policy;
75 int (*pre_doit)(const struct genl_split_ops *ops,
78 void (*post_doit)(const struct genl_split_ops *ops,
81 const struct genl_ops * ops;
82 const struct genl_small_ops *small_ops;
83 const struct genl_split_ops *split_ops;
84 const struct genl_multicast_group *mcgrps;
85 struct module *module;
109 const struct genl_family *family; argument