535.43.02

This commit is contained in:
Andy Ritger
2023-05-30 10:11:36 -07:00
parent 6dd092ddb7
commit eb5c7665a1
1403 changed files with 295367 additions and 86235 deletions

View File

@@ -83,6 +83,13 @@ static NV_STATUS test_tracker_completion(uvm_va_space_t *va_space)
uvm_for_each_pool(pool, gpu->channel_manager) {
uvm_channel_t *channel;
// Skip WLC channels as they are used for secure work launch
if (uvm_channel_pool_is_wlc(pool))
continue;
// Skip LCIC channels as those can't accept pushes
if (uvm_channel_pool_is_lcic(pool))
continue;
uvm_for_each_channel_in_pool(channel, pool) {
uvm_push_t push;
NvU64 semaphore_gpu_va;
@@ -214,6 +221,9 @@ static NV_STATUS test_tracker_basic(uvm_va_space_t *va_space)
uvm_for_each_pool(pool, gpu->channel_manager) {
uvm_channel_t *channel;
// Skip LCIC channels as those can't accept pushes
if (uvm_channel_pool_is_lcic(pool))
continue;
uvm_for_each_channel_in_pool(channel, pool) {
uvm_push_t push;
status = uvm_push_begin_on_channel(channel, &push, "Test push");