]> www.infradead.org Git - users/willy/xarray.git/commitdiff
kunit: Add gnu_printf specifiers
authorDavid Gow <davidgow@google.com>
Thu, 13 May 2021 20:03:50 +0000 (13:03 -0700)
committerShuah Khan <skhan@linuxfoundation.org>
Wed, 23 Jun 2021 23:06:04 +0000 (17:06 -0600)
Some KUnit functions use variable arguments to implement a printf-like
format string. Use the __printf() attribute to let the compiler warn if
invalid format strings are passed in.

If the kernel is build with W=1, it complained about the lack of these
specifiers, e.g.:
../lib/kunit/test.c:72:2: warning: function ‘kunit_log_append’ might be a candidate for ‘gnu_printf’ format attribute [-Wsuggest-attribute=format]

Signed-off-by: David Gow <davidgow@google.com>
Reviewed-by: Daniel Latypov <dlatypov@google.com>
Acked-by: Brendan Higgins <brendanhiggins@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
include/kunit/test.h
lib/kunit/string-stream.h

index b68c61348121886907d959d15f289e5621bcef38..512bfb5fe24f513937e9729b362e0eba10254dd2 100644 (file)
@@ -610,7 +610,7 @@ static inline void *kunit_kzalloc(struct kunit *test, size_t size, gfp_t gfp)
 
 void kunit_cleanup(struct kunit *test);
 
-void kunit_log_append(char *log, const char *fmt, ...);
+void __printf(2, 3) kunit_log_append(char *log, const char *fmt, ...);
 
 /*
  * printk and log to per-test or per-suite log buffer.  Logging only done
index fe98a00b75a9c9148f3e129daa0d795b3f457528..5e94b623454fe780df070845b0c5f69159621d6b 100644 (file)
@@ -35,9 +35,9 @@ struct string_stream *alloc_string_stream(struct kunit *test, gfp_t gfp);
 int __printf(2, 3) string_stream_add(struct string_stream *stream,
                                     const char *fmt, ...);
 
-int string_stream_vadd(struct string_stream *stream,
-                      const char *fmt,
-                      va_list args);
+int __printf(2, 0) string_stream_vadd(struct string_stream *stream,
+                                     const char *fmt,
+                                     va_list args);
 
 char *string_stream_get_string(struct string_stream *stream);