Skip to content

Commit

Permalink
[vgpu-manager] do not run nvidia-vgpud as a daemon
Browse files Browse the repository at this point in the history
Starting with vGPU 17.2, nvidia-vgpud is no longer a daemon and is a dependency for nvidia-vgpu-mgr which we start right after.

For more info, see NVBug 4653463

Signed-off-by: Christopher Desiniotis <[email protected]>
  • Loading branch information
cdesiniotis committed May 21, 2024
1 parent 617b57d commit c28b46f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vgpu-manager/rhel8/nvidia-driver
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ _install_driver() {

# Currently _install_driver() takes care of loading nvidia modules. Just need to start necessary vgpu daemons
_load_driver() {
/usr/bin/nvidia-vgpud &
/usr/bin/nvidia-vgpud
/usr/bin/nvidia-vgpu-mgr &

# check nvidia drivers are loaded
Expand Down
2 changes: 1 addition & 1 deletion vgpu-manager/ubuntu20.04/nvidia-driver
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ _install_driver() {

# Currently _install_driver() takes care of loading nvidia modules. Just need to start necessary vgpu daemons
_load_driver() {
/usr/bin/nvidia-vgpud &
/usr/bin/nvidia-vgpud
/usr/bin/nvidia-vgpu-mgr &

# check nvidia drivers are loaded
Expand Down
2 changes: 1 addition & 1 deletion vgpu-manager/ubuntu22.04/nvidia-driver
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ _create_dev_char_directory() {

# Currently _install_driver() takes care of loading nvidia modules. Just need to start necessary vgpu daemons
_load_driver() {
/usr/bin/nvidia-vgpud &
/usr/bin/nvidia-vgpud
/usr/bin/nvidia-vgpu-mgr &

# check nvidia drivers are loaded
Expand Down

0 comments on commit c28b46f

Please sign in to comment.