Skip to content

Commit d890313

Browse files
committed
575.64.05
1 parent 1893c6c commit d890313

File tree

7 files changed

+20
-15
lines changed

7 files changed

+20
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NVIDIA Linux Open GPU Kernel Module Source
22

33
This is the source release of the NVIDIA Linux open GPU kernel modules,
4-
version 575.64.03.
4+
version 575.64.05.
55

66

77
## How to Build
@@ -17,7 +17,7 @@ as root:
1717

1818
Note that the kernel modules built here must be used with GSP
1919
firmware and user-space NVIDIA GPU driver components from a corresponding
20-
575.64.03 driver release. This can be achieved by installing
20+
575.64.05 driver release. This can be achieved by installing
2121
the NVIDIA GPU driver from the .run file using the `--no-kernel-modules`
2222
option. E.g.,
2323

@@ -185,7 +185,7 @@ table below).
185185
For details on feature support and limitations, see the NVIDIA GPU driver
186186
end user README here:
187187

188-
https://us.download.nvidia.com/XFree86/Linux-x86_64/575.64.03/README/kernel_open.html
188+
https://us.download.nvidia.com/XFree86/Linux-x86_64/575.64.05/README/kernel_open.html
189189

190190
For vGPU support, please refer to the README.vgpu packaged in the vGPU Host
191191
Package for more details.

kernel-open/Kbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ ccflags-y += -I$(src)/common/inc
7979
ccflags-y += -I$(src)
8080
ccflags-y += -Wall $(DEFINES) $(INCLUDES) -Wno-cast-qual -Wno-format-extra-args
8181
ccflags-y += -D__KERNEL__ -DMODULE -DNVRM
82-
ccflags-y += -DNV_VERSION_STRING=\"575.64.03\"
82+
ccflags-y += -DNV_VERSION_STRING=\"575.64.05\"
8383

8484
ifneq ($(SYSSRCHOST1X),)
8585
ccflags-y += -I$(SYSSRCHOST1X)

src/common/inc/nvBldVer.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@
4343
#endif
4444

4545
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS)
46-
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r575/r576_76-213"
47-
#define NV_BUILD_CHANGELIST_NUM (36163547)
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r575/r576_76-215"
47+
#define NV_BUILD_CHANGELIST_NUM (36268588)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r575/r576_76-213"
50-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (36163547)
49+
#define NV_BUILD_NAME "rel/gpu_drv/r575/r576_76-215"
50+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (36268588)
5151

5252
#else /* Windows builds */
53-
#define NV_BUILD_BRANCH_VERSION "r576_76-5"
54-
#define NV_BUILD_CHANGELIST_NUM (36158686)
53+
#define NV_BUILD_BRANCH_VERSION "r576_76-8"
54+
#define NV_BUILD_CHANGELIST_NUM (36246141)
5555
#define NV_BUILD_TYPE "Official"
56-
#define NV_BUILD_NAME "576.88"
57-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (36158686)
56+
#define NV_BUILD_NAME "577.00"
57+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (36246141)
5858
#define NV_BUILD_BRANCH_BASE_VERSION R575
5959
#endif
6060
// End buildmeister python edited section

src/common/inc/nvUnixVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#if defined(NV_LINUX) || defined(NV_BSD) || defined(NV_SUNOS) || defined(NV_VMWARE) || defined(NV_QNX) || defined(NV_INTEGRITY) || \
55
(defined(RMCFG_FEATURE_PLATFORM_GSP) && RMCFG_FEATURE_PLATFORM_GSP == 1)
66

7-
#define NV_VERSION_STRING "575.64.03"
7+
#define NV_VERSION_STRING "575.64.05"
88

99
#else
1010

src/nvidia/src/kernel/gpu/mem_mgr/arch/maxwell/virt_mem_allocator_gm107.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1912,6 +1912,8 @@ dmaUpdateVASpace_GF100
19121912
break;
19131913
}
19141914

1915+
// We shouldn't modify volatility for MMIO page.
1916+
if (!memdescGetFlag(pMemDesc, MEMDESC_FLAGS_MAP_SYSCOH_OVER_BAR1))
19151917
{
19161918
isVolatile |= !!(flags & DMA_UPDATE_VASPACE_FLAGS_VOLATILE);
19171919
isVolatile &= !(flags & DMA_UPDATE_VASPACE_FLAGS_NONVOLATILE);

src/nvidia/src/kernel/gpu/subdevice/subdevice_ctrl_gpu_kernel.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3831,6 +3831,9 @@ subdeviceCtrlCmdThermalSystemExecuteV2_IMPL(Subdevice *pSubdevice,
38313831
RM_API *pRmApi = GPU_GET_PHYSICAL_RMAPI(pGpu);
38323832
NvU32 instructionListSize = pSystemExecuteParams->instructionListSize;
38333833
(void)instructionListSize;
3834+
NV_CHECK_OR_RETURN(LEVEL_ERROR,
3835+
instructionListSize <= NV_ARRAY_ELEMENTS(pSystemExecuteParams->instructionList),
3836+
NV_ERR_INVALID_ARGUMENT);
38343837

38353838
NV_STATUS status = NV_OK;
38363839
NvBool bForwardRmctrl;

version.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
NVIDIA_VERSION = 575.64.03
2-
NVIDIA_NVID_VERSION = 575.64.03
1+
NVIDIA_VERSION = 575.64.05
2+
NVIDIA_NVID_VERSION = 575.64.05
33
NVIDIA_NVID_EXTRA =
44

55
# This file.

0 commit comments

Comments
 (0)