Commit 1900da52 authored by Fuqian Huang's avatar Fuqian Huang Committed by Tejun Heo

kernel: cgroup: fix misuse of %x

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: default avatarFuqian Huang <huangfq.daxian@gmail.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 96b9c592
...@@ -64,8 +64,8 @@ static int current_css_set_read(struct seq_file *seq, void *v) ...@@ -64,8 +64,8 @@ static int current_css_set_read(struct seq_file *seq, void *v)
css = cset->subsys[ss->id]; css = cset->subsys[ss->id];
if (!css) if (!css)
continue; continue;
seq_printf(seq, "%2d: %-4s\t- %lx[%d]\n", ss->id, ss->name, seq_printf(seq, "%2d: %-4s\t- %p[%d]\n", ss->id, ss->name,
(unsigned long)css, css->id); css, css->id);
} }
rcu_read_unlock(); rcu_read_unlock();
spin_unlock_irq(&css_set_lock); spin_unlock_irq(&css_set_lock);
...@@ -224,8 +224,8 @@ static int cgroup_subsys_states_read(struct seq_file *seq, void *v) ...@@ -224,8 +224,8 @@ static int cgroup_subsys_states_read(struct seq_file *seq, void *v)
if (css->parent) if (css->parent)
snprintf(pbuf, sizeof(pbuf) - 1, " P=%d", snprintf(pbuf, sizeof(pbuf) - 1, " P=%d",
css->parent->id); css->parent->id);
seq_printf(seq, "%2d: %-4s\t- %lx[%d] %d%s\n", ss->id, ss->name, seq_printf(seq, "%2d: %-4s\t- %p[%d] %d%s\n", ss->id, ss->name,
(unsigned long)css, css->id, css, css->id,
atomic_read(&css->online_cnt), pbuf); atomic_read(&css->online_cnt), pbuf);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment