Lines Matching defs:new_ti
609 struct table_instance *new_ti;
611 new_ti = table_instance_alloc(n_buckets);
612 if (!new_ti)
615 flow_table_copy_flows(ti, new_ti, ufid);
617 return new_ti;
622 struct table_instance *old_ti, *new_ti;
625 new_ti = table_instance_alloc(TBL_MIN_BUCKETS);
626 if (!new_ti)
635 rcu_assign_pointer(flow_table->ti, new_ti);
644 __table_instance_destroy(new_ti);
1040 struct table_instance *new_ti = NULL;
1050 new_ti = table_instance_expand(ti, false);
1052 new_ti = table_instance_rehash(ti, ti->n_buckets, false);
1054 if (new_ti) {
1055 rcu_assign_pointer(table->ti, new_ti);
1073 struct table_instance *new_ti;
1075 new_ti = table_instance_expand(ti, true);
1076 if (new_ti) {
1077 rcu_assign_pointer(table->ufid_ti, new_ti);