Skip to content
Merged
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
8 changes: 6 additions & 2 deletions update.go
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,12 @@ other options are ignored.
return err
}
}
config.IntelRdt.L3CacheSchema = l3CacheSchema
config.IntelRdt.MemBwSchema = memBwSchema
if l3CacheSchema != "" {
config.IntelRdt.L3CacheSchema = l3CacheSchema
}
if memBwSchema != "" {
config.IntelRdt.MemBwSchema = memBwSchema
}
}

// XXX(kolyshkin@): currently "runc update" is unable to change
Expand Down