]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
drm: clean up drm_mm debugfs output
authorRussell King <rmk+kernel@arm.linux.org.uk>
Thu, 28 May 2015 09:36:27 +0000 (10:36 +0100)
committerDave Airlie <airlied@redhat.com>
Thu, 28 May 2015 23:17:57 +0000 (09:17 +1000)
commit2f15791c28af9b2114cf3422c48aba6701d91df3
tree5acad588ac3e800825383badd0fa4d02afa35edf
parentc99d1530131b2153dabc40be8dcb5d8d50d700e3
drm: clean up drm_mm debugfs output

The drm_mm debugfs output is difficult to read as two different formats
are used for the addresses:

0x00000080000000-0x0000008000b000: 45056: used
0x8000b000-0x80016000: 45056: free
0x00000080016000-0x0000008001b000: 20480: used
0x8001b000-0x817a1000: 24666112: free
0x000000817a1000-0x000000817a8000: 28672: used
0x000000817a8000-0x00000081ba8000: 4194304: used

Fix this by using %#018llx for all addresses, thus making the output:

0x0000000080000000-0x000000008000b000: 45056: used
0x000000008000b000-0x0000000080016000: 45056: free
0x0000000080016000-0x000000008001b000: 20480: used
0x000000008001b000-0x00000000817a1000: 24666112: free
0x00000000817a1000-0x00000000817a8000: 28672: used
0x00000000817a8000-0x0000000081ba8000: 4194304: used

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_mm.c