Skip to content

Commit

Permalink
Merge pull request #2249 from katiewasnothere/kabaldau/fabric_manager…
Browse files Browse the repository at this point in the history
…_config

Support passing in fabric manager config
  • Loading branch information
katiewasnothere authored Sep 11, 2024
2 parents 3156992 512aaa2 commit e55a82b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion init/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 625,8 @@ void start_services() {
dmesgWarn("nv-fabricmanager not present, skipping ");
} else {
dmesgInfo("start nv-fabricmanager daemon");
pid_t fm_pid = launch(1, &fm_name);
char* command[] = {fm_name, "-c", "/usr/share/nvidia/nvswitch/fabricmanager.cfg"};
pid_t fm_pid = launch(3, command);
if (fm_pid < 0) {
// do not return early if we fail to start this, since it's possible that
// this service doesn't exist on the system, which is a valid scenario
Expand Down

0 comments on commit e55a82b

Please sign in to comment.