Home
last modified time | relevance | path

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

/net/openvswitch/
Dflow_table.c609 struct table_instance *new_ti; in table_instance_rehash() local
611 new_ti = table_instance_alloc(n_buckets); in table_instance_rehash()
612 if (!new_ti) in table_instance_rehash()
615 flow_table_copy_flows(ti, new_ti, ufid); in table_instance_rehash()
617 return new_ti; in table_instance_rehash()
622 struct table_instance *old_ti, *new_ti; in ovs_flow_tbl_flush() local
625 new_ti = table_instance_alloc(TBL_MIN_BUCKETS); in ovs_flow_tbl_flush()
626 if (!new_ti) in ovs_flow_tbl_flush()
635 rcu_assign_pointer(flow_table->ti, new_ti); in ovs_flow_tbl_flush()
644 __table_instance_destroy(new_ti); in ovs_flow_tbl_flush()
[all …]
Dmeter.c99 struct dp_meter_instance *new_ti; in dp_meter_instance_realloc() local
102 new_ti = dp_meter_instance_alloc(size); in dp_meter_instance_realloc()
103 if (!new_ti) in dp_meter_instance_realloc()
108 new_ti->dp_meters[i] = ti->dp_meters[i]; in dp_meter_instance_realloc()
110 rcu_assign_pointer(tbl->ti, new_ti); in dp_meter_instance_realloc()