Updating Attributes on task_profiles.json

Adjusting attributes that correspond to the `blkio`(v1)/`io`(v2) controller. The migration of the `blkio` v1 controller to v2 requires renaming it to `io`, therefore we want to update the `File` field to point to `blkio` file and `FileV2` to point to `io` file.

Test: Verified with cuttlefish that this works with the `io` controller migration by cherry-picking aosp/2218645
Bug: 263269364
Bug: 213617178
Change-Id: I0aacfc6d74e3eec61ebb2ce443b04c792392aa9e
This commit is contained in:
Carlos Galo 2022-12-20 18:47:59 +00:00
parent a8ff9a4955
commit 92153fb955

View file

@ -80,17 +80,20 @@
{
"Name": "BfqWeight",
"Controller": "io",
"File": "io.bfq.weight"
"File": "blkio.bfq.weight",
"FileV2": "io.bfq.weight"
},
{
"Name": "CfqGroupIdle",
"Controller": "io",
"File": "io.group_idle"
"File": "blkio.group_idle",
"FileV2": "io.group_idle"
},
{
"Name": "CfqWeight",
"Controller": "io",
"File": "io.weight"
"File": "blkio.weight",
"FileV2": "io.weight"
}
],