X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fl2%2Fl2_input_node.c;fp=src%2Fvnet%2Fl2%2Fl2_input_node.c;h=07e8c7473aebabf47a9bb37905558537f2f5258c;hb=6d4b3fd19c45de81026c6a3a468bd9a5b59ebb5f;hp=f8dfa3641b36f022f110d78a00afaf644a188c2c;hpb=e3ce81e56a425eecfc254314f4db1d1774eeba0f;p=vpp.git diff --git a/src/vnet/l2/l2_input_node.c b/src/vnet/l2/l2_input_node.c index f8dfa3641b3..07e8c7473ae 100644 --- a/src/vnet/l2/l2_input_node.c +++ b/src/vnet/l2/l2_input_node.c @@ -251,11 +251,11 @@ l2input_node_inline (vlib_main_t * vm, /* Prefetch next iteration. */ { - /* Prefetch the buffer header and packet for the N+2 loop iteration */ - clib_prefetch_store (b + 4); - clib_prefetch_store (b + 5); - clib_prefetch_store (b + 6); - clib_prefetch_store (b + 7); + /* Prefetch the buffer header for the N+2 loop iteration */ + clib_prefetch_store (b[4]); + clib_prefetch_store (b[5]); + clib_prefetch_store (b[6]); + clib_prefetch_store (b[7]); clib_prefetch_store (b[4]->data); clib_prefetch_store (b[5]->data);