3a4475e51d
To group consecutive packets with same destination port in bursts of 4
neon intrinsic data types dp1 and dp2 are calculated such that if
dst_port[]={a,b,c,d,e,f,g,h,i...} dp1 should contain: <a,b,c,d> and
dp2 should contain: <b,c,d,e> in the first iteration. dp1 should
be <e,f,g,h> and dp2 should be <f,g,h,i> in the next iteration.
Whereas the existing code incorrectly calculates dp1 as <d,e,f,g> from
second iteration.
This patch fixes the incorrect ARM NEON instructions on dp1.
Fixes:
|
||
---|---|---|
.. | ||
l3fwd_altivec.h | ||
l3fwd_common.h | ||
l3fwd_em_hlm_neon.h | ||
l3fwd_em_hlm_sse.h | ||
l3fwd_em_hlm.h | ||
l3fwd_em_sequential.h | ||
l3fwd_em.c | ||
l3fwd_em.h | ||
l3fwd_lpm_altivec.h | ||
l3fwd_lpm_neon.h | ||
l3fwd_lpm_sse.h | ||
l3fwd_lpm.c | ||
l3fwd_lpm.h | ||
l3fwd_neon.h | ||
l3fwd_sse.h | ||
l3fwd.h | ||
main.c | ||
Makefile |