Home
last modified time | relevance | path

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

/linux-4.4.14/net/openvswitch/
Dflow_table.c375 struct table_instance *new_ti; in table_instance_rehash() local
377 new_ti = table_instance_alloc(n_buckets); in table_instance_rehash()
378 if (!new_ti) in table_instance_rehash()
381 flow_table_copy_flows(ti, new_ti, ufid); in table_instance_rehash()
383 return new_ti; in table_instance_rehash()
388 struct table_instance *old_ti, *new_ti; in ovs_flow_tbl_flush() local
391 new_ti = table_instance_alloc(TBL_MIN_BUCKETS); in ovs_flow_tbl_flush()
392 if (!new_ti) in ovs_flow_tbl_flush()
401 rcu_assign_pointer(flow_table->ti, new_ti); in ovs_flow_tbl_flush()
411 __table_instance_destroy(new_ti); in ovs_flow_tbl_flush()
[all …]
/linux-4.4.14/arch/openrisc/kernel/
Dprocess.c215 struct thread_info *new_ti);
221 struct thread_info *new_ti, *old_ti; in __switch_to() local
230 new_ti = new->stack; in __switch_to()
233 current_thread_info_set[smp_processor_id()] = new_ti; in __switch_to()
234 last = (_switch(old_ti, new_ti))->task; in __switch_to()