Lines Matching defs:catdatum
655 struct cat_datum *catdatum;
657 catdatum = datum;
660 if (!catdatum->isalias) {
661 if (!catdatum->value || catdatum->value > p->p_cats.nprim)
664 p->sym_val_to_name[SYM_CATS][catdatum->value - 1] = key;
1612 struct cat_datum *catdatum;
1617 catdatum = kzalloc(sizeof(*catdatum), GFP_KERNEL);
1618 if (!catdatum)
1626 catdatum->value = le32_to_cpu(buf[1]);
1627 catdatum->isalias = le32_to_cpu(buf[2]);
1633 rc = symtab_insert(s, key, catdatum);
1638 cat_destroy(key, catdatum, NULL);
2810 struct cat_datum *catdatum = datum;
2819 buf[1] = cpu_to_le32(catdatum->value);
2820 buf[2] = cpu_to_le32(catdatum->isalias);