Skip to content

Commit

Permalink
src/pmdas/linux_proc/help_text.h: wrap long help text for *.fdinfo.dr…
Browse files Browse the repository at this point in the history
…m_shared_* metrics

Solves qa/469 failures.
  • Loading branch information
kmcdonell committed Jul 13, 2024
1 parent a93f77b commit 2724903
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pmdas/linux_proc/help_text.h
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ help_text_t help_text[] = {
{ .name = "fdinfo.drm_memory_cpu", .shorthelp = "Accumulation of the drm-memory-cpu field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "CPU memory which can be used by the GPU to store buffer objects." },
{ .name = "fdinfo.drm_memory_gtt", .shorthelp = "Accumulation of the drm-memory-gtt field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "GTT memory which can be used by the GPU to store buffer objects." },
{ .name = "fdinfo.drm_memory_vram", .shorthelp = "Accumulation of the drm-memory-vram field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "VRAM memory which can be used by the GPU to store buffer objects." },
{ .name = "fdinfo.drm_shared_cpu", .shorthelp = "Accumulation of the drm-shared-cpu field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "CPU memory which can be used by the GPU to store buffer objects, and is shared with another file." },
{ .name = "fdinfo.drm_shared_gtt", .shorthelp = "Accumulation of the drm-shared-gtt field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "GTT memory which can be used by the GPU to store buffer objects, and is shared with another file." },
{ .name = "fdinfo.drm_shared_vram", .shorthelp = "Accumulation of the drm-shared-vram field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "VRAM memory which can be used by the GPU to store buffer objects, and is shared with another file." },
{ .name = "fdinfo.drm_shared_cpu", .shorthelp = "Accumulation of the drm-shared-cpu field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "CPU memory which can be used by the GPU to store buffer objects, and is\nshared with another file." },
{ .name = "fdinfo.drm_shared_gtt", .shorthelp = "Accumulation of the drm-shared-gtt field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "GTT memory which can be used by the GPU to store buffer objects, and is\nshared with another file." },
{ .name = "fdinfo.drm_shared_vram", .shorthelp = "Accumulation of the drm-shared-vram field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "VRAM memory which can be used by the GPU to store buffer objects, and is\nshared with another file." },

{ .name = "fdinfo.amd_evicted_visible_vram", .shorthelp = "Accumulation of the amd-evicted-visible-vram field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "Sum of evicted buffers due to CPU access." },
{ .name = "fdinfo.amd_evicted_vram", .shorthelp = "Accumulation of the amd-evicted-vram field from /proc/<pid>/fdinfo/* file descriptors", .longhelp = "Sum of evicted buffers, includes visible VRAM" },
Expand Down

0 comments on commit 2724903

Please sign in to comment.