Lines Matching defs:new
138 * sel_netnode_insert - Insert a new node into the table
139 * @node: the new node record
142 * Add a new node record to the network address hash table.
194 struct sel_netnode *new;
204 new = kzalloc(sizeof(*new), GFP_ATOMIC);
209 if (new)
210 new->nsec.addr.ipv4 = *(__be32 *)addr;
215 if (new)
216 new->nsec.addr.ipv6 = *(struct in6_addr *)addr;
222 if (ret == 0 && new) {
223 new->nsec.family = family;
224 new->nsec.sid = *sid;
225 sel_netnode_insert(new);
227 kfree(new);