Commit 41d4613b authored by Naoya Horiguchi's avatar Naoya Horiguchi Committed by Linus Torvalds

tools/vm/page-types.c: print file offset in hexadecimal

In page list mode (with -l and -L option), virtual address and physical
address are printed in hexadecimal, but file offset is not, which is
confusing, so let's align it.

Link: https://lkml.kernel.org/r/20211004061325.1525902-4-naoya.horiguchi@linux.devSigned-off-by: default avatarNaoya Horiguchi <naoya.horiguchi@nec.com>
Cc: Bin Wang <wangbin224@huawei.com>
Cc: Changbin Du <changbin.du@intel.com>
Cc: Christian Hansen <chansen3@cisco.com>
Cc: Konstantin Khlebnikov <koct9i@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent b76901db
...@@ -390,7 +390,7 @@ static void show_page_range(unsigned long voffset, unsigned long offset, ...@@ -390,7 +390,7 @@ static void show_page_range(unsigned long voffset, unsigned long offset,
if (opt_pid) if (opt_pid)
printf("%lx\t", voff); printf("%lx\t", voff);
if (opt_file) if (opt_file)
printf("%lu\t", voff); printf("%lx\t", voff);
if (opt_list_cgroup) if (opt_list_cgroup)
printf("@%llu\t", (unsigned long long)cgroup0); printf("@%llu\t", (unsigned long long)cgroup0);
if (opt_list_mapcnt) if (opt_list_mapcnt)
...@@ -418,7 +418,7 @@ static void show_page(unsigned long voffset, unsigned long offset, ...@@ -418,7 +418,7 @@ static void show_page(unsigned long voffset, unsigned long offset,
if (opt_pid) if (opt_pid)
printf("%lx\t", voffset); printf("%lx\t", voffset);
if (opt_file) if (opt_file)
printf("%lu\t", voffset); printf("%lx\t", voffset);
if (opt_list_cgroup) if (opt_list_cgroup)
printf("@%llu\t", (unsigned long long)cgroup); printf("@%llu\t", (unsigned long long)cgroup);
if (opt_list_mapcnt) if (opt_list_mapcnt)
......
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