Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/src/vgpu/precheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ xpum_result_t vgpuPrecheck(xpum_vgpu_precheck_result_t* result) {
result->sriovStatus = true;
} else {
result->sriovStatus = false;
std::string msg = "SR-IOV is disabled. Please set the related BIOS settings and kernel command line parameters.";
std::string msg = "SR-IOV is disabled or the gpu driver has not loaded properly. Please check the related BIOS settings and kernel command line parameters.";
strncpy(result->sriovMessage, msg.c_str(), msg.size() + 1);
break;
}
Expand All @@ -120,4 +120,4 @@ xpum_result_t vgpuPrecheck(xpum_vgpu_precheck_result_t* result) {
}


}
}