diff options
author | Wyes Karny <wyes.karny@amd.com> | 2023-05-23 16:18:15 +0000 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2023-06-01 11:24:50 -0700 |
commit | 41e7a72e1d3ca62560ec1ef1f4529e7a4c4ad8a3 (patch) | |
tree | d3ea3bf946c9f94b62bc6484384fedabbc31296b /include | |
parent | 76edc27eda068fb8222c452d522d4c93bcebe557 (diff) | |
download | linux-stable-41e7a72e1d3ca62560ec1ef1f4529e7a4c4ad8a3.tar.gz linux-stable-41e7a72e1d3ca62560ec1ef1f4529e7a4c4ad8a3.tar.bz2 linux-stable-41e7a72e1d3ca62560ec1ef1f4529e7a4c4ad8a3.zip |
acpi: Replace struct acpi_table_slit 1-element array with flex-array
struct acpi_table_slit is used for copying System Locality Information
Table data from ACPI tables. Here `entry` is a flex array but it was
using ancient 1-element fake flexible array, which has been deprecated.
Replace it with a C99 flexible array.
Signed-off-by: Wyes Karny <wyes.karny@amd.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Fixes: df8fc4e934c1 ("kbuild: Enable -fstrict-flex-arrays=3")
Signed-off-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20230523161815.3083-1-wyes.karny@amd.com
Diffstat (limited to 'include')
-rw-r--r-- | include/acpi/actbl3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/acpi/actbl3.h b/include/acpi/actbl3.h index f51c46f4e3e4..000764ab3985 100644 --- a/include/acpi/actbl3.h +++ b/include/acpi/actbl3.h @@ -86,7 +86,7 @@ struct acpi_table_slic { struct acpi_table_slit { struct acpi_table_header header; /* Common ACPI table header */ u64 locality_count; - u8 entry[1]; /* Real size = localities^2 */ + u8 entry[]; /* Real size = localities^2 */ }; /******************************************************************************* |