[ovs-dev] [PATCH] bond: don't re-zero recirc_id when creating bond

Simon Horman simon.horman at netronome.com
Tue Mar 8 06:08:23 UTC 2016


The bond structure is already zeroed as it is allocated
using xzalloc so there is no need to re-zero the recirc_id field.

Signed-off-by: Simon Horman <simon.horman at netronome.com>
---
Found by inspection.
---
 ofproto/bond.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/ofproto/bond.c b/ofproto/bond.c
index c2749e52db94..a3d0c2d6faff 100644
--- a/ofproto/bond.c
+++ b/ofproto/bond.c
@@ -237,8 +237,6 @@ bond_create(const struct bond_settings *s, struct ofproto_dpif *ofproto)
     list_init(&bond->enabled_slaves);
     ovs_mutex_init(&bond->mutex);
     ovs_refcount_init(&bond->ref_cnt);
-
-    bond->recirc_id = 0;
     hmap_init(&bond->pr_rule_ops);
 
     bond_reconfigure(bond, s);
-- 
2.1.4




More information about the dev mailing list