From: Nathan Lynch Date: Tue, 24 Jun 2025 13:50:44 +0000 (-0500) Subject: lib: packing: Include necessary headers X-Git-Tag: v6.12.43~216 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=18dbc182a97ff1a2a4f65209df6408b12b9c25fb;p=thirdparty%2Fkernel%2Fstable.git lib: packing: Include necessary headers [ Upstream commit 8bd0af3154b2206ce19f8b1410339f7a2a56d0c3 ] packing.h uses ARRAY_SIZE(), BUILD_BUG_ON_MSG(), min(), max(), and sizeof_field() without including the headers where they are defined, potentially causing build failures. Fix this in packing.h and sort the result. Signed-off-by: Nathan Lynch Reviewed-by: Vladimir Oltean Link: https://patch.msgid.link/20250624-packing-includes-v1-1-c23c81fab508@amd.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- diff --git a/include/linux/packing.h b/include/linux/packing.h index 8d6571feb95de..60117401c7ee1 100644 --- a/include/linux/packing.h +++ b/include/linux/packing.h @@ -5,8 +5,12 @@ #ifndef _LINUX_PACKING_H #define _LINUX_PACKING_H -#include +#include #include +#include +#include +#include +#include #define QUIRK_MSB_ON_THE_RIGHT BIT(0) #define QUIRK_LITTLE_ENDIAN BIT(1)