Skip to content

Commit

Permalink
drm: Do not round to megabytes for greater than 1MiB sizes in fdinfo …
Browse files Browse the repository at this point in the history
…stats

It is better not to lose precision and not revert to 1 MiB size
granularity for every size greater than 1 MiB.

Sizes in KiB should not be so troublesome to read (and in fact machine
parsing is I expect the norm here), they align with other api like
/proc/meminfo, and they allow writing tests for the interface without
having to embed drm.ko implementation knowledge into them. (Like knowing
that minimum buffer size one can use for successful verification has to be
1MiB aligned, and on top account for any pre-existing memory utilisation
outside of driver's control.)

But probably even more importantly I think that it is just better to show
the accurate sizes and not arbitrary lose precision for a little bit of a
stretched use case of eyeballing fdinfo text directly.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Rob Clark <robdclark@gmail.com>
Cc: Adrián Larumbe <adrian.larumbe@collabora.com>
Cc: steven.price@arm.com
Reviewed-by: Steven Price <steven.price@arm.com>
Link: https://lore.kernel.org/r/20230927133843.247957-2-tvrtko.ursulin@linux.intel.com
Signed-off-by: Maxime Ripard <mripard@kernel.org>
  • Loading branch information
tursulin authored and mripard committed Nov 6, 2023
1 parent f12af4c commit 5faf6e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/drm_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -913,7 +913,7 @@ static void print_size(struct drm_printer *p, const char *stat,
unsigned u;

for (u = 0; u < ARRAY_SIZE(units) - 1; u++) {
if (sz < SZ_1K)
if (sz == 0 || !IS_ALIGNED(sz, SZ_1K))
break;
sz = div_u64(sz, SZ_1K);
}
Expand Down

0 comments on commit 5faf6e1

Please sign in to comment.