mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-25 11:04:51 +03:00
gpu: nvgpu: add check for valid engine id
-Check validity of engine-id when iterating through all engines and passing the engine-id as an argument to other function(s). -Skip test test_gv100_dump_engine_status which fails due to this change. Bug 200660469 Change-Id: I64ebb1a0297f605dd3cba7ef73954ff5594828bc Signed-off-by: Shashank Singh <shashsingh@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2424655 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
Alex Waterman
parent
260365bfe1
commit
3aec79d242
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
|
||||
* Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
@@ -42,6 +42,11 @@ void gm20b_dump_engine_status(struct gk20a *g, struct nvgpu_debug_context *o)
|
||||
gk20a_debug_output(o, "--------------------------");
|
||||
|
||||
for (i = 0; i < host_num_engines; i++) {
|
||||
if (!nvgpu_engine_check_valid_id(g, i)) {
|
||||
/* Skip invalid engines */
|
||||
continue;
|
||||
}
|
||||
|
||||
g->ops.engine_status.read_engine_status_info(g, i, &engine_status);
|
||||
|
||||
gk20a_debug_output(o,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
|
||||
* Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
@@ -24,6 +24,7 @@
|
||||
#include <nvgpu/debug.h>
|
||||
#include <nvgpu/gk20a.h>
|
||||
#include <nvgpu/engine_status.h>
|
||||
#include <nvgpu/engines.h>
|
||||
|
||||
#include <nvgpu/hw/gv100/hw_fifo_gv100.h>
|
||||
|
||||
@@ -52,6 +53,11 @@ void gv100_dump_engine_status(struct gk20a *g, struct nvgpu_debug_context *o)
|
||||
host_num_engines = nvgpu_get_litter_value(g, GPU_LIT_HOST_NUM_ENGINES);
|
||||
|
||||
for (i = 0; i < host_num_engines; i++) {
|
||||
if (!nvgpu_engine_check_valid_id(g, i)) {
|
||||
/* Skip invalid engines */
|
||||
continue;
|
||||
}
|
||||
|
||||
g->ops.engine_status.read_engine_status_info(g, i, &engine_status);
|
||||
|
||||
gk20a_debug_output(o, "%s eng %d: ", g->name, i);
|
||||
|
||||
Reference in New Issue
Block a user