Home
last modified time | relevance | path

Searched refs:new_ti (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.4/net/openvswitch/
Dflow_table.c330 struct table_instance *new_ti; in table_instance_rehash() local
332 new_ti = table_instance_alloc(n_buckets); in table_instance_rehash()
333 if (!new_ti) in table_instance_rehash()
336 flow_table_copy_flows(ti, new_ti, ufid); in table_instance_rehash()
338 return new_ti; in table_instance_rehash()
343 struct table_instance *old_ti, *new_ti; in ovs_flow_tbl_flush() local
346 new_ti = table_instance_alloc(TBL_MIN_BUCKETS); in ovs_flow_tbl_flush()
347 if (!new_ti) in ovs_flow_tbl_flush()
356 rcu_assign_pointer(flow_table->ti, new_ti); in ovs_flow_tbl_flush()
366 __table_instance_destroy(new_ti); in ovs_flow_tbl_flush()
[all …]
/Linux-v5.4/arch/openrisc/kernel/
Dprocess.c232 struct thread_info *new_ti);
239 struct thread_info *new_ti, *old_ti; in __switch_to() local
248 new_ti = new->stack; in __switch_to()
253 current_thread_info_set[smp_processor_id()] = new_ti; in __switch_to()
254 last = (_switch(old_ti, new_ti))->task; in __switch_to()