Re: [PATCH 4/6] sysctl: make proc_put_long() use scnprintf

2020-09-01 Thread Christoph Hellwig
On Thu, Aug 13, 2020 at 05:04:09PM -0400, Josef Bacik wrote: > Now that we're passing down a kernel buffer with enough space to account > for an extra NULL terminator, go ahead and use scnprintf() to print out > a long in proc_put_long(). count here includes NULL terminator slot in > the buffer, s

[PATCH 4/6] sysctl: make proc_put_long() use scnprintf

2020-08-13 Thread Josef Bacik
Now that we're passing down a kernel buffer with enough space to account for an extra NULL terminator, go ahead and use scnprintf() to print out a long in proc_put_long(). count here includes NULL terminator slot in the buffer, so we will get the correct behavior we're looking for. Signed-off-by: