Lines Matching defs:genl_family
78 struct genl_family { struct
79 unsigned int hdrsize;
80 char name[GENL_NAMSIZ];
81 unsigned int version;
82 unsigned int maxattr;
83 u8 netnsok:1;
84 u8 parallel_ops:1;
85 u8 n_ops;
86 u8 n_small_ops;
87 u8 n_split_ops;
88 u8 n_mcgrps;
89 u8 resv_start_op;
90 const struct nla_policy *policy;
91 int (*pre_doit)(const struct genl_split_ops *ops,
94 void (*post_doit)(const struct genl_split_ops *ops,
97 int (*bind)(int mcgrp);
98 void (*unbind)(int mcgrp);
99 const struct genl_ops * ops;
100 const struct genl_small_ops *small_ops;
101 const struct genl_split_ops *split_ops;
102 const struct genl_multicast_group *mcgrps;
103 struct module *module;
105 size_t sock_priv_size;
106 void (*sock_priv_init)(void *priv);
107 void (*sock_priv_destroy)(void *priv);
133 const struct genl_family *family; argument