Re: [PATCH v2 02/06] kernel: cgroup: fix misuse of %x

2019-05-06 Thread Tejun Heo
On Sun, Apr 21, 2019 at 07:47:27PM +0800, Fuqian Huang wrote: > Pointers should be printed with %p or %px rather than > cast to unsigned long type and printed with %lx. > Change %lx to %p to print the pointers. > > Signed-off-by: Fuqian Huang Applied to cgroup/for-5.2. Thanks. -- tejun

[PATCH v2 02/06] kernel: cgroup: fix misuse of %x

2019-04-21 Thread Fuqian Huang
Pointers should be printed with %p or %px rather than cast to unsigned long type and printed with %lx. Change %lx to %p to print the pointers. Signed-off-by: Fuqian Huang --- kernel/cgroup/debug.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/kernel/cgroup/debug.c b