]> www.infradead.org Git - users/jedix/linux-maple.git/commit
netfs: Mark __nonstring lookup tables
authorKees Cook <kees@kernel.org>
Wed, 16 Apr 2025 22:16:55 +0000 (15:16 -0700)
committerChristian Brauner <brauner@kernel.org>
Thu, 17 Apr 2025 08:13:46 +0000 (10:13 +0200)
commit58db1c3cd0ce857e7210b0a95908900c25c28c3e
tree0cdf61ab039df4d9b9bc82c575e25f2d80fb5d05
parent0a65bc27bd645894175c059397b4916e31955fb2
netfs: Mark __nonstring lookup tables

GCC 15's new -Wunterminated-string-initialization notices that the
character lookup tables "fscache_cache_states" and "fscache_cookie_states"
(which are not used as a C-String) need to be marked as "nonstring":

fs/netfs/fscache_cache.c:375:67: warning: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (6 chars into 5 available) [-Wunterminated-string-initialization]
  375 | static const char fscache_cache_states[NR__FSCACHE_CACHE_STATE] = "-PAEW";
      |                                                                   ^~~~~~~
fs/netfs/fscache_cookie.c:32:69: warning: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (11 chars into 10 available) [-Wunterminated-string-initialization]
   32 | static const char fscache_cookie_states[FSCACHE_COOKIE_STATE__NR] = "-LCAIFUWRD";
      |                                                                     ^~~~~~~~~~~~

Annotate the arrays.

Signed-off-by: Kees Cook <kees@kernel.org>
Link: https://lore.kernel.org/20250416221654.work.028-kees@kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/netfs/fscache_cache.c
fs/netfs/fscache_cookie.c