diff options
author | Damjan Marion <damarion@cisco.com> | 2020-08-31 17:18:26 +0200 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2020-08-31 18:46:21 +0000 |
commit | 90d05bc7fb834b5cf25bdd9bb6d92bb35e602494 (patch) | |
tree | e1de27a272922a18677918dbc95f902a3ddb5b20 /src/plugins/af_xdp/input.c | |
parent | f9c8fe41280a48f95216cab43eab8db00ee592e1 (diff) |
vppinfra: convert A_extend_to_B to B_from_A format of vector inlines
Make it shorter and same format when converting to biggor or smaller
types.
Type: refactor
Change-Id: I443d67e18ae65d779b4d9a0dce5406f7d9f0e4ac
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/af_xdp/input.c')
-rw-r--r-- | src/plugins/af_xdp/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/af_xdp/input.c b/src/plugins/af_xdp/input.c index c5b3488d438..e065ee2ab8f 100644 --- a/src/plugins/af_xdp/input.c +++ b/src/plugins/af_xdp/input.c @@ -146,8 +146,8 @@ wrap_around: while (n >= 8) { #ifdef CLIB_HAVE_VEC256 - u64x4 b0 = u32x4_extend_to_u64x4 (*(u32x4u *) (bi + 0)); - u64x4 b1 = u32x4_extend_to_u64x4 (*(u32x4u *) (bi + 4)); + u64x4 b0 = u64x4_from_u32x4 (*(u32x4u *) (bi + 0)); + u64x4 b1 = u64x4_from_u32x4 (*(u32x4u *) (bi + 4)); *(u64x4u *) (fill + 0) = bi2addr (b0); *(u64x4u *) (fill + 4) = bi2addr (b1); #else |