libmodprobe: remove dummy parameters for kernel

we consume load_sequential only in libmodprobe, so remove this parameter
before sending them into kernel layer

Bug: 332435366
Test: Built and boot husky targets
Change-Id: I37e63723d3c8d4fd8ca1fda682b344a721b9a637
Signed-off-by: Chungkai Mei <chungkai@google.com>
This commit is contained in:
Chungkai Mei 2024-04-11 08:49:06 +00:00 committed by Juan Yescas
parent bbdc19b7e1
commit 1db2d481ea

View file

@ -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;
}