Lines Matching defs:new_ti
605 struct table_instance *new_ti;
607 new_ti = table_instance_alloc(n_buckets);
608 if (!new_ti)
611 flow_table_copy_flows(ti, new_ti, ufid);
613 return new_ti;
618 struct table_instance *old_ti, *new_ti;
621 new_ti = table_instance_alloc(TBL_MIN_BUCKETS);
622 if (!new_ti)
631 rcu_assign_pointer(flow_table->ti, new_ti);
640 __table_instance_destroy(new_ti);
1036 struct table_instance *new_ti = NULL;
1046 new_ti = table_instance_expand(ti, false);
1048 new_ti = table_instance_rehash(ti, ti->n_buckets, false);
1050 if (new_ti) {
1051 rcu_assign_pointer(table->ti, new_ti);
1069 struct table_instance *new_ti;
1071 new_ti = table_instance_expand(ti, true);
1072 if (new_ti) {
1073 rcu_assign_pointer(table->ufid_ti, new_ti);