Skip to content

Commit

Permalink
blkcg: reduce stack usage of blkg_rwstat_recursive_sum()
Browse files Browse the repository at this point in the history
The recent percpu conversion of blkg_rwstat triggered the following
warning in certain configurations.

 block/blk-cgroup.c:654:1: warning: the frame size of 1360 bytes is larger than 1024 bytes

This is because blkg_rwstat now contains four percpu_counter which can
be pretty big depending on debug options although it shouldn't be a
problem in production configs.  This patch removes one of the two
local blkg_rwstat variables used by blkg_rwstat_recursive_sum() to
reduce stack usage.

Signed-off-by: Tejun Heo <[email protected]>
Cc: Vivek Goyal <[email protected]>
Reported-by: kbuild test robot <[email protected]>
Link: http://article.gmane.org/gmane.linux.kernel.cgroups/13835
Signed-off-by: Jens Axboe <[email protected]>
  • Loading branch information
htejun authored and axboe committed Aug 18, 2015
1 parent 702747c commit 3a7faea
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions block/blk-cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,

rcu_read_lock();
blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
struct blkg_rwstat *rwstat, tmp;
struct blkg_rwstat *rwstat;

if (!pos_blkg->online)
continue;
Expand All @@ -754,12 +754,10 @@ struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
else
rwstat = (void *)pos_blkg + off;

tmp = blkg_rwstat_read(rwstat);

for (i = 0; i < BLKG_RWSTAT_NR; i++)
atomic64_add(atomic64_read(&tmp.aux_cnt[i]) +
atomic64_read(&rwstat->aux_cnt[i]),
&sum.aux_cnt[i]);
atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
&sum.aux_cnt[i]);
}
rcu_read_unlock();

Expand Down

0 comments on commit 3a7faea

Please sign in to comment.