misc: update config script in IKEv2 test
[vpp.git] / src / vnet / l2 / l2_fib.c
index 478f676..d9d6710 100644 (file)
@@ -606,7 +606,7 @@ static clib_error_t *
 l2fib_test_command_fn (vlib_main_t * vm,
                       unformat_input_t * input, vlib_cli_command_t * cmd)
 {
-  u8 mac[6], save_mac[6];
+  u8 mac[8], save_mac[6];
   u32 bd_index = 0;
   u32 sw_if_index = 8;
   u32 is_add = 0;
@@ -1131,13 +1131,13 @@ l2fib_scan (vlib_main_t * vm, f64 start_time, u8 event_only)
        {
          BVT (clib_bihash_bucket) * b =
            BV (clib_bihash_get_bucket) (h, i + 3);
-         CLIB_PREFETCH (b, CLIB_CACHE_LINE_BYTES, LOAD);
+         clib_prefetch_load (b);
          b = BV (clib_bihash_get_bucket) (h, i + 1);
          if (!BV (clib_bihash_bucket_is_empty) (b))
            {
              BVT (clib_bihash_value) * v =
                BV (clib_bihash_get_value) (h, b->offset);
-             CLIB_PREFETCH (v, CLIB_CACHE_LINE_BYTES, LOAD);
+             clib_prefetch_load (v);
            }
        }