Merge "libmodprobe: remove dummy parameters for kernel" into main
This commit is contained in:
commit
ef3679a78a
1 changed files with 5 additions and 1 deletions
|
@ -484,7 +484,11 @@ bool Modprobe::LoadModulesParallel(int num_threads) {
|
|||
return false;
|
||||
}
|
||||
|
||||
if (module_options_[cnd_last].find("load_sequential=1") != std::string::npos) {
|
||||
std::string str = "load_sequential=1";
|
||||
auto it = module_options_[cnd_last].find(str);
|
||||
if (it != std::string::npos) {
|
||||
module_options_[cnd_last].erase(it, it + str.size());
|
||||
|
||||
if (!LoadWithAliases(cnd_last, true)) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue