John Fastabend
e014860e31
net: pack tc_cls_u32_knode struct slighter better
By packing the structure we can remove a few holes as Jamal
suggests.
before:
struct tc_cls_u32_knode {
struct tcf_exts * exts; /* 0 8 */
u8 fshift; /* 8 1 */
/* XXX 3 bytes hole, try to pack */
u32 handle; /* 12 4 */
u32 val; /* 16 4 */
u32 mask; /* 20 4 */
u32 link_handle; /* 24 4 */
/* XXX 4 bytes hole, try to pack */
struct tc_u32_sel * sel; /* 32 8 */
/* size: 40, cachelines: 1, members: 7 */
/* sum members: 33, holes: 2, sum holes: 7 */
/* last cacheline: 40 bytes */
};
after:
struct tc_cls_u32_knode {
struct tcf_exts * exts; /* 0 8 */
struct tc_u32_sel * sel; /* 8 8 */
u32 handle; /* 16 4 */
u32 val; /* 20 4 */
u32 mask; /* 24 4 */
u32 link_handle; /* 28 4 */
u8 fshift; /* 32 1 */
/* size: 40, cachelines: 1, members: 7 */
/* padding: 7 */
/* last cacheline: 40 bytes */
};
Suggested-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2016-02-17 21:44:12 -05:00
..
2016-01-21 00:41:59 +01:00
2016-01-21 12:32:08 -08:00
2016-01-22 11:58:43 -08:00
2016-01-20 08:55:43 +08:00
2016-01-20 18:42:30 -08:00
2016-02-17 16:15:46 -05:00
2016-01-11 12:19:26 -02:00
2016-02-17 21:44:12 -05:00
2016-01-19 15:35:01 -05:00
2016-01-23 18:45:06 -08:00
2016-01-20 18:42:30 -08:00
2016-01-21 17:51:42 +01:00
2016-01-20 17:20:53 -08:00
2016-02-07 14:13:05 -05:00
2016-02-16 20:27:35 -05:00
2016-01-21 18:19:38 -08:00