[dpdk-dev] [PATCH] ixgbe: Make vector stores unaligned

2014-08-28 Thread Thomas Monjalon
> When writing to the mbuf array for receiving packets, do not assume > 16-byte alignment by using aligned stores. If the pointers are only > 8-byte aligned, the program will crash due to incorrect alignment. > Changing "store" to "storeu" fixes this. > > Signed-off-by: Bruce Richardson Acked-by

[dpdk-dev] [PATCH] ixgbe: Make vector stores unaligned

2014-08-27 Thread Bruce Richardson
When writing to the mbuf array for receiving packets, do not assume 16-byte alignment by using aligned stores. If the pointers are only 8-byte aligned, the program will crash due to incorrect alignment. Changing "store" to "storeu" fixes this. Signed-off-by: Bruce Richardson --- lib/librte_pmd_i