Prev: perf: Fix accidentally preprocessed snprintf callback
Next: WARNING: at fs/sysfs/dir.c:451 sysfs_add_one: sysfs: cannot create duplicate filename '/devices/pci0000:00/0000:00:01.0/slot'
From: Eric Paris on 13 Apr 2010 21:20 Patch ef0658f3de484bf9b173639cd47544584e01efa5 changed the precision field from and int to an s8. Problem is that we have code which uses a much larger precision in the kernel. An example would in the audit code where we have: vsnprintf(...,..., " msg='%.1024s'", (char *)data); which causes precision to be too large and end up truncating to nothing. Raising the size of the precision fixes the audit system issue. It also does not affect the alignment of the struct according to pahole and is still approprietely packed. Signed-off-by: Eric Paris <eparis(a)redhat.com> --- lib/vsprintf.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/vsprintf.c b/lib/vsprintf.c index 24112e5..a957d3f 100644 --- a/lib/vsprintf.c +++ b/lib/vsprintf.c @@ -412,7 +412,7 @@ struct printf_spec { s16 field_width; /* width of output field */ u8 flags; /* flags to number() */ u8 base; - s8 precision; /* # of digits/chars */ + s16 precision; /* # of digits/chars */ u8 qualifier; }; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |