diff options
author | Jens Axboe <axboe@kernel.dk> | 2018-01-18 12:56:00 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-01-18 12:56:00 -0700 |
commit | 6ce15733ec75161a77b9e6a710bef7e7e7ae7843 (patch) | |
tree | 5b3f0e6df473ff6ccc3187060970a04189649625 /block | |
parent | db24cdaa7e8cb022ca5573e49dbe98f6079da044 (diff) | |
parent | 17534c6f2c065ad8e34ff6f013e5afaa90428512 (diff) |
Merge branch 'for-4.16/block' into for-next
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-throttle.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/block/blk-throttle.c b/block/blk-throttle.c index d19f416d6101..f5e773107305 100644 --- a/block/blk-throttle.c +++ b/block/blk-throttle.c @@ -1511,10 +1511,20 @@ static struct cftype throtl_legacy_files[] = { .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 */ }; |