diff options
| author | Pravin B Shelar <[email protected]> | 2014-05-07 01:41:20 +0000 |
|---|---|---|
| committer | Pravin B Shelar <[email protected]> | 2014-11-06 07:52:34 +0000 |
| commit | 9b996e544a6bc7d201060fdcbdb5d4a9b734aa1b (patch) | |
| tree | 460ba6f2685e4030871b43db2d3183bc1f781747 /net/openvswitch/flow_table.c | |
| parent | openvswitch: Add basic MPLS support to kernel (diff) | |
| download | kernel-9b996e544a6bc7d201060fdcbdb5d4a9b734aa1b.tar.gz kernel-9b996e544a6bc7d201060fdcbdb5d4a9b734aa1b.zip | |
openvswitch: Move table destroy to dp-rcu callback.
Ths simplifies flow-table-destroy API. No need to pass explicit
parameter about context.
Signed-off-by: Pravin B Shelar <[email protected]>
Acked-by: Thomas Graf <[email protected]>
Diffstat (limited to 'net/openvswitch/flow_table.c')
| -rw-r--r-- | net/openvswitch/flow_table.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net/openvswitch/flow_table.c b/net/openvswitch/flow_table.c index cf2d853646f0..90f8b40a350b 100644 --- a/net/openvswitch/flow_table.c +++ b/net/openvswitch/flow_table.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007-2013 Nicira, Inc. + * Copyright (c) 2007-2014 Nicira, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public @@ -250,11 +250,14 @@ skip_flows: __table_instance_destroy(ti); } -void ovs_flow_tbl_destroy(struct flow_table *table, bool deferred) +/* No need for locking this function is called from RCU callback or + * error path. + */ +void ovs_flow_tbl_destroy(struct flow_table *table) { - struct table_instance *ti = ovsl_dereference(table->ti); + struct table_instance *ti = rcu_dereference_raw(table->ti); - table_instance_destroy(ti, deferred); + table_instance_destroy(ti, false); } struct sw_flow *ovs_flow_tbl_dump_next(struct table_instance *ti, |
