blob: 27b70d8a359cd6b9816453626c0fdc6e80789f12 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/s390/appldata/appldata_base.c
3 *
4 * Base infrastructure for Linux-z/VM Monitor Stream, Stage 1.
5 * Exports appldata_register_ops() and appldata_unregister_ops() for the
6 * data gathering modules.
7 *
Gerald Schaeferd3ae9422008-07-14 09:59:34 +02008 * Copyright IBM Corp. 2003, 2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
Gerald Schaefer5b5dd212006-06-29 15:08:35 +020010 * Author: Gerald Schaefer <gerald.schaefer@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Gerald Schaefere7534b02008-12-25 13:39:41 +010013#define KMSG_COMPONENT "appldata"
14#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/init.h>
18#include <linux/slab.h>
19#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/interrupt.h>
21#include <linux/proc_fs.h>
Heiko Carstens2dcea572006-09-29 01:58:41 -070022#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/swap.h>
24#include <linux/pagemap.h>
25#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/notifier.h>
27#include <linux/cpu.h>
Gerald Schaeferf26d5832005-06-04 15:43:33 -070028#include <linux/workqueue.h>
Gerald Schaefer1f38d612006-09-20 15:59:26 +020029#include <asm/appldata.h>
30#include <asm/timer.h>
31#include <asm/uaccess.h>
32#include <asm/io.h>
33#include <asm/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include "appldata.h"
36
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define APPLDATA_CPU_INTERVAL 10000 /* default (CPU) time for
39 sampling interval in
40 milliseconds */
41
42#define TOD_MICRO 0x01000 /* nr. of TOD clock units
43 for 1 microsecond */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * /proc entries (sysctl)
46 */
47static const char appldata_proc_name[APPLDATA_PROC_NAME_LENGTH] = "appldata";
48static int appldata_timer_handler(ctl_table *ctl, int write, struct file *filp,
49 void __user *buffer, size_t *lenp, loff_t *ppos);
50static int appldata_interval_handler(ctl_table *ctl, int write,
51 struct file *filp,
52 void __user *buffer,
53 size_t *lenp, loff_t *ppos);
54
55static struct ctl_table_header *appldata_sysctl_header;
56static struct ctl_table appldata_table[] = {
57 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 .procname = "timer",
59 .mode = S_IRUGO | S_IWUSR,
60 .proc_handler = &appldata_timer_handler,
61 },
62 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .procname = "interval",
64 .mode = S_IRUGO | S_IWUSR,
65 .proc_handler = &appldata_interval_handler,
66 },
Heiko Carstens37e3a6a2007-11-20 11:13:34 +010067 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
70static struct ctl_table appldata_dir_table[] = {
71 {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 .procname = appldata_proc_name,
73 .maxlen = 0,
74 .mode = S_IRUGO | S_IXUGO,
75 .child = appldata_table,
76 },
Heiko Carstens37e3a6a2007-11-20 11:13:34 +010077 { },
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
80/*
81 * Timer
82 */
Heiko Carstens2b67fc42007-02-05 21:16:47 +010083static DEFINE_PER_CPU(struct vtimer_list, appldata_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static atomic_t appldata_expire_count = ATOMIC_INIT(0);
85
86static DEFINE_SPINLOCK(appldata_timer_lock);
87static int appldata_interval = APPLDATA_CPU_INTERVAL;
88static int appldata_timer_active;
89
90/*
Gerald Schaeferf26d5832005-06-04 15:43:33 -070091 * Work queue
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 */
Gerald Schaeferf26d5832005-06-04 15:43:33 -070093static struct workqueue_struct *appldata_wq;
David Howells6d5aefb2006-12-05 19:36:26 +000094static void appldata_work_fn(struct work_struct *work);
95static DECLARE_WORK(appldata_work, appldata_work_fn);
Gerald Schaeferf26d5832005-06-04 15:43:33 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
99 * Ops list
100 */
101static DEFINE_SPINLOCK(appldata_ops_lock);
102static LIST_HEAD(appldata_ops_list);
103
104
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700105/*************************** timer, work, DIAG *******************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * appldata_timer_function()
108 *
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700109 * schedule work and reschedule timer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
Heiko Carstens9d0a57c2006-10-11 15:31:26 +0200111static void appldata_timer_function(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 if (atomic_dec_and_test(&appldata_expire_count)) {
114 atomic_set(&appldata_expire_count, num_online_cpus());
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700115 queue_work(appldata_wq, (struct work_struct *) data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
117}
118
119/*
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700120 * appldata_work_fn()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 *
122 * call data gathering function for each (active) module
123 */
David Howells6d5aefb2006-12-05 19:36:26 +0000124static void appldata_work_fn(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 struct list_head *lh;
127 struct appldata_ops *ops;
128 int i;
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 i = 0;
Gerald Schaefer17605372008-05-30 10:03:28 +0200131 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 spin_lock(&appldata_ops_lock);
133 list_for_each(lh, &appldata_ops_list) {
134 ops = list_entry(lh, struct appldata_ops, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 if (ops->active == 1) {
136 ops->callback(ops->data);
137 }
138 }
139 spin_unlock(&appldata_ops_lock);
Gerald Schaefer17605372008-05-30 10:03:28 +0200140 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143/*
144 * appldata_diag()
145 *
146 * prepare parameter list, issue DIAG 0xDC
147 */
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200148int appldata_diag(char record_nr, u16 function, unsigned long buffer,
149 u16 length, char *mod_lvl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Gerald Schaefer1f38d612006-09-20 15:59:26 +0200151 struct appldata_product_id id = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 .prod_nr = {0xD3, 0xC9, 0xD5, 0xE4,
Gerald Schaefer1f38d612006-09-20 15:59:26 +0200153 0xE7, 0xD2, 0xD9}, /* "LINUXKR" */
154 .prod_fn = 0xD5D3, /* "NL" */
Gerald Schaefer1f38d612006-09-20 15:59:26 +0200155 .version_nr = 0xF2F6, /* "26" */
156 .release_nr = 0xF0F1, /* "01" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 };
158
Gerald Schaefer925afbd2006-09-28 16:55:23 +0200159 id.record_nr = record_nr;
160 id.mod_lvl = (mod_lvl[0]) << 8 | mod_lvl[1];
Gerald Schaefer1f38d612006-09-20 15:59:26 +0200161 return appldata_asm(&id, function, (void *) buffer, length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700163/************************ timer, work, DIAG <END> ****************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165
166/****************************** /proc stuff **********************************/
167
168/*
169 * appldata_mod_vtimer_wrap()
170 *
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200171 * wrapper function for mod_virt_timer(), because smp_call_function_single()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * accepts only one parameter.
173 */
174static void __appldata_mod_vtimer_wrap(void *p) {
175 struct {
176 struct vtimer_list *timer;
177 u64 expires;
178 } *args = p;
179 mod_virt_timer(args->timer, args->expires);
180}
181
182#define APPLDATA_ADD_TIMER 0
183#define APPLDATA_DEL_TIMER 1
184#define APPLDATA_MOD_TIMER 2
185
186/*
187 * __appldata_vtimer_setup()
188 *
189 * Add, delete or modify virtual timers on all online cpus.
190 * The caller needs to get the appldata_timer_lock spinlock.
191 */
192static void
193__appldata_vtimer_setup(int cmd)
194{
195 u64 per_cpu_interval;
196 int i;
197
198 switch (cmd) {
199 case APPLDATA_ADD_TIMER:
200 if (appldata_timer_active)
201 break;
202 per_cpu_interval = (u64) (appldata_interval*1000 /
203 num_online_cpus()) * TOD_MICRO;
204 for_each_online_cpu(i) {
205 per_cpu(appldata_timer, i).expires = per_cpu_interval;
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200206 smp_call_function_single(i, add_virt_timer_periodic,
207 &per_cpu(appldata_timer, i),
Jens Axboe8691e5a2008-06-06 11:18:06 +0200208 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210 appldata_timer_active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 break;
212 case APPLDATA_DEL_TIMER:
213 for_each_online_cpu(i)
214 del_virt_timer(&per_cpu(appldata_timer, i));
215 if (!appldata_timer_active)
216 break;
217 appldata_timer_active = 0;
218 atomic_set(&appldata_expire_count, num_online_cpus());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 break;
220 case APPLDATA_MOD_TIMER:
221 per_cpu_interval = (u64) (appldata_interval*1000 /
222 num_online_cpus()) * TOD_MICRO;
223 if (!appldata_timer_active)
224 break;
225 for_each_online_cpu(i) {
226 struct {
227 struct vtimer_list *timer;
228 u64 expires;
229 } args;
230 args.timer = &per_cpu(appldata_timer, i);
231 args.expires = per_cpu_interval;
Heiko Carstens3bb447f2007-07-27 12:29:08 +0200232 smp_call_function_single(i, __appldata_mod_vtimer_wrap,
Jens Axboe8691e5a2008-06-06 11:18:06 +0200233 &args, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235 }
236}
237
238/*
239 * appldata_timer_handler()
240 *
241 * Start/Stop timer, show status of timer (0 = not active, 1 = active)
242 */
243static int
244appldata_timer_handler(ctl_table *ctl, int write, struct file *filp,
245 void __user *buffer, size_t *lenp, loff_t *ppos)
246{
247 int len;
248 char buf[2];
249
250 if (!*lenp || *ppos) {
251 *lenp = 0;
252 return 0;
253 }
254 if (!write) {
255 len = sprintf(buf, appldata_timer_active ? "1\n" : "0\n");
256 if (len > *lenp)
257 len = *lenp;
258 if (copy_to_user(buffer, buf, len))
259 return -EFAULT;
260 goto out;
261 }
262 len = *lenp;
263 if (copy_from_user(buf, buffer, len > sizeof(buf) ? sizeof(buf) : len))
264 return -EFAULT;
Gerald Schaefer17605372008-05-30 10:03:28 +0200265 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 spin_lock(&appldata_timer_lock);
267 if (buf[0] == '1')
268 __appldata_vtimer_setup(APPLDATA_ADD_TIMER);
269 else if (buf[0] == '0')
270 __appldata_vtimer_setup(APPLDATA_DEL_TIMER);
271 spin_unlock(&appldata_timer_lock);
Gerald Schaefer17605372008-05-30 10:03:28 +0200272 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273out:
274 *lenp = len;
275 *ppos += len;
276 return 0;
277}
278
279/*
280 * appldata_interval_handler()
281 *
282 * Set (CPU) timer interval for collection of data (in milliseconds), show
283 * current timer interval.
284 */
285static int
286appldata_interval_handler(ctl_table *ctl, int write, struct file *filp,
287 void __user *buffer, size_t *lenp, loff_t *ppos)
288{
289 int len, interval;
290 char buf[16];
291
292 if (!*lenp || *ppos) {
293 *lenp = 0;
294 return 0;
295 }
296 if (!write) {
297 len = sprintf(buf, "%i\n", appldata_interval);
298 if (len > *lenp)
299 len = *lenp;
300 if (copy_to_user(buffer, buf, len))
301 return -EFAULT;
302 goto out;
303 }
304 len = *lenp;
305 if (copy_from_user(buf, buffer, len > sizeof(buf) ? sizeof(buf) : len)) {
306 return -EFAULT;
307 }
Gerald Schaefer95425f12006-10-27 12:39:13 +0200308 interval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 sscanf(buf, "%i", &interval);
Gerald Schaeferd3ae9422008-07-14 09:59:34 +0200310 if (interval <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Gerald Schaefer17605372008-05-30 10:03:28 +0200313 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 spin_lock(&appldata_timer_lock);
315 appldata_interval = interval;
316 __appldata_vtimer_setup(APPLDATA_MOD_TIMER);
317 spin_unlock(&appldata_timer_lock);
Gerald Schaefer17605372008-05-30 10:03:28 +0200318 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319out:
320 *lenp = len;
321 *ppos += len;
322 return 0;
323}
324
325/*
326 * appldata_generic_handler()
327 *
328 * Generic start/stop monitoring and DIAG, show status of
329 * monitoring (0 = not in process, 1 = in process)
330 */
331static int
332appldata_generic_handler(ctl_table *ctl, int write, struct file *filp,
333 void __user *buffer, size_t *lenp, loff_t *ppos)
334{
335 struct appldata_ops *ops = NULL, *tmp_ops;
336 int rc, len, found;
337 char buf[2];
338 struct list_head *lh;
339
340 found = 0;
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700341 spin_lock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 list_for_each(lh, &appldata_ops_list) {
343 tmp_ops = list_entry(lh, struct appldata_ops, list);
344 if (&tmp_ops->ctl_table[2] == ctl) {
345 found = 1;
346 }
347 }
348 if (!found) {
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700349 spin_unlock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return -ENODEV;
351 }
352 ops = ctl->data;
353 if (!try_module_get(ops->owner)) { // protect this function
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700354 spin_unlock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return -ENODEV;
356 }
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700357 spin_unlock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 if (!*lenp || *ppos) {
360 *lenp = 0;
361 module_put(ops->owner);
362 return 0;
363 }
364 if (!write) {
365 len = sprintf(buf, ops->active ? "1\n" : "0\n");
366 if (len > *lenp)
367 len = *lenp;
368 if (copy_to_user(buffer, buf, len)) {
369 module_put(ops->owner);
370 return -EFAULT;
371 }
372 goto out;
373 }
374 len = *lenp;
375 if (copy_from_user(buf, buffer,
376 len > sizeof(buf) ? sizeof(buf) : len)) {
377 module_put(ops->owner);
378 return -EFAULT;
379 }
380
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700381 spin_lock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if ((buf[0] == '1') && (ops->active == 0)) {
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700383 // protect work queue callback
384 if (!try_module_get(ops->owner)) {
385 spin_unlock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 module_put(ops->owner);
387 return -ENODEV;
388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 ops->callback(ops->data); // init record
390 rc = appldata_diag(ops->record_nr,
391 APPLDATA_START_INTERVAL_REC,
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200392 (unsigned long) ops->data, ops->size,
393 ops->mod_lvl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (rc != 0) {
Gerald Schaefere7534b02008-12-25 13:39:41 +0100395 pr_err("Starting the data collection for %s "
396 "failed with rc=%d\n", ops->name, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 module_put(ops->owner);
Gerald Schaeferd3ae9422008-07-14 09:59:34 +0200398 } else
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200399 ops->active = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 } else if ((buf[0] == '0') && (ops->active == 1)) {
401 ops->active = 0;
402 rc = appldata_diag(ops->record_nr, APPLDATA_STOP_REC,
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200403 (unsigned long) ops->data, ops->size,
404 ops->mod_lvl);
Gerald Schaeferd3ae9422008-07-14 09:59:34 +0200405 if (rc != 0)
Gerald Schaefere7534b02008-12-25 13:39:41 +0100406 pr_err("Stopping the data collection for %s "
407 "failed with rc=%d\n", ops->name, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 module_put(ops->owner);
409 }
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700410 spin_unlock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411out:
412 *lenp = len;
413 *ppos += len;
414 module_put(ops->owner);
415 return 0;
416}
417
418/*************************** /proc stuff <END> *******************************/
419
420
421/************************* module-ops management *****************************/
422/*
423 * appldata_register_ops()
424 *
425 * update ops list, register /proc/sys entries
426 */
427int appldata_register_ops(struct appldata_ops *ops)
428{
Roel Kluin13f8b7c2008-10-28 11:10:18 +0100429 if (ops->size > APPLDATA_MAX_REC_SIZE)
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100430 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100432 ops->ctl_table = kzalloc(4 * sizeof(struct ctl_table), GFP_KERNEL);
433 if (!ops->ctl_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700436 spin_lock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 list_add(&ops->list, &appldata_ops_list);
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700438 spin_unlock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 ops->ctl_table[0].procname = appldata_proc_name;
441 ops->ctl_table[0].maxlen = 0;
442 ops->ctl_table[0].mode = S_IRUGO | S_IXUGO;
443 ops->ctl_table[0].child = &ops->ctl_table[2];
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 ops->ctl_table[2].procname = ops->name;
446 ops->ctl_table[2].mode = S_IRUGO | S_IWUSR;
447 ops->ctl_table[2].proc_handler = appldata_generic_handler;
448 ops->ctl_table[2].data = ops;
449
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800450 ops->sysctl_header = register_sysctl_table(ops->ctl_table);
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100451 if (!ops->sysctl_header)
452 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return 0;
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100454out:
455 spin_lock(&appldata_ops_lock);
456 list_del(&ops->list);
457 spin_unlock(&appldata_ops_lock);
458 kfree(ops->ctl_table);
459 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462/*
463 * appldata_unregister_ops()
464 *
465 * update ops list, unregister /proc entries, stop DIAG if necessary
466 */
467void appldata_unregister_ops(struct appldata_ops *ops)
468{
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700469 spin_lock(&appldata_ops_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 list_del(&ops->list);
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700471 spin_unlock(&appldata_ops_lock);
Al Viro330d57f2005-11-04 10:18:40 +0000472 unregister_sysctl_table(ops->sysctl_header);
Heiko Carstens37e3a6a2007-11-20 11:13:34 +0100473 kfree(ops->ctl_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475/********************** module-ops management <END> **************************/
476
477
478/******************************* init / exit *********************************/
479
Heiko Carstens84b36a82007-06-19 13:10:03 +0200480static void __cpuinit appldata_online_cpu(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 init_virt_timer(&per_cpu(appldata_timer, cpu));
483 per_cpu(appldata_timer, cpu).function = appldata_timer_function;
484 per_cpu(appldata_timer, cpu).data = (unsigned long)
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700485 &appldata_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 atomic_inc(&appldata_expire_count);
487 spin_lock(&appldata_timer_lock);
488 __appldata_vtimer_setup(APPLDATA_MOD_TIMER);
489 spin_unlock(&appldata_timer_lock);
490}
491
Satyam Sharma076fc802007-10-12 16:11:32 +0200492static void __cpuinit appldata_offline_cpu(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 del_virt_timer(&per_cpu(appldata_timer, cpu));
495 if (atomic_dec_and_test(&appldata_expire_count)) {
496 atomic_set(&appldata_expire_count, num_online_cpus());
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700497 queue_work(appldata_wq, &appldata_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
499 spin_lock(&appldata_timer_lock);
500 __appldata_vtimer_setup(APPLDATA_MOD_TIMER);
501 spin_unlock(&appldata_timer_lock);
502}
503
Satyam Sharma11b8bf02007-10-12 16:11:31 +0200504static int __cpuinit appldata_cpu_notify(struct notifier_block *self,
505 unsigned long action,
506 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
508 switch (action) {
509 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700510 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 appldata_online_cpu((long) hcpu);
512 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700514 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 appldata_offline_cpu((long) hcpu);
516 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 default:
518 break;
519 }
520 return NOTIFY_OK;
521}
522
Heiko Carstens84b36a82007-06-19 13:10:03 +0200523static struct notifier_block __cpuinitdata appldata_nb = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 .notifier_call = appldata_cpu_notify,
525};
526
527/*
528 * appldata_init()
529 *
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700530 * init timer, register /proc entries
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 */
532static int __init appldata_init(void)
533{
534 int i;
535
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700536 appldata_wq = create_singlethread_workqueue("appldata");
Gerald Schaeferd3ae9422008-07-14 09:59:34 +0200537 if (!appldata_wq)
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700538 return -ENOMEM;
Gerald Schaeferf26d5832005-06-04 15:43:33 -0700539
Gerald Schaefer17605372008-05-30 10:03:28 +0200540 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 for_each_online_cpu(i)
542 appldata_online_cpu(i);
Gerald Schaefer17605372008-05-30 10:03:28 +0200543 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 /* Register cpu hotplug notifier */
Chandra Seetharamanbe6b5a32006-07-30 03:03:37 -0700546 register_hotcpu_notifier(&appldata_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Eric W. Biederman0b4d4142007-02-14 00:34:09 -0800548 appldata_sysctl_header = register_sysctl_table(appldata_dir_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return 0;
550}
551
Satyam Sharma076fc802007-10-12 16:11:32 +0200552__initcall(appldata_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554/**************************** init / exit <END> ******************************/
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556EXPORT_SYMBOL_GPL(appldata_register_ops);
557EXPORT_SYMBOL_GPL(appldata_unregister_ops);
Gerald Schaefer5b5dd212006-06-29 15:08:35 +0200558EXPORT_SYMBOL_GPL(appldata_diag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Gerald Schaefer0c3252d2008-07-14 09:57:27 +0200560#ifdef CONFIG_SWAP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561EXPORT_SYMBOL_GPL(si_swapinfo);
Gerald Schaefer0c3252d2008-07-14 09:57:27 +0200562#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563EXPORT_SYMBOL_GPL(nr_threads);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564EXPORT_SYMBOL_GPL(nr_running);
565EXPORT_SYMBOL_GPL(nr_iowait);