David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 1 | /* FS-Cache statistics |
| 2 | * |
| 3 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 4 | * Written by David Howells (dhowells@redhat.com) |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | */ |
| 11 | |
| 12 | #define FSCACHE_DEBUG_LEVEL THREAD |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/proc_fs.h> |
| 15 | #include <linux/seq_file.h> |
| 16 | #include "internal.h" |
| 17 | |
| 18 | /* |
| 19 | * operation counters |
| 20 | */ |
| 21 | atomic_t fscache_n_op_pend; |
| 22 | atomic_t fscache_n_op_run; |
| 23 | atomic_t fscache_n_op_enqueue; |
| 24 | atomic_t fscache_n_op_requeue; |
| 25 | atomic_t fscache_n_op_deferred_release; |
| 26 | atomic_t fscache_n_op_release; |
| 27 | atomic_t fscache_n_op_gc; |
David Howells | 5753c44 | 2009-11-19 18:11:19 +0000 | [diff] [blame] | 28 | atomic_t fscache_n_op_cancelled; |
David Howells | e3d4d28 | 2009-11-19 18:11:32 +0000 | [diff] [blame] | 29 | atomic_t fscache_n_op_rejected; |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 30 | |
| 31 | atomic_t fscache_n_attr_changed; |
| 32 | atomic_t fscache_n_attr_changed_ok; |
| 33 | atomic_t fscache_n_attr_changed_nobufs; |
| 34 | atomic_t fscache_n_attr_changed_nomem; |
| 35 | atomic_t fscache_n_attr_changed_calls; |
| 36 | |
| 37 | atomic_t fscache_n_allocs; |
| 38 | atomic_t fscache_n_allocs_ok; |
| 39 | atomic_t fscache_n_allocs_wait; |
| 40 | atomic_t fscache_n_allocs_nobufs; |
David Howells | 5753c44 | 2009-11-19 18:11:19 +0000 | [diff] [blame] | 41 | atomic_t fscache_n_allocs_intr; |
David Howells | 60d543c | 2009-11-19 18:11:45 +0000 | [diff] [blame] | 42 | atomic_t fscache_n_allocs_object_dead; |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 43 | atomic_t fscache_n_alloc_ops; |
| 44 | atomic_t fscache_n_alloc_op_waits; |
| 45 | |
| 46 | atomic_t fscache_n_retrievals; |
| 47 | atomic_t fscache_n_retrievals_ok; |
| 48 | atomic_t fscache_n_retrievals_wait; |
| 49 | atomic_t fscache_n_retrievals_nodata; |
| 50 | atomic_t fscache_n_retrievals_nobufs; |
| 51 | atomic_t fscache_n_retrievals_intr; |
| 52 | atomic_t fscache_n_retrievals_nomem; |
David Howells | 60d543c | 2009-11-19 18:11:45 +0000 | [diff] [blame] | 53 | atomic_t fscache_n_retrievals_object_dead; |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 54 | atomic_t fscache_n_retrieval_ops; |
| 55 | atomic_t fscache_n_retrieval_op_waits; |
| 56 | |
| 57 | atomic_t fscache_n_stores; |
| 58 | atomic_t fscache_n_stores_ok; |
| 59 | atomic_t fscache_n_stores_again; |
| 60 | atomic_t fscache_n_stores_nobufs; |
| 61 | atomic_t fscache_n_stores_oom; |
| 62 | atomic_t fscache_n_store_ops; |
| 63 | atomic_t fscache_n_store_calls; |
David Howells | 1bccf51 | 2009-11-19 18:11:25 +0000 | [diff] [blame] | 64 | atomic_t fscache_n_store_pages; |
| 65 | atomic_t fscache_n_store_radix_deletes; |
| 66 | atomic_t fscache_n_store_pages_over_limit; |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 67 | |
David Howells | 201a154 | 2009-11-19 18:11:35 +0000 | [diff] [blame] | 68 | atomic_t fscache_n_store_vmscan_not_storing; |
| 69 | atomic_t fscache_n_store_vmscan_gone; |
| 70 | atomic_t fscache_n_store_vmscan_busy; |
| 71 | atomic_t fscache_n_store_vmscan_cancelled; |
David Howells | 8c209ce | 2012-12-05 13:34:49 +0000 | [diff] [blame] | 72 | atomic_t fscache_n_store_vmscan_wait; |
David Howells | 201a154 | 2009-11-19 18:11:35 +0000 | [diff] [blame] | 73 | |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 74 | atomic_t fscache_n_marks; |
| 75 | atomic_t fscache_n_uncaches; |
| 76 | |
| 77 | atomic_t fscache_n_acquires; |
| 78 | atomic_t fscache_n_acquires_null; |
| 79 | atomic_t fscache_n_acquires_no_cache; |
| 80 | atomic_t fscache_n_acquires_ok; |
| 81 | atomic_t fscache_n_acquires_nobufs; |
| 82 | atomic_t fscache_n_acquires_oom; |
| 83 | |
David Howells | ef778e7 | 2012-12-20 21:52:36 +0000 | [diff] [blame] | 84 | atomic_t fscache_n_invalidates; |
| 85 | atomic_t fscache_n_invalidates_run; |
| 86 | |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 87 | atomic_t fscache_n_updates; |
| 88 | atomic_t fscache_n_updates_null; |
| 89 | atomic_t fscache_n_updates_run; |
| 90 | |
| 91 | atomic_t fscache_n_relinquishes; |
| 92 | atomic_t fscache_n_relinquishes_null; |
| 93 | atomic_t fscache_n_relinquishes_waitcrt; |
David Howells | 2175bb0 | 2009-11-19 18:11:38 +0000 | [diff] [blame] | 94 | atomic_t fscache_n_relinquishes_retire; |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 95 | |
| 96 | atomic_t fscache_n_cookie_index; |
| 97 | atomic_t fscache_n_cookie_data; |
| 98 | atomic_t fscache_n_cookie_special; |
| 99 | |
| 100 | atomic_t fscache_n_object_alloc; |
| 101 | atomic_t fscache_n_object_no_alloc; |
| 102 | atomic_t fscache_n_object_lookups; |
| 103 | atomic_t fscache_n_object_lookups_negative; |
| 104 | atomic_t fscache_n_object_lookups_positive; |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 105 | atomic_t fscache_n_object_lookups_timed_out; |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 106 | atomic_t fscache_n_object_created; |
| 107 | atomic_t fscache_n_object_avail; |
| 108 | atomic_t fscache_n_object_dead; |
| 109 | |
| 110 | atomic_t fscache_n_checkaux_none; |
| 111 | atomic_t fscache_n_checkaux_okay; |
| 112 | atomic_t fscache_n_checkaux_update; |
| 113 | atomic_t fscache_n_checkaux_obsolete; |
| 114 | |
David Howells | 52bd75f | 2009-11-19 18:11:08 +0000 | [diff] [blame] | 115 | atomic_t fscache_n_cop_alloc_object; |
| 116 | atomic_t fscache_n_cop_lookup_object; |
| 117 | atomic_t fscache_n_cop_lookup_complete; |
| 118 | atomic_t fscache_n_cop_grab_object; |
David Howells | ef778e7 | 2012-12-20 21:52:36 +0000 | [diff] [blame] | 119 | atomic_t fscache_n_cop_invalidate_object; |
David Howells | 52bd75f | 2009-11-19 18:11:08 +0000 | [diff] [blame] | 120 | atomic_t fscache_n_cop_update_object; |
| 121 | atomic_t fscache_n_cop_drop_object; |
| 122 | atomic_t fscache_n_cop_put_object; |
| 123 | atomic_t fscache_n_cop_sync_cache; |
| 124 | atomic_t fscache_n_cop_attr_changed; |
| 125 | atomic_t fscache_n_cop_read_or_alloc_page; |
| 126 | atomic_t fscache_n_cop_read_or_alloc_pages; |
| 127 | atomic_t fscache_n_cop_allocate_page; |
| 128 | atomic_t fscache_n_cop_allocate_pages; |
| 129 | atomic_t fscache_n_cop_write_page; |
| 130 | atomic_t fscache_n_cop_uncache_page; |
| 131 | atomic_t fscache_n_cop_dissociate_pages; |
| 132 | |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 133 | /* |
| 134 | * display the general statistics |
| 135 | */ |
| 136 | static int fscache_stats_show(struct seq_file *m, void *v) |
| 137 | { |
| 138 | seq_puts(m, "FS-Cache statistics\n"); |
| 139 | |
| 140 | seq_printf(m, "Cookies: idx=%u dat=%u spc=%u\n", |
| 141 | atomic_read(&fscache_n_cookie_index), |
| 142 | atomic_read(&fscache_n_cookie_data), |
| 143 | atomic_read(&fscache_n_cookie_special)); |
| 144 | |
| 145 | seq_printf(m, "Objects: alc=%u nal=%u avl=%u ded=%u\n", |
| 146 | atomic_read(&fscache_n_object_alloc), |
| 147 | atomic_read(&fscache_n_object_no_alloc), |
| 148 | atomic_read(&fscache_n_object_avail), |
| 149 | atomic_read(&fscache_n_object_dead)); |
| 150 | seq_printf(m, "ChkAux : non=%u ok=%u upd=%u obs=%u\n", |
| 151 | atomic_read(&fscache_n_checkaux_none), |
| 152 | atomic_read(&fscache_n_checkaux_okay), |
| 153 | atomic_read(&fscache_n_checkaux_update), |
| 154 | atomic_read(&fscache_n_checkaux_obsolete)); |
| 155 | |
| 156 | seq_printf(m, "Pages : mrk=%u unc=%u\n", |
| 157 | atomic_read(&fscache_n_marks), |
| 158 | atomic_read(&fscache_n_uncaches)); |
| 159 | |
| 160 | seq_printf(m, "Acquire: n=%u nul=%u noc=%u ok=%u nbf=%u" |
| 161 | " oom=%u\n", |
| 162 | atomic_read(&fscache_n_acquires), |
| 163 | atomic_read(&fscache_n_acquires_null), |
| 164 | atomic_read(&fscache_n_acquires_no_cache), |
| 165 | atomic_read(&fscache_n_acquires_ok), |
| 166 | atomic_read(&fscache_n_acquires_nobufs), |
| 167 | atomic_read(&fscache_n_acquires_oom)); |
| 168 | |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 169 | seq_printf(m, "Lookups: n=%u neg=%u pos=%u crt=%u tmo=%u\n", |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 170 | atomic_read(&fscache_n_object_lookups), |
| 171 | atomic_read(&fscache_n_object_lookups_negative), |
| 172 | atomic_read(&fscache_n_object_lookups_positive), |
David Howells | cc4fc29 | 2010-04-06 14:35:09 -0700 | [diff] [blame] | 173 | atomic_read(&fscache_n_object_created), |
| 174 | atomic_read(&fscache_n_object_lookups_timed_out)); |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 175 | |
David Howells | ef778e7 | 2012-12-20 21:52:36 +0000 | [diff] [blame] | 176 | seq_printf(m, "Invals : n=%u run=%u\n", |
| 177 | atomic_read(&fscache_n_invalidates), |
| 178 | atomic_read(&fscache_n_invalidates_run)); |
| 179 | |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 180 | seq_printf(m, "Updates: n=%u nul=%u run=%u\n", |
| 181 | atomic_read(&fscache_n_updates), |
| 182 | atomic_read(&fscache_n_updates_null), |
| 183 | atomic_read(&fscache_n_updates_run)); |
| 184 | |
David Howells | 2175bb0 | 2009-11-19 18:11:38 +0000 | [diff] [blame] | 185 | seq_printf(m, "Relinqs: n=%u nul=%u wcr=%u rtr=%u\n", |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 186 | atomic_read(&fscache_n_relinquishes), |
| 187 | atomic_read(&fscache_n_relinquishes_null), |
David Howells | 2175bb0 | 2009-11-19 18:11:38 +0000 | [diff] [blame] | 188 | atomic_read(&fscache_n_relinquishes_waitcrt), |
| 189 | atomic_read(&fscache_n_relinquishes_retire)); |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 190 | |
| 191 | seq_printf(m, "AttrChg: n=%u ok=%u nbf=%u oom=%u run=%u\n", |
| 192 | atomic_read(&fscache_n_attr_changed), |
| 193 | atomic_read(&fscache_n_attr_changed_ok), |
| 194 | atomic_read(&fscache_n_attr_changed_nobufs), |
| 195 | atomic_read(&fscache_n_attr_changed_nomem), |
| 196 | atomic_read(&fscache_n_attr_changed_calls)); |
| 197 | |
David Howells | 5753c44 | 2009-11-19 18:11:19 +0000 | [diff] [blame] | 198 | seq_printf(m, "Allocs : n=%u ok=%u wt=%u nbf=%u int=%u\n", |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 199 | atomic_read(&fscache_n_allocs), |
| 200 | atomic_read(&fscache_n_allocs_ok), |
| 201 | atomic_read(&fscache_n_allocs_wait), |
David Howells | 5753c44 | 2009-11-19 18:11:19 +0000 | [diff] [blame] | 202 | atomic_read(&fscache_n_allocs_nobufs), |
| 203 | atomic_read(&fscache_n_allocs_intr)); |
David Howells | 60d543c | 2009-11-19 18:11:45 +0000 | [diff] [blame] | 204 | seq_printf(m, "Allocs : ops=%u owt=%u abt=%u\n", |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 205 | atomic_read(&fscache_n_alloc_ops), |
David Howells | 60d543c | 2009-11-19 18:11:45 +0000 | [diff] [blame] | 206 | atomic_read(&fscache_n_alloc_op_waits), |
| 207 | atomic_read(&fscache_n_allocs_object_dead)); |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 208 | |
| 209 | seq_printf(m, "Retrvls: n=%u ok=%u wt=%u nod=%u nbf=%u" |
| 210 | " int=%u oom=%u\n", |
| 211 | atomic_read(&fscache_n_retrievals), |
| 212 | atomic_read(&fscache_n_retrievals_ok), |
| 213 | atomic_read(&fscache_n_retrievals_wait), |
| 214 | atomic_read(&fscache_n_retrievals_nodata), |
| 215 | atomic_read(&fscache_n_retrievals_nobufs), |
| 216 | atomic_read(&fscache_n_retrievals_intr), |
| 217 | atomic_read(&fscache_n_retrievals_nomem)); |
David Howells | 60d543c | 2009-11-19 18:11:45 +0000 | [diff] [blame] | 218 | seq_printf(m, "Retrvls: ops=%u owt=%u abt=%u\n", |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 219 | atomic_read(&fscache_n_retrieval_ops), |
David Howells | 60d543c | 2009-11-19 18:11:45 +0000 | [diff] [blame] | 220 | atomic_read(&fscache_n_retrieval_op_waits), |
| 221 | atomic_read(&fscache_n_retrievals_object_dead)); |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 222 | |
| 223 | seq_printf(m, "Stores : n=%u ok=%u agn=%u nbf=%u oom=%u\n", |
| 224 | atomic_read(&fscache_n_stores), |
| 225 | atomic_read(&fscache_n_stores_ok), |
| 226 | atomic_read(&fscache_n_stores_again), |
| 227 | atomic_read(&fscache_n_stores_nobufs), |
| 228 | atomic_read(&fscache_n_stores_oom)); |
David Howells | 1bccf51 | 2009-11-19 18:11:25 +0000 | [diff] [blame] | 229 | seq_printf(m, "Stores : ops=%u run=%u pgs=%u rxd=%u olm=%u\n", |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 230 | atomic_read(&fscache_n_store_ops), |
David Howells | 1bccf51 | 2009-11-19 18:11:25 +0000 | [diff] [blame] | 231 | atomic_read(&fscache_n_store_calls), |
| 232 | atomic_read(&fscache_n_store_pages), |
| 233 | atomic_read(&fscache_n_store_radix_deletes), |
| 234 | atomic_read(&fscache_n_store_pages_over_limit)); |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 235 | |
David Howells | 8c209ce | 2012-12-05 13:34:49 +0000 | [diff] [blame] | 236 | seq_printf(m, "VmScan : nos=%u gon=%u bsy=%u can=%u wt=%u\n", |
David Howells | 201a154 | 2009-11-19 18:11:35 +0000 | [diff] [blame] | 237 | atomic_read(&fscache_n_store_vmscan_not_storing), |
| 238 | atomic_read(&fscache_n_store_vmscan_gone), |
| 239 | atomic_read(&fscache_n_store_vmscan_busy), |
David Howells | 8c209ce | 2012-12-05 13:34:49 +0000 | [diff] [blame] | 240 | atomic_read(&fscache_n_store_vmscan_cancelled), |
| 241 | atomic_read(&fscache_n_store_vmscan_wait)); |
David Howells | 201a154 | 2009-11-19 18:11:35 +0000 | [diff] [blame] | 242 | |
David Howells | e3d4d28 | 2009-11-19 18:11:32 +0000 | [diff] [blame] | 243 | seq_printf(m, "Ops : pend=%u run=%u enq=%u can=%u rej=%u\n", |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 244 | atomic_read(&fscache_n_op_pend), |
| 245 | atomic_read(&fscache_n_op_run), |
David Howells | 5753c44 | 2009-11-19 18:11:19 +0000 | [diff] [blame] | 246 | atomic_read(&fscache_n_op_enqueue), |
David Howells | e3d4d28 | 2009-11-19 18:11:32 +0000 | [diff] [blame] | 247 | atomic_read(&fscache_n_op_cancelled), |
| 248 | atomic_read(&fscache_n_op_rejected)); |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 249 | seq_printf(m, "Ops : dfr=%u rel=%u gc=%u\n", |
| 250 | atomic_read(&fscache_n_op_deferred_release), |
| 251 | atomic_read(&fscache_n_op_release), |
| 252 | atomic_read(&fscache_n_op_gc)); |
David Howells | 52bd75f | 2009-11-19 18:11:08 +0000 | [diff] [blame] | 253 | |
| 254 | seq_printf(m, "CacheOp: alo=%d luo=%d luc=%d gro=%d\n", |
| 255 | atomic_read(&fscache_n_cop_alloc_object), |
| 256 | atomic_read(&fscache_n_cop_lookup_object), |
| 257 | atomic_read(&fscache_n_cop_lookup_complete), |
| 258 | atomic_read(&fscache_n_cop_grab_object)); |
David Howells | ef778e7 | 2012-12-20 21:52:36 +0000 | [diff] [blame] | 259 | seq_printf(m, "CacheOp: inv=%d upo=%d dro=%d pto=%d atc=%d syn=%d\n", |
| 260 | atomic_read(&fscache_n_cop_invalidate_object), |
David Howells | 52bd75f | 2009-11-19 18:11:08 +0000 | [diff] [blame] | 261 | atomic_read(&fscache_n_cop_update_object), |
| 262 | atomic_read(&fscache_n_cop_drop_object), |
| 263 | atomic_read(&fscache_n_cop_put_object), |
| 264 | atomic_read(&fscache_n_cop_attr_changed), |
| 265 | atomic_read(&fscache_n_cop_sync_cache)); |
| 266 | seq_printf(m, "CacheOp: rap=%d ras=%d alp=%d als=%d wrp=%d ucp=%d dsp=%d\n", |
| 267 | atomic_read(&fscache_n_cop_read_or_alloc_page), |
| 268 | atomic_read(&fscache_n_cop_read_or_alloc_pages), |
| 269 | atomic_read(&fscache_n_cop_allocate_page), |
| 270 | atomic_read(&fscache_n_cop_allocate_pages), |
| 271 | atomic_read(&fscache_n_cop_write_page), |
| 272 | atomic_read(&fscache_n_cop_uncache_page), |
| 273 | atomic_read(&fscache_n_cop_dissociate_pages)); |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | /* |
| 278 | * open "/proc/fs/fscache/stats" allowing provision of a statistical summary |
| 279 | */ |
| 280 | static int fscache_stats_open(struct inode *inode, struct file *file) |
| 281 | { |
| 282 | return single_open(file, fscache_stats_show, NULL); |
| 283 | } |
| 284 | |
| 285 | const struct file_operations fscache_stats_fops = { |
| 286 | .owner = THIS_MODULE, |
| 287 | .open = fscache_stats_open, |
| 288 | .read = seq_read, |
| 289 | .llseek = seq_lseek, |
Anurup m | ec686c9 | 2013-04-29 15:05:52 -0700 | [diff] [blame] | 290 | .release = single_release, |
David Howells | 7394daa | 2009-04-03 16:42:37 +0100 | [diff] [blame] | 291 | }; |