Lines Matching defs:full
259 const struct genl_ops *full, u8 flags)
261 if ((flags & GENL_CMD_CAP_DO && !full->doit) ||
262 (flags & GENL_CMD_CAP_DUMP && !full->dumpit)) {
268 op->start = full->start;
269 op->dumpit = full->dumpit;
270 op->done = full->done;
273 op->doit = full->doit;
278 full->validate & GENL_DONT_VALIDATE_DUMP) {
282 op->policy = full->policy;
283 op->maxattr = full->maxattr;
286 op->cmd = full->cmd;
287 op->internal_flags = full->internal_flags;
288 op->flags = full->flags;
289 op->validate = full->validate;
302 struct genl_ops full;
305 err = genl_get_cmd_full(cmd, family, &full);
307 err = genl_get_cmd_small(cmd, family, &full);
310 return genl_cmd_full_to_split(op, family, &full, flags);