1 /* SPDX-License-Identifier: GPL-2.0 1 /* SPDX-License-Identifier: GPL-2.0 2 * 2 * 3 * Legacy blkg rwstat helpers enabled by CONFI 3 * Legacy blkg rwstat helpers enabled by CONFIG_BLK_CGROUP_RWSTAT. 4 * Do not use in new code. 4 * Do not use in new code. 5 */ 5 */ 6 #include "blk-cgroup-rwstat.h" 6 #include "blk-cgroup-rwstat.h" 7 7 8 int blkg_rwstat_init(struct blkg_rwstat *rwsta 8 int blkg_rwstat_init(struct blkg_rwstat *rwstat, gfp_t gfp) 9 { 9 { 10 int i, ret; 10 int i, ret; 11 11 12 ret = percpu_counter_init_many(rwstat- 12 ret = percpu_counter_init_many(rwstat->cpu_cnt, 0, gfp, BLKG_RWSTAT_NR); 13 if (ret) 13 if (ret) 14 return ret; 14 return ret; 15 15 16 for (i = 0; i < BLKG_RWSTAT_NR; i++) 16 for (i = 0; i < BLKG_RWSTAT_NR; i++) 17 atomic64_set(&rwstat->aux_cnt[ 17 atomic64_set(&rwstat->aux_cnt[i], 0); 18 return 0; 18 return 0; 19 } 19 } 20 EXPORT_SYMBOL_GPL(blkg_rwstat_init); 20 EXPORT_SYMBOL_GPL(blkg_rwstat_init); 21 21 22 void blkg_rwstat_exit(struct blkg_rwstat *rwst 22 void blkg_rwstat_exit(struct blkg_rwstat *rwstat) 23 { 23 { 24 percpu_counter_destroy_many(rwstat->cp 24 percpu_counter_destroy_many(rwstat->cpu_cnt, BLKG_RWSTAT_NR); 25 } 25 } 26 EXPORT_SYMBOL_GPL(blkg_rwstat_exit); 26 EXPORT_SYMBOL_GPL(blkg_rwstat_exit); 27 27 28 /** 28 /** 29 * __blkg_prfill_rwstat - prfill helper for a 29 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat 30 * @sf: seq_file to print to 30 * @sf: seq_file to print to 31 * @pd: policy private data of interest 31 * @pd: policy private data of interest 32 * @rwstat: rwstat to print 32 * @rwstat: rwstat to print 33 * 33 * 34 * Print @rwstat to @sf for the device assocai 34 * Print @rwstat to @sf for the device assocaited with @pd. 35 */ 35 */ 36 u64 __blkg_prfill_rwstat(struct seq_file *sf, 36 u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd, 37 const struct blkg_rws 37 const struct blkg_rwstat_sample *rwstat) 38 { 38 { 39 static const char *rwstr[] = { 39 static const char *rwstr[] = { 40 [BLKG_RWSTAT_READ] = "Rea 40 [BLKG_RWSTAT_READ] = "Read", 41 [BLKG_RWSTAT_WRITE] = "Wri 41 [BLKG_RWSTAT_WRITE] = "Write", 42 [BLKG_RWSTAT_SYNC] = "Syn 42 [BLKG_RWSTAT_SYNC] = "Sync", 43 [BLKG_RWSTAT_ASYNC] = "Asy 43 [BLKG_RWSTAT_ASYNC] = "Async", 44 [BLKG_RWSTAT_DISCARD] = "Dis 44 [BLKG_RWSTAT_DISCARD] = "Discard", 45 }; 45 }; 46 const char *dname = blkg_dev_name(pd-> 46 const char *dname = blkg_dev_name(pd->blkg); 47 u64 v; 47 u64 v; 48 int i; 48 int i; 49 49 50 if (!dname) 50 if (!dname) 51 return 0; 51 return 0; 52 52 53 for (i = 0; i < BLKG_RWSTAT_NR; i++) 53 for (i = 0; i < BLKG_RWSTAT_NR; i++) 54 seq_printf(sf, "%s %s %llu\n", 54 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i], 55 rwstat->cnt[i]); 55 rwstat->cnt[i]); 56 56 57 v = rwstat->cnt[BLKG_RWSTAT_READ] + 57 v = rwstat->cnt[BLKG_RWSTAT_READ] + 58 rwstat->cnt[BLKG_RWSTAT_WRITE] 58 rwstat->cnt[BLKG_RWSTAT_WRITE] + 59 rwstat->cnt[BLKG_RWSTAT_DISCAR 59 rwstat->cnt[BLKG_RWSTAT_DISCARD]; 60 seq_printf(sf, "%s Total %llu\n", dnam 60 seq_printf(sf, "%s Total %llu\n", dname, v); 61 return v; 61 return v; 62 } 62 } 63 EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat); 63 EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat); 64 64 65 /** 65 /** 66 * blkg_prfill_rwstat - prfill callback for bl 66 * blkg_prfill_rwstat - prfill callback for blkg_rwstat 67 * @sf: seq_file to print to 67 * @sf: seq_file to print to 68 * @pd: policy private data of interest 68 * @pd: policy private data of interest 69 * @off: offset to the blkg_rwstat in @pd 69 * @off: offset to the blkg_rwstat in @pd 70 * 70 * 71 * prfill callback for printing a blkg_rwstat. 71 * prfill callback for printing a blkg_rwstat. 72 */ 72 */ 73 u64 blkg_prfill_rwstat(struct seq_file *sf, st 73 u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd, 74 int off) 74 int off) 75 { 75 { 76 struct blkg_rwstat_sample rwstat = { } 76 struct blkg_rwstat_sample rwstat = { }; 77 77 78 blkg_rwstat_read((void *)pd + off, &rw 78 blkg_rwstat_read((void *)pd + off, &rwstat); 79 return __blkg_prfill_rwstat(sf, pd, &r 79 return __blkg_prfill_rwstat(sf, pd, &rwstat); 80 } 80 } 81 EXPORT_SYMBOL_GPL(blkg_prfill_rwstat); 81 EXPORT_SYMBOL_GPL(blkg_prfill_rwstat); 82 82 83 /** 83 /** 84 * blkg_rwstat_recursive_sum - collect hierarc 84 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat 85 * @blkg: blkg of interest 85 * @blkg: blkg of interest 86 * @pol: blkcg_policy which contains the blkg_ 86 * @pol: blkcg_policy which contains the blkg_rwstat 87 * @off: offset to the blkg_rwstat in blkg_pol 87 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg 88 * @sum: blkg_rwstat_sample structure containi 88 * @sum: blkg_rwstat_sample structure containing the results 89 * 89 * 90 * Collect the blkg_rwstat specified by @blkg, 90 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its 91 * online descendants and their aux counts. T 91 * online descendants and their aux counts. The caller must be holding the 92 * queue lock for online tests. 92 * queue lock for online tests. 93 * 93 * 94 * If @pol is NULL, blkg_rwstat is at @off byt 94 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it 95 * is at @off bytes into @blkg's blkg_policy_d 95 * is at @off bytes into @blkg's blkg_policy_data of the policy. 96 */ 96 */ 97 void blkg_rwstat_recursive_sum(struct blkcg_gq 97 void blkg_rwstat_recursive_sum(struct blkcg_gq *blkg, struct blkcg_policy *pol, 98 int off, struct blkg_rwstat_sa 98 int off, struct blkg_rwstat_sample *sum) 99 { 99 { 100 struct blkcg_gq *pos_blkg; 100 struct blkcg_gq *pos_blkg; 101 struct cgroup_subsys_state *pos_css; 101 struct cgroup_subsys_state *pos_css; 102 unsigned int i; 102 unsigned int i; 103 103 104 lockdep_assert_held(&blkg->q->queue_lo 104 lockdep_assert_held(&blkg->q->queue_lock); 105 105 106 memset(sum, 0, sizeof(*sum)); 106 memset(sum, 0, sizeof(*sum)); 107 rcu_read_lock(); 107 rcu_read_lock(); 108 blkg_for_each_descendant_pre(pos_blkg, 108 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) { 109 struct blkg_rwstat *rwstat; 109 struct blkg_rwstat *rwstat; 110 110 111 if (!pos_blkg->online) 111 if (!pos_blkg->online) 112 continue; 112 continue; 113 113 114 if (pol) 114 if (pol) 115 rwstat = (void *)blkg_ 115 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off; 116 else 116 else 117 rwstat = (void *)pos_b 117 rwstat = (void *)pos_blkg + off; 118 118 119 for (i = 0; i < BLKG_RWSTAT_NR 119 for (i = 0; i < BLKG_RWSTAT_NR; i++) 120 sum->cnt[i] += blkg_rw 120 sum->cnt[i] += blkg_rwstat_read_counter(rwstat, i); 121 } 121 } 122 rcu_read_unlock(); 122 rcu_read_unlock(); 123 } 123 } 124 EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum); 124 EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum); 125 125
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.