From b8fa71021e738a8c77cb17ec0a0897230db1d61b Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 16 Nov 2010 12:23:12 -0800 Subject: [PATCH] ovs-vsctl: Make waiting for ovs-vswitchd to reload work again. Bug introduced in commit e5e12280e "ovs-vsctl: Replicate only tables and columns that are actually needed." Reported-by: Paul Ingram --- utilities/ovs-vsctl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/utilities/ovs-vsctl.c b/utilities/ovs-vsctl.c index ec1cfb3f0..43aeb01fb 100644 --- a/utilities/ovs-vsctl.c +++ b/utilities/ovs-vsctl.c @@ -3042,6 +3042,9 @@ run_prerequisites(struct vsctl_command *commands, size_t n_commands, struct vsctl_command *c; ovsdb_idl_add_table(idl, &ovsrec_table_open_vswitch); + if (wait_for_reload) { + ovsdb_idl_add_column(idl, &ovsrec_open_vswitch_col_cur_cfg); + } for (c = commands; c < &commands[n_commands]; c++) { if (c->syntax->prerequisites) { struct vsctl_context ctx; -- 2.43.0