|
@@ -1510,11 +1510,21 @@ static struct cftype throtl_legacy_files[] = {
|
|
|
.private = (unsigned long)&blkcg_policy_throtl,
|
|
|
.seq_show = blkg_print_stat_bytes,
|
|
|
},
|
|
|
+ {
|
|
|
+ .name = "throttle.io_service_bytes_recursive",
|
|
|
+ .private = (unsigned long)&blkcg_policy_throtl,
|
|
|
+ .seq_show = blkg_print_stat_bytes_recursive,
|
|
|
+ },
|
|
|
{
|
|
|
.name = "throttle.io_serviced",
|
|
|
.private = (unsigned long)&blkcg_policy_throtl,
|
|
|
.seq_show = blkg_print_stat_ios,
|
|
|
},
|
|
|
+ {
|
|
|
+ .name = "throttle.io_serviced_recursive",
|
|
|
+ .private = (unsigned long)&blkcg_policy_throtl,
|
|
|
+ .seq_show = blkg_print_stat_ios_recursive,
|
|
|
+ },
|
|
|
{ } /* terminate */
|
|
|
};
|
|
|
|