mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
6655360923
Sparse is not happy to see non-static variable without declaration: lib/vsprintf.c:61:6: warning: symbol 'no_hash_pointers' was not declared. Should it be static? Declare respective variable in the sprintf.h. With this, add a comment to discourage its use if no real need. Link: https://lkml.kernel.org/r/20230814163344.17429-3-andriy.shevchenko@linux.intel.com Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Marco Elver <elver@google.com> Reviewed-by: Petr Mladek <pmladek@suse.com> Cc: Alexander Potapenko <glider@google.com> Cc: Dmitry Vyukov <dvyukov@google.com> Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk> Cc: Sergey Senozhatsky <senozhatsky@chromium.org> Cc: Steven Rostedt (Google) <rostedt@goodmis.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
27 lines
1.2 KiB
C
27 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_KERNEL_SPRINTF_H_
|
|
#define _LINUX_KERNEL_SPRINTF_H_
|
|
|
|
#include <linux/compiler_attributes.h>
|
|
#include <linux/types.h>
|
|
|
|
int num_to_str(char *buf, int size, unsigned long long num, unsigned int width);
|
|
|
|
__printf(2, 3) int sprintf(char *buf, const char * fmt, ...);
|
|
__printf(2, 0) int vsprintf(char *buf, const char *, va_list);
|
|
__printf(3, 4) int snprintf(char *buf, size_t size, const char *fmt, ...);
|
|
__printf(3, 0) int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
|
|
__printf(3, 4) int scnprintf(char *buf, size_t size, const char *fmt, ...);
|
|
__printf(3, 0) int vscnprintf(char *buf, size_t size, const char *fmt, va_list args);
|
|
__printf(2, 3) __malloc char *kasprintf(gfp_t gfp, const char *fmt, ...);
|
|
__printf(2, 0) __malloc char *kvasprintf(gfp_t gfp, const char *fmt, va_list args);
|
|
__printf(2, 0) const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list args);
|
|
|
|
__scanf(2, 3) int sscanf(const char *, const char *, ...);
|
|
__scanf(2, 0) int vsscanf(const char *, const char *, va_list);
|
|
|
|
/* These are for specific cases, do not use without real need */
|
|
extern bool no_hash_pointers;
|
|
int no_hash_pointers_enable(char *str);
|
|
|
|
#endif /* _LINUX_KERNEL_SPRINTF_H */
|