Skip to content

Commit 1f2abee

Browse files
515.49.18
1 parent 70259db commit 1f2abee

File tree

6 files changed

+34
-16
lines changed

6 files changed

+34
-16
lines changed

CONTRIBUTING.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
11
Thank you for all the enthusiasm around open-gpu-kernel-modules.
22

3-
For the next while, we are going to focus review on pull requests of functional changes. Please refrain from further cosmetic pull requests until we publish our style guide.
3+
## Non-functional (cosmetic) changes
4+
5+
While we appreciate your enthusiasm, we have decided not to accept non-functional changes such as
6+
non-code typo fixes, comment and language adjustments, whitespace changes, and similar.
7+
8+
Changes going into this codebase incur significant overhead. As such, we want to focus our resources
9+
on executable code improvements for now.
10+
11+
If you have questions, or are unsure about the nature of your desired change, please ask us on the
12+
[Discussion boards](https://github.com/NVIDIA/open-gpu-kernel-modules/discussions)!
13+
14+
## Code style
15+
16+
We currently do not publish a code style guide, as we have many different components coming together.
17+
Please read the existing code in the repository, especially the one surrounding your proposed change,
18+
to get a feel for what you should aim for.
19+
20+
Don't worry too much about it! We are happy to guide you through any neccessary style changes through
21+
code review of your PR.

README.md

Lines changed: 4 additions & 4 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 515.49.15.
4+
version 515.49.18.
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.bin
1919
firmware and user-space NVIDIA GPU driver components from a corresponding
20-
515.49.15 driver release. This can be achieved by installing
20+
515.49.18 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

@@ -167,15 +167,15 @@ for the target kernel.
167167
## Compatible GPUs
168168

169169
The open-gpu-kernel-modules can be used on any Turing or later GPU
170-
(see the table below). However, in the 515.49.15 release,
170+
(see the table below). However, in the 515.49.18 release,
171171
GeForce and Workstation support is still considered alpha-quality.
172172

173173
To enable use of the open kernel modules on GeForce and Workstation GPUs,
174174
set the "NVreg_OpenRmEnableUnsupportedGpus" nvidia.ko kernel module
175175
parameter to 1. For more details, see the NVIDIA GPU driver end user
176176
README here:
177177

178-
https://us.download.nvidia.com/XFree86/Linux-x86_64/515.49.15/README/kernel_open.html
178+
https://us.download.nvidia.com/XFree86/Linux-x86_64/515.49.18/README/kernel_open.html
179179

180180
In the below table, if three IDs are listed, the first is the PCI Device
181181
ID, the second is the PCI Subsystem Vendor ID, and the third is the PCI

kernel-open/Kbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ EXTRA_CFLAGS += -I$(src)/common/inc
7272
EXTRA_CFLAGS += -I$(src)
7373
EXTRA_CFLAGS += -Wall -MD $(DEFINES) $(INCLUDES) -Wno-cast-qual -Wno-error -Wno-format-extra-args
7474
EXTRA_CFLAGS += -D__KERNEL__ -DMODULE -DNVRM
75-
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"515.49.15\"
75+
EXTRA_CFLAGS += -DNV_VERSION_STRING=\"515.49.18\"
7676

7777
EXTRA_CFLAGS += -Wno-unused-function
7878

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/r515/VK516_10-214"
47-
#define NV_BUILD_CHANGELIST_NUM (31748934)
46+
#define NV_BUILD_BRANCH_VERSION "rel/gpu_drv/r515/VK516_10-217"
47+
#define NV_BUILD_CHANGELIST_NUM (31854387)
4848
#define NV_BUILD_TYPE "Official"
49-
#define NV_BUILD_NAME "rel/gpu_drv/r515/VK516_10-214"
50-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (31748934)
49+
#define NV_BUILD_NAME "rel/gpu_drv/r515/VK516_10-217"
50+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (31854387)
5151

5252
#else /* Windows builds */
53-
#define NV_BUILD_BRANCH_VERSION "VK516_10-18"
54-
#define NV_BUILD_CHANGELIST_NUM (31748934)
53+
#define NV_BUILD_BRANCH_VERSION "VK516_10-21"
54+
#define NV_BUILD_CHANGELIST_NUM (31854387)
5555
#define NV_BUILD_TYPE "Official"
56-
#define NV_BUILD_NAME "517.22"
57-
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (31748934)
56+
#define NV_BUILD_NAME "517.55"
57+
#define NV_LAST_OFFICIAL_CHANGELIST_NUM (31854387)
5858
#define NV_BUILD_BRANCH_BASE_VERSION R515
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 "515.49.15"
7+
#define NV_VERSION_STRING "515.49.18"
88

99
#else
1010

version.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
NVIDIA_VERSION = 515.49.15
1+
NVIDIA_VERSION = 515.49.18
22

33
# This file.
44
VERSION_MK_FILE := $(lastword $(MAKEFILE_LIST))

0 commit comments

Comments
 (0)