[Mesa-dev] [PATCH 2/2] radeonsi: print the command line to VM fault reports (v2)
Nicolai Hähnle
nhaehnle at gmail.com
Tue Aug 2 13:53:16 UTC 2016
Obviously, the R-b applies to this rebased series as well.
Nicolai
On 01.08.2016 23:55, Marek Olšák wrote:
> From: Marek Olšák <marek.olsak at amd.com>
>
> v2: rebase on top of Brian's commit
> ---
> src/gallium/drivers/radeonsi/si_debug.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/src/gallium/drivers/radeonsi/si_debug.c b/src/gallium/drivers/radeonsi/si_debug.c
> index e030f48..ae11b2c 100644
> --- a/src/gallium/drivers/radeonsi/si_debug.c
> +++ b/src/gallium/drivers/radeonsi/si_debug.c
> @@ -805,6 +805,7 @@ void si_check_vm_faults(struct r600_common_context *ctx,
> struct pipe_screen *screen = sctx->b.b.screen;
> FILE *f;
> uint32_t addr;
> + char cmd_line[4096];
>
> if (!si_vm_fault_occured(sctx, &addr))
> return;
> @@ -814,6 +815,8 @@ void si_check_vm_faults(struct r600_common_context *ctx,
> return;
>
> fprintf(f, "VM fault report.\n\n");
> + if (os_get_command_line(cmd_line, sizeof(cmd_line)))
> + fprintf(f, "Command: %s\n", cmd_line);
> fprintf(f, "Driver vendor: %s\n", screen->get_vendor(screen));
> fprintf(f, "Device vendor: %s\n", screen->get_device_vendor(screen));
> fprintf(f, "Device name: %s\n\n", screen->get_name(screen));
>
More information about the mesa-dev
mailing list