]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit - lib/test_hexdump.c
hexdump: make it return number of bytes placed in buffer
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 12 Feb 2015 23:02:29 +0000 (15:02 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 13 Feb 2015 02:54:15 +0000 (18:54 -0800)
commit114fc1afb2de7dec40da137dc2a55cd38fc220f2
tree414c7731a5a4743cbdba6583a1b79f3723ec190d
parent5d909c8d54b114eddb7c50506f03bf7309a9192e
hexdump: make it return number of bytes placed in buffer

This patch makes hexdump return the number of bytes placed in the buffer
excluding trailing NUL.  In the case of overflow it returns the desired
amount of bytes to produce the entire dump.  Thus, it mimics snprintf().

This will be useful for users that would like to repeat with a bigger
buffer.

[akpm@linux-foundation.org: fix printk warning]
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/printk.h
lib/hexdump.c
lib/test-hexdump.c