Lines Matching defs:new_ti
608 struct table_instance *new_ti;
610 new_ti = table_instance_alloc(n_buckets);
611 if (!new_ti)
614 flow_table_copy_flows(ti, new_ti, ufid);
616 return new_ti;
621 struct table_instance *old_ti, *new_ti;
624 new_ti = table_instance_alloc(TBL_MIN_BUCKETS);
625 if (!new_ti)
634 rcu_assign_pointer(flow_table->ti, new_ti);
643 __table_instance_destroy(new_ti);
1039 struct table_instance *new_ti = NULL;
1049 new_ti = table_instance_expand(ti, false);
1051 new_ti = table_instance_rehash(ti, ti->n_buckets, false);
1053 if (new_ti) {
1054 rcu_assign_pointer(table->ti, new_ti);
1072 struct table_instance *new_ti;
1074 new_ti = table_instance_expand(ti, true);
1075 if (new_ti) {
1076 rcu_assign_pointer(table->ufid_ti, new_ti);