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

2016-03-22 Thread Simon Horman
On Tue, Mar 22, 2016 at 10:48:29AM -0700, Ben Pfaff wrote: > On Tue, Mar 08, 2016 at 03:08:23PM +0900, Simon Horman wrote: > > 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

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

2016-03-22 Thread Ben Pfaff
On Tue, Mar 08, 2016 at 03:08:23PM +0900, Simon Horman wrote: > 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 > --- > Found by inspection. Acked-by: Ben

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

2016-03-07 Thread Simon Horman
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 --- Found by inspection. --- ofproto/bond.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/ofproto/bond.c