Add a trivial bpf filter benchmark.
This commit is contained in:
parent
71d7a7dd88
commit
143a24dad7
@ -26,7 +26,9 @@ SRCS= ${.CURDIR}/bpf_test.c
|
||||
|
||||
CFLAGS+= -g -fno-builtin-abort -I${.CURDIR}/tests
|
||||
|
||||
.if defined(LOG_LEVEL)
|
||||
.if defined(BPF_BENCHMARK)
|
||||
CFLAGS+= -DBPF_BENCHMARK -DLOG_LEVEL=0
|
||||
.elif defined(LOG_LEVEL)
|
||||
CFLAGS+= -DLOG_LEVEL="${LOG_LEVEL}"
|
||||
.endif
|
||||
|
||||
@ -51,10 +53,14 @@ ${TEST}: ${.CURDIR}/tests/${TEST}.h ${SRCS}
|
||||
|
||||
all: ${TEST_CASES}
|
||||
.for TEST in ${TEST_CASES}
|
||||
.if !defined(LOG_LEVEL) || (${LOG_LEVEL} > 0)
|
||||
.if defined(BPF_BENCHMARK) || !defined(LOG_LEVEL) || (${LOG_LEVEL} > 0)
|
||||
@${ECHO} -n "${TEST}: "
|
||||
.endif
|
||||
.if defined(BPF_BENCHMARK)
|
||||
@-time ${.CURDIR}/${TEST}
|
||||
.else
|
||||
@-${.CURDIR}/${TEST}
|
||||
.endif
|
||||
@rm -f ${.CURDIR}/${TEST}
|
||||
.endfor
|
||||
|
||||
|
@ -44,6 +44,12 @@ __FBSDID("$FreeBSD$");
|
||||
#define LOG_LEVEL 1
|
||||
#endif
|
||||
|
||||
#ifdef BPF_BENCHMARK
|
||||
#define BPF_NRUNS 10000000
|
||||
#else
|
||||
#define BPF_NRUNS 1
|
||||
#endif
|
||||
|
||||
static void sig_handler(int);
|
||||
|
||||
static int nins = sizeof(pc) / sizeof(pc[0]);
|
||||
@ -57,7 +63,7 @@ static u_int
|
||||
bpf_compile_and_filter(void)
|
||||
{
|
||||
bpf_jit_filter *filter;
|
||||
u_int ret;
|
||||
u_int i, ret;
|
||||
|
||||
/* Do not use BPF JIT compiler for an empty program */
|
||||
if (nins == 0)
|
||||
@ -72,6 +78,7 @@ bpf_compile_and_filter(void)
|
||||
exit(FATAL);
|
||||
}
|
||||
|
||||
for (i = 0; i < BPF_NRUNS; i++)
|
||||
ret = (*(filter->func))(pkt, wirelen, buflen);
|
||||
|
||||
bpf_destroy_jit_filter(filter);
|
||||
@ -148,6 +155,9 @@ bpf_validate(const struct bpf_insn *f, int len)
|
||||
int
|
||||
main(void)
|
||||
{
|
||||
#if !defined(BPF_JIT_COMPILER)
|
||||
u_int i;
|
||||
#endif
|
||||
u_int ret;
|
||||
int sig;
|
||||
#ifdef BPF_VALIDATE
|
||||
@ -178,6 +188,7 @@ main(void)
|
||||
#ifdef BPF_JIT_COMPILER
|
||||
ret = bpf_compile_and_filter();
|
||||
#else
|
||||
for (i = 0; i < BPF_NRUNS; i++)
|
||||
ret = bpf_filter(pc, pkt, wirelen, buflen);
|
||||
#endif
|
||||
if (ret != expect) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user