Home | History | Annotate | Download | only in genl

Lines Matching refs:gf

256 	struct genl_family *gf = (struct genl_family *) \
258 if (!gf)
260 memset(gf, 0, sizeof(*gf));
263 gf->ce_refcnt++;
266 gf->gf_id = (uint16_t) ((uint32_t) cache);
267 strncpy(gf->gf_name, name, GENL_NAMSIZ);
269 return gf;
278 struct genl_family *gf = NULL;
291 gf = genl_ctrl_search_by_name(cache, name);
292 if (gf)
293 id = genl_family_get_id(gf);
296 if (gf)
297 genl_family_put(gf);