thread: Add a missing include of asan.h

I didn't notice this during testing because invariants-enabled kernels
implicitly include asan.h via kassert.h.

Reported by:	Lexi Winter <lexi@le-Fay.org>
Fixes:		800da341bc ("thread: Simplify sanitizer integration with thread creation")

(cherry picked from commit 7a7063cc54)
This commit is contained in:
Mark Johnston 2024-04-22 13:07:53 -04:00
parent 0db4588bbe
commit 794283f94b

View file

@ -32,6 +32,7 @@
#include "opt_hwpmc_hooks.h"
#include <sys/systm.h>
#include <sys/asan.h>
#include <sys/kernel.h>
#include <sys/lock.h>
#include <sys/msan.h>