2017-12-19 15:49:03 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2017 Intel Corporation
|
2017-03-20 10:08:28 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rte_mbuf.h>
|
|
|
|
#include "rte_distributor.h"
|
2019-10-22 00:19:45 +00:00
|
|
|
#include "distributor_private.h"
|
2017-03-20 10:08:28 +00:00
|
|
|
|
|
|
|
void
|
2017-03-20 10:08:30 +00:00
|
|
|
find_match_vec(struct rte_distributor *d,
|
2017-03-20 10:08:28 +00:00
|
|
|
uint16_t *data_ptr,
|
|
|
|
uint16_t *output_ptr)
|
|
|
|
{
|
|
|
|
find_match_scalar(d, data_ptr, output_ptr);
|
|
|
|
}
|