aboutsummaryrefslogtreecommitdiff
path: root/tests/qtest/fuzz
diff options
context:
space:
mode:
authorAlexander Bulekov <alxndr@bu.edu>2020-07-08 16:01:04 -0400
committerThomas Huth <thuth@redhat.com>2020-07-13 11:40:52 +0200
commit230225eaaa47f23acffef2f21f9bfb1e99b27b31 (patch)
tree76b23bf3fee378a9d66ffe3e7e196b4861bf33c5 /tests/qtest/fuzz
parent0ab6c2384ccae8968517f6883897509cd5f51a40 (diff)
downloadqemu-230225eaaa47f23acffef2f21f9bfb1e99b27b31.zip
qemu-230225eaaa47f23acffef2f21f9bfb1e99b27b31.tar.gz
qemu-230225eaaa47f23acffef2f21f9bfb1e99b27b31.tar.bz2
fuzz: add missing header for rcu_enable_atfork
In 45222b9a90, I fixed a broken check for rcu_enable_atfork introduced in d6919e4cb6. I added a call to rcu_enable_atfork after the call to qemu_init in fuzz.c, but forgot to include the corresponding header, breaking --enable-fuzzing --enable-werror builds. Fixes: 45222b9a90 ("fuzz: fix broken qtest check at rcu_disable_atfork") Signed-off-by: Alexander Bulekov <alxndr@bu.edu> Message-Id: <20200708200104.21978-3-alxndr@bu.edu> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/fuzz')
-rw-r--r--tests/qtest/fuzz/fuzz.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/qtest/fuzz/fuzz.c b/tests/qtest/fuzz/fuzz.c
index a36d903..0b66e43 100644
--- a/tests/qtest/fuzz/fuzz.c
+++ b/tests/qtest/fuzz/fuzz.c
@@ -19,6 +19,7 @@
#include "sysemu/runstate.h"
#include "sysemu/sysemu.h"
#include "qemu/main-loop.h"
+#include "qemu/rcu.h"
#include "tests/qtest/libqtest.h"
#include "tests/qtest/libqos/qgraph.h"
#include "fuzz.h"