Re: [ovs-dev] [PATCH 08/13] dpif-netdev: Reorder elements in dp_netdev_rxq structure.

2017-11-03 Thread Ben Pfaff
On Fri, Sep 08, 2017 at 06:59:20PM +0100, Bhanuprakash Bodireddy wrote: > By reordering elements in dp_netdev_rxq structure, pad bytes and a hole > can be removed. > > Before: structure size: 104, sum holes: 1, sum padbytes:4, cachelines:2 > After : structure size: 96, sum holes: 0, sum

[ovs-dev] [PATCH 08/13] dpif-netdev: Reorder elements in dp_netdev_rxq structure.

2017-09-08 Thread Bhanuprakash Bodireddy
By reordering elements in dp_netdev_rxq structure, pad bytes and a hole can be removed. Before: structure size: 104, sum holes: 1, sum padbytes:4, cachelines:2 After : structure size: 96, sum holes: 0, sum padbytes:0, cachelines:2 Signed-off-by: Bhanuprakash Bodireddy