Re: [ovs-dev] [PATCH] datapath: Memset executed packet's fields using memset.

2011-02-23 Thread Jesse Gross
On Wed, Feb 23, 2011 at 8:14 PM, Ben Pfaff wrote: > On Wed, Feb 23, 2011 at 8:07 PM, Jesse Gross wrote: >> Currently we explicitly zero out each of the fields in the OVS_CB for >> executed packets.  However, it seems simpler and more robust to just >> memset the whole thing to zero. >> >> Signed-

Re: [ovs-dev] [PATCH] datapath: Memset executed packet's fields using memset.

2011-02-23 Thread Ben Pfaff
On Wed, Feb 23, 2011 at 8:07 PM, Jesse Gross wrote: > Currently we explicitly zero out each of the fields in the OVS_CB for > executed packets.  However, it seems simpler and more robust to just > memset the whole thing to zero. > > Signed-off-by: Jesse Gross Acked-by: Ben Pfaff I don't know w

[ovs-dev] [PATCH] datapath: Memset executed packet's fields using memset.

2011-02-23 Thread Jesse Gross
Currently we explicitly zero out each of the fields in the OVS_CB for executed packets. However, it seems simpler and more robust to just memset the whole thing to zero. Signed-off-by: Jesse Gross --- datapath/datapath.c |8 +--- 1 files changed, 1 insertions(+), 7 deletions(-) diff --