Home
last modified time | relevance | path

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

/linux-4.1.27/net/openvswitch/
Dflow_table.c373 struct table_instance *new_ti; in table_instance_rehash() local
375 new_ti = table_instance_alloc(n_buckets); in table_instance_rehash()
376 if (!new_ti) in table_instance_rehash()
379 flow_table_copy_flows(ti, new_ti, ufid); in table_instance_rehash()
381 return new_ti; in table_instance_rehash()
386 struct table_instance *old_ti, *new_ti; in ovs_flow_tbl_flush() local
389 new_ti = table_instance_alloc(TBL_MIN_BUCKETS); in ovs_flow_tbl_flush()
390 if (!new_ti) in ovs_flow_tbl_flush()
399 rcu_assign_pointer(flow_table->ti, new_ti); in ovs_flow_tbl_flush()
409 __table_instance_destroy(new_ti); in ovs_flow_tbl_flush()
[all …]
/linux-4.1.27/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()