diff mbox series

[v6,02/71] xarray: Fix bitmap breakage

Message ID 20220215144241.3812052-2-Liam.Howlett@oracle.com (mailing list archive)
State New
Headers show
Series Introducing the Maple Tree | expand

Commit Message

Liam R. Howlett Feb. 15, 2022, 2:42 p.m. UTC
bitmap header changes broke the testing code for the xarray.  Fix the
issue by directly including the header into the actual xarray header.
This should at least make the error more pronounced in the future.

Signed-off-by: Liam R. Howlett <Liam.Howlett@oracle.com>
---
 include/linux/xarray.h | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/include/linux/xarray.h b/include/linux/xarray.h
index d6d5da6ed735..66e28bc1a023 100644
--- a/include/linux/xarray.h
+++ b/include/linux/xarray.h
@@ -9,6 +9,7 @@ 
  * See Documentation/core-api/xarray.rst for how to use the XArray.
  */
 
+#include <linux/bitmap.h>
 #include <linux/bug.h>
 #include <linux/compiler.h>
 #include <linux/gfp.h>