mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +00:00
more printk changes for 6.15
-----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEESH4wyp42V4tXvYsjUqAMR0iAlPIFAmftIx0ACgkQUqAMR0iA lPJKUxAArJaWC7EXtDtd8u8Rl/CYpIEaMdPd7V+XA5sqdUyjkSJI+jRswonpOsNX Zn9pbGMds1LNBXm1NO9039+2TrPSJFTCGK6OgeCJC17/O31wnnm0LhZiU+JElgfi iQI5fdTnc3sB37bsjkvEUr9HFizRxY2fHHMWZ8ngiLfkKfki4ET+1u/yf7CraRk1 6+LK9mM/WyytP6gYaSlL5YYVYs9fNcR/ND6IQgpfIN15/fOAOXWbMB1jE2iDRzqt MQUD4+DTYQYmeS6jQ4ToZdx3Ql9NwcP2nJnA5fxXeqPFHc/SgRS6KqOPQgQUD4tV N4q6ozLPlzDFeHVHMhPz/PzlSEn0zC1ZX87xXCUAilnkJpbEujcPxf44R/3RHu3d y7kmCRj0RwgHpLIwzLH5POrF4il9/wVlyZFRaYBPMkj09l0WBwYvfMhlnzvAtCP8 pRKqHkjJ1FOWQFJyn98ONqcCmm2pZ8XKW2enikAhISVXcptI/1lIQ6IIpRdTjte1 r60CbiJ7UFL+TrVqsWBuqWQRi5u5HykPkZiCL/YYXzZmrl3zLO+0ti9YzEU8Yrzd K1VAB/1aK/MDrTgOI+VaqlPq79uJBwtbrflgFhFBKAKsqTpBcsZUv9/1KHthnqXV Y84SsY2XpoGtjn58mU6eEc+8lLTOTDVXs+ZZL4/M3maW7ygNiYY= =Biv4 -----END PGP SIGNATURE----- Merge tag 'printk-for-6.15-2' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux Pull more printk updates from Petr Mladek: - Silence warnings about candidates for ‘gnu_print’ format attribute * tag 'printk-for-6.15-2' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux: vsnprintf: Silence false positive GCC warning for va_format() vsnprintf: Drop unused const char fmt * in va_format() vsnprintf: Mark binary printing functions with __printf() attribute tracing: Mark binary printing functions with __printf() attribute seq_file: Mark binary printing functions with __printf() attribute seq_buf: Mark binary printing functions with __printf() attribute
This commit is contained in:
commit
af54a3a151
@ -167,8 +167,8 @@ extern int seq_buf_hex_dump(struct seq_buf *s, const char *prefix_str,
|
||||
const void *buf, size_t len, bool ascii);
|
||||
|
||||
#ifdef CONFIG_BINARY_PRINTF
|
||||
extern int
|
||||
seq_buf_bprintf(struct seq_buf *s, const char *fmt, const u32 *binary);
|
||||
__printf(2, 0)
|
||||
int seq_buf_bprintf(struct seq_buf *s, const char *fmt, const u32 *binary);
|
||||
#endif
|
||||
|
||||
void seq_buf_do_printk(struct seq_buf *s, const char *lvl);
|
||||
|
@ -181,6 +181,7 @@ int seq_open_private(struct file *, const struct seq_operations *, int);
|
||||
int seq_release_private(struct inode *, struct file *);
|
||||
|
||||
#ifdef CONFIG_BINARY_PRINTF
|
||||
__printf(2, 0)
|
||||
void seq_bprintf(struct seq_file *m, const char *f, const u32 *binary);
|
||||
#endif
|
||||
|
||||
|
@ -336,8 +336,8 @@ int __sysfs_match_string(const char * const *array, size_t n, const char *s);
|
||||
#define sysfs_match_string(_a, _s) __sysfs_match_string(_a, ARRAY_SIZE(_a), _s)
|
||||
|
||||
#ifdef CONFIG_BINARY_PRINTF
|
||||
int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args);
|
||||
int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf);
|
||||
__printf(3, 0) int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args);
|
||||
__printf(3, 0) int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf);
|
||||
#endif
|
||||
|
||||
extern ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos,
|
||||
|
@ -72,8 +72,8 @@ static inline int unregister_ftrace_export(struct trace_export *export)
|
||||
static inline void trace_printk_init_buffers(void)
|
||||
{
|
||||
}
|
||||
static inline int trace_array_printk(struct trace_array *tr, unsigned long ip,
|
||||
const char *fmt, ...)
|
||||
static inline __printf(3, 4)
|
||||
int trace_array_printk(struct trace_array *tr, unsigned long ip, const char *fmt, ...)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@ -88,8 +88,8 @@ extern __printf(2, 3)
|
||||
void trace_seq_printf(struct trace_seq *s, const char *fmt, ...);
|
||||
extern __printf(2, 0)
|
||||
void trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args);
|
||||
extern void
|
||||
trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary);
|
||||
extern __printf(2, 0)
|
||||
void trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary);
|
||||
extern int trace_print_seq(struct seq_file *m, struct trace_seq *s);
|
||||
extern int trace_seq_to_user(struct trace_seq *s, char __user *ubuf,
|
||||
int cnt);
|
||||
@ -113,8 +113,8 @@ static inline __printf(2, 3)
|
||||
void trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
|
||||
{
|
||||
}
|
||||
static inline void
|
||||
trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
|
||||
static inline __printf(2, 0)
|
||||
void trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -3341,10 +3341,9 @@ out_nobuffer:
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(trace_vbprintk);
|
||||
|
||||
__printf(3, 0)
|
||||
static int
|
||||
__trace_array_vprintk(struct trace_buffer *buffer,
|
||||
unsigned long ip, const char *fmt, va_list args)
|
||||
static __printf(3, 0)
|
||||
int __trace_array_vprintk(struct trace_buffer *buffer,
|
||||
unsigned long ip, const char *fmt, va_list args)
|
||||
{
|
||||
struct ring_buffer_event *event;
|
||||
int len = 0, size;
|
||||
@ -3394,7 +3393,6 @@ out_nobuffer:
|
||||
return len;
|
||||
}
|
||||
|
||||
__printf(3, 0)
|
||||
int trace_array_vprintk(struct trace_array *tr,
|
||||
unsigned long ip, const char *fmt, va_list args)
|
||||
{
|
||||
@ -3424,7 +3422,6 @@ int trace_array_vprintk(struct trace_array *tr,
|
||||
* Note, trace_array_init_printk() must be called on @tr before this
|
||||
* can be used.
|
||||
*/
|
||||
__printf(3, 0)
|
||||
int trace_array_printk(struct trace_array *tr,
|
||||
unsigned long ip, const char *fmt, ...)
|
||||
{
|
||||
@ -3469,7 +3466,6 @@ int trace_array_init_printk(struct trace_array *tr)
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(trace_array_init_printk);
|
||||
|
||||
__printf(3, 4)
|
||||
int trace_array_printk_buf(struct trace_buffer *buffer,
|
||||
unsigned long ip, const char *fmt, ...)
|
||||
{
|
||||
@ -3485,7 +3481,6 @@ int trace_array_printk_buf(struct trace_buffer *buffer,
|
||||
return ret;
|
||||
}
|
||||
|
||||
__printf(2, 0)
|
||||
int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
|
||||
{
|
||||
return trace_array_vprintk(printk_trace, ip, fmt, args);
|
||||
|
@ -852,13 +852,15 @@ static inline void __init disable_tracing_selftest(const char *reason)
|
||||
|
||||
extern void *head_page(struct trace_array_cpu *data);
|
||||
extern unsigned long long ns2usecs(u64 nsec);
|
||||
extern int
|
||||
trace_vbprintk(unsigned long ip, const char *fmt, va_list args);
|
||||
extern int
|
||||
trace_vprintk(unsigned long ip, const char *fmt, va_list args);
|
||||
extern int
|
||||
trace_array_vprintk(struct trace_array *tr,
|
||||
unsigned long ip, const char *fmt, va_list args);
|
||||
|
||||
__printf(2, 0)
|
||||
int trace_vbprintk(unsigned long ip, const char *fmt, va_list args);
|
||||
__printf(2, 0)
|
||||
int trace_vprintk(unsigned long ip, const char *fmt, va_list args);
|
||||
__printf(3, 0)
|
||||
int trace_array_vprintk(struct trace_array *tr,
|
||||
unsigned long ip, const char *fmt, va_list args);
|
||||
__printf(3, 4)
|
||||
int trace_array_printk_buf(struct trace_buffer *buffer,
|
||||
unsigned long ip, const char *fmt, ...);
|
||||
void trace_printk_seq(struct trace_seq *s);
|
||||
|
@ -1699,8 +1699,12 @@ char *escaped_string(char *buf, char *end, u8 *addr, struct printf_spec spec,
|
||||
return buf;
|
||||
}
|
||||
|
||||
#pragma GCC diagnostic push
|
||||
#ifndef __clang__
|
||||
#pragma GCC diagnostic ignored "-Wsuggest-attribute=format"
|
||||
#endif
|
||||
static char *va_format(char *buf, char *end, struct va_format *va_fmt,
|
||||
struct printf_spec spec, const char *fmt)
|
||||
struct printf_spec spec)
|
||||
{
|
||||
va_list va;
|
||||
|
||||
@ -1713,6 +1717,7 @@ static char *va_format(char *buf, char *end, struct va_format *va_fmt,
|
||||
|
||||
return buf;
|
||||
}
|
||||
#pragma GCC diagnostic pop
|
||||
|
||||
static noinline_for_stack
|
||||
char *uuid_string(char *buf, char *end, const u8 *addr,
|
||||
@ -2466,7 +2471,7 @@ char *pointer(const char *fmt, char *buf, char *end, void *ptr,
|
||||
case 'U':
|
||||
return uuid_string(buf, end, ptr, spec, fmt);
|
||||
case 'V':
|
||||
return va_format(buf, end, ptr, spec, fmt);
|
||||
return va_format(buf, end, ptr, spec);
|
||||
case 'K':
|
||||
return restricted_pointer(buf, end, ptr, spec);
|
||||
case 'N':
|
||||
|
Loading…
x
Reference in New Issue
Block a user