diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2021-10-26 08:53:59 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2021-10-26 08:53:59 -0700 |
commit | 914f9860f6918d5c7d4c963fd980f3e7466e67e5 (patch) | |
tree | 51530daa916a221d4c62bf32519dfcf75214f7a6 | |
parent | fa29084bed42d903c45c99cebe72f191dc474fe7 (diff) |
495.44
-rw-r--r-- | install-from-cwd.c | 6 | ||||
-rw-r--r-- | nvidia-installer.c | 4 | ||||
-rw-r--r-- | nvidia-installer.h | 1 | ||||
-rw-r--r-- | option_table.h | 7 | ||||
-rw-r--r-- | version.mk | 2 |
5 files changed, 19 insertions, 1 deletions
diff --git a/install-from-cwd.c b/install-from-cwd.c index da65841..45e2795 100644 --- a/install-from-cwd.c +++ b/install-from-cwd.c @@ -69,6 +69,12 @@ static const KernelModuleInfo optional_modules[] = { .disable_option = "no-drm", .option_offset = offsetof(Options, install_drm), }, + { + .module_name = "nvidia-peermem", + .optional_module_dependee = "GPUDirect RDMA p2p memory sharing", + .disable_option = "no-peermem", + .option_offset = offsetof(Options, install_peermem), + }, }; /* diff --git a/nvidia-installer.c b/nvidia-installer.c index ac0a848..e74b6e2 100644 --- a/nvidia-installer.c +++ b/nvidia-installer.c @@ -139,6 +139,7 @@ static Options *load_default_options(void) op->check_for_alternate_installs = TRUE; op->install_uvm = TRUE; op->install_drm = TRUE; + op->install_peermem = TRUE; op->install_compat32_libs = NV_OPTIONAL_BOOL_DEFAULT; op->install_libglx_indirect = NV_OPTIONAL_BOOL_DEFAULT; op->install_libglvnd_libraries = NV_OPTIONAL_BOOL_DEFAULT; @@ -452,6 +453,9 @@ static void parse_commandline(int argc, char *argv[], Options *op) case NO_DRM_OPTION: op->install_drm = FALSE; break; + case NO_PEERMEM_OPTION: + op->install_peermem = FALSE; + break; case NO_CHECK_FOR_ALTERNATE_INSTALLS_OPTION: op->check_for_alternate_installs = FALSE; break; diff --git a/nvidia-installer.h b/nvidia-installer.h index 37d3a66..8747c66 100644 --- a/nvidia-installer.h +++ b/nvidia-installer.h @@ -214,6 +214,7 @@ typedef struct __options { int check_for_alternate_installs; int install_uvm; int install_drm; + int install_peermem; int compat32_files_packaged; int x_files_packaged; int concurrency_level; diff --git a/option_table.h b/option_table.h index a1b636e..b304583 100644 --- a/option_table.h +++ b/option_table.h @@ -98,6 +98,7 @@ enum { NO_CHECK_FOR_ALTERNATE_INSTALLS_OPTION, NO_UVM_OPTION, NO_DRM_OPTION, + NO_PEERMEM_OPTION, INSTALL_COMPAT32_LIBS_OPTION, X_SYSCONFIG_PATH_OPTION, FORCE_LIBGLX_INDIRECT, @@ -613,6 +614,12 @@ static const NVGetoptOption __options[] = { "should only be used to work around failures to build or install the " "nvidia-drm kernel module on systems that do not need these features." }, + { "no-peermem", NO_PEERMEM_OPTION, 0, NULL, + "Do not install the nvidia-peermem kernel module. This kernel module " + "provides support for peer-to-peer memory sharing with Mellanox HCAs " + "(Host Channel Adapters) via GPUDirect RDMA (Remote Direct Memory " + "Access)." }, + { "concurrency-level", 'j', NVGETOPT_INTEGER_ARGUMENT, NULL, "Set the concurrency level for operations such as building the kernel " "module which may be parallelized on SMP systems. By default, this will " @@ -1,4 +1,4 @@ -NVIDIA_VERSION = 495.29.05 +NVIDIA_VERSION = 495.44 # This file. VERSION_MK_FILE := $(lastword $(MAKEFILE_LIST)) |