]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/s390/appldata/appldata_base.c
sysctl: Drop & in front of every proc_handler.
[net-next-2.6.git] / arch / s390 / appldata / appldata_base.c
CommitLineData
1da177e4
LT
1/*
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 *
524dbcda 8 * Copyright IBM Corp. 2003, 2009
1da177e4 9 *
5b5dd21a 10 * Author: Gerald Schaefer <gerald.schaefer@de.ibm.com>
1da177e4
LT
11 */
12
e7534b0e
GS
13#define KMSG_COMPONENT "appldata"
14#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
15
1da177e4
LT
16#include <linux/module.h>
17#include <linux/init.h>
18#include <linux/slab.h>
19#include <linux/errno.h>
1da177e4
LT
20#include <linux/interrupt.h>
21#include <linux/proc_fs.h>
2dcea57a 22#include <linux/mm.h>
1da177e4
LT
23#include <linux/swap.h>
24#include <linux/pagemap.h>
25#include <linux/sysctl.h>
1da177e4
LT
26#include <linux/notifier.h>
27#include <linux/cpu.h>
f26d583e 28#include <linux/workqueue.h>
524dbcda
GS
29#include <linux/suspend.h>
30#include <linux/platform_device.h>
1f38d613
GS
31#include <asm/appldata.h>
32#include <asm/timer.h>
33#include <asm/uaccess.h>
34#include <asm/io.h>
35#include <asm/smp.h>
1da177e4
LT
36
37#include "appldata.h"
38
39
1da177e4
LT
40#define APPLDATA_CPU_INTERVAL 10000 /* default (CPU) time for
41 sampling interval in
42 milliseconds */
43
44#define TOD_MICRO 0x01000 /* nr. of TOD clock units
45 for 1 microsecond */
524dbcda
GS
46
47static struct platform_device *appldata_pdev;
48
1da177e4
LT
49/*
50 * /proc entries (sysctl)
51 */
52static const char appldata_proc_name[APPLDATA_PROC_NAME_LENGTH] = "appldata";
8d65af78 53static int appldata_timer_handler(ctl_table *ctl, int write,
1da177e4
LT
54 void __user *buffer, size_t *lenp, loff_t *ppos);
55static int appldata_interval_handler(ctl_table *ctl, int write,
1da177e4
LT
56 void __user *buffer,
57 size_t *lenp, loff_t *ppos);
58
59static struct ctl_table_header *appldata_sysctl_header;
60static struct ctl_table appldata_table[] = {
61 {
1da177e4
LT
62 .procname = "timer",
63 .mode = S_IRUGO | S_IWUSR,
6d456111 64 .proc_handler = appldata_timer_handler,
1da177e4
LT
65 },
66 {
1da177e4
LT
67 .procname = "interval",
68 .mode = S_IRUGO | S_IWUSR,
6d456111 69 .proc_handler = appldata_interval_handler,
1da177e4 70 },
37e3a6ac 71 { },
1da177e4
LT
72};
73
74static struct ctl_table appldata_dir_table[] = {
75 {
1da177e4
LT
76 .procname = appldata_proc_name,
77 .maxlen = 0,
78 .mode = S_IRUGO | S_IXUGO,
79 .child = appldata_table,
80 },
37e3a6ac 81 { },
1da177e4
LT
82};
83
84/*
85 * Timer
86 */
2b67fc46 87static DEFINE_PER_CPU(struct vtimer_list, appldata_timer);
1da177e4
LT
88static atomic_t appldata_expire_count = ATOMIC_INIT(0);
89
90static DEFINE_SPINLOCK(appldata_timer_lock);
91static int appldata_interval = APPLDATA_CPU_INTERVAL;
92static int appldata_timer_active;
524dbcda 93static int appldata_timer_suspended = 0;
1da177e4
LT
94
95/*
f26d583e 96 * Work queue
1da177e4 97 */
f26d583e 98static struct workqueue_struct *appldata_wq;
6d5aefb8
DH
99static void appldata_work_fn(struct work_struct *work);
100static DECLARE_WORK(appldata_work, appldata_work_fn);
f26d583e 101
1da177e4
LT
102
103/*
104 * Ops list
105 */
b1ad171e 106static DEFINE_MUTEX(appldata_ops_mutex);
1da177e4
LT
107static LIST_HEAD(appldata_ops_list);
108
109
f26d583e 110/*************************** timer, work, DIAG *******************************/
1da177e4
LT
111/*
112 * appldata_timer_function()
113 *
f26d583e 114 * schedule work and reschedule timer
1da177e4 115 */
9d0a57cb 116static void appldata_timer_function(unsigned long data)
1da177e4 117{
1da177e4
LT
118 if (atomic_dec_and_test(&appldata_expire_count)) {
119 atomic_set(&appldata_expire_count, num_online_cpus());
f26d583e 120 queue_work(appldata_wq, (struct work_struct *) data);
1da177e4
LT
121 }
122}
123
124/*
f26d583e 125 * appldata_work_fn()
1da177e4
LT
126 *
127 * call data gathering function for each (active) module
128 */
6d5aefb8 129static void appldata_work_fn(struct work_struct *work)
1da177e4
LT
130{
131 struct list_head *lh;
132 struct appldata_ops *ops;
133 int i;
134
1da177e4 135 i = 0;
1760537b 136 get_online_cpus();
b1ad171e 137 mutex_lock(&appldata_ops_mutex);
1da177e4
LT
138 list_for_each(lh, &appldata_ops_list) {
139 ops = list_entry(lh, struct appldata_ops, list);
1da177e4
LT
140 if (ops->active == 1) {
141 ops->callback(ops->data);
142 }
143 }
b1ad171e 144 mutex_unlock(&appldata_ops_mutex);
1760537b 145 put_online_cpus();
1da177e4
LT
146}
147
148/*
149 * appldata_diag()
150 *
151 * prepare parameter list, issue DIAG 0xDC
152 */
5b5dd21a
GS
153int appldata_diag(char record_nr, u16 function, unsigned long buffer,
154 u16 length, char *mod_lvl)
1da177e4 155{
1f38d613 156 struct appldata_product_id id = {
1da177e4 157 .prod_nr = {0xD3, 0xC9, 0xD5, 0xE4,
1f38d613
GS
158 0xE7, 0xD2, 0xD9}, /* "LINUXKR" */
159 .prod_fn = 0xD5D3, /* "NL" */
1f38d613
GS
160 .version_nr = 0xF2F6, /* "26" */
161 .release_nr = 0xF0F1, /* "01" */
1da177e4
LT
162 };
163
925afbd6
GS
164 id.record_nr = record_nr;
165 id.mod_lvl = (mod_lvl[0]) << 8 | mod_lvl[1];
1f38d613 166 return appldata_asm(&id, function, (void *) buffer, length);
1da177e4 167}
f26d583e 168/************************ timer, work, DIAG <END> ****************************/
1da177e4
LT
169
170
171/****************************** /proc stuff **********************************/
172
173/*
174 * appldata_mod_vtimer_wrap()
175 *
3bb447fc 176 * wrapper function for mod_virt_timer(), because smp_call_function_single()
1da177e4
LT
177 * accepts only one parameter.
178 */
179static void __appldata_mod_vtimer_wrap(void *p) {
180 struct {
181 struct vtimer_list *timer;
182 u64 expires;
183 } *args = p;
43ae8a1b 184 mod_virt_timer_periodic(args->timer, args->expires);
1da177e4
LT
185}
186
187#define APPLDATA_ADD_TIMER 0
188#define APPLDATA_DEL_TIMER 1
189#define APPLDATA_MOD_TIMER 2
190
191/*
192 * __appldata_vtimer_setup()
193 *
194 * Add, delete or modify virtual timers on all online cpus.
195 * The caller needs to get the appldata_timer_lock spinlock.
196 */
197static void
198__appldata_vtimer_setup(int cmd)
199{
200 u64 per_cpu_interval;
201 int i;
202
203 switch (cmd) {
204 case APPLDATA_ADD_TIMER:
205 if (appldata_timer_active)
206 break;
207 per_cpu_interval = (u64) (appldata_interval*1000 /
208 num_online_cpus()) * TOD_MICRO;
209 for_each_online_cpu(i) {
210 per_cpu(appldata_timer, i).expires = per_cpu_interval;
3bb447fc
HC
211 smp_call_function_single(i, add_virt_timer_periodic,
212 &per_cpu(appldata_timer, i),
8691e5a8 213 1);
1da177e4
LT
214 }
215 appldata_timer_active = 1;
1da177e4
LT
216 break;
217 case APPLDATA_DEL_TIMER:
218 for_each_online_cpu(i)
219 del_virt_timer(&per_cpu(appldata_timer, i));
220 if (!appldata_timer_active)
221 break;
222 appldata_timer_active = 0;
223 atomic_set(&appldata_expire_count, num_online_cpus());
1da177e4
LT
224 break;
225 case APPLDATA_MOD_TIMER:
226 per_cpu_interval = (u64) (appldata_interval*1000 /
227 num_online_cpus()) * TOD_MICRO;
228 if (!appldata_timer_active)
229 break;
230 for_each_online_cpu(i) {
231 struct {
232 struct vtimer_list *timer;
233 u64 expires;
234 } args;
235 args.timer = &per_cpu(appldata_timer, i);
236 args.expires = per_cpu_interval;
3bb447fc 237 smp_call_function_single(i, __appldata_mod_vtimer_wrap,
8691e5a8 238 &args, 1);
1da177e4
LT
239 }
240 }
241}
242
243/*
244 * appldata_timer_handler()
245 *
246 * Start/Stop timer, show status of timer (0 = not active, 1 = active)
247 */
248static int
8d65af78 249appldata_timer_handler(ctl_table *ctl, int write,
1da177e4
LT
250 void __user *buffer, size_t *lenp, loff_t *ppos)
251{
252 int len;
253 char buf[2];
254
255 if (!*lenp || *ppos) {
256 *lenp = 0;
257 return 0;
258 }
259 if (!write) {
260 len = sprintf(buf, appldata_timer_active ? "1\n" : "0\n");
261 if (len > *lenp)
262 len = *lenp;
263 if (copy_to_user(buffer, buf, len))
264 return -EFAULT;
265 goto out;
266 }
267 len = *lenp;
268 if (copy_from_user(buf, buffer, len > sizeof(buf) ? sizeof(buf) : len))
269 return -EFAULT;
1760537b 270 get_online_cpus();
1da177e4
LT
271 spin_lock(&appldata_timer_lock);
272 if (buf[0] == '1')
273 __appldata_vtimer_setup(APPLDATA_ADD_TIMER);
274 else if (buf[0] == '0')
275 __appldata_vtimer_setup(APPLDATA_DEL_TIMER);
276 spin_unlock(&appldata_timer_lock);
1760537b 277 put_online_cpus();
1da177e4
LT
278out:
279 *lenp = len;
280 *ppos += len;
281 return 0;
282}
283
284/*
285 * appldata_interval_handler()
286 *
287 * Set (CPU) timer interval for collection of data (in milliseconds), show
288 * current timer interval.
289 */
290static int
8d65af78 291appldata_interval_handler(ctl_table *ctl, int write,
1da177e4
LT
292 void __user *buffer, size_t *lenp, loff_t *ppos)
293{
294 int len, interval;
295 char buf[16];
296
297 if (!*lenp || *ppos) {
298 *lenp = 0;
299 return 0;
300 }
301 if (!write) {
302 len = sprintf(buf, "%i\n", appldata_interval);
303 if (len > *lenp)
304 len = *lenp;
305 if (copy_to_user(buffer, buf, len))
306 return -EFAULT;
307 goto out;
308 }
309 len = *lenp;
310 if (copy_from_user(buf, buffer, len > sizeof(buf) ? sizeof(buf) : len)) {
311 return -EFAULT;
312 }
95425f19 313 interval = 0;
1da177e4 314 sscanf(buf, "%i", &interval);
d3ae942d 315 if (interval <= 0)
1da177e4 316 return -EINVAL;
1da177e4 317
1760537b 318 get_online_cpus();
1da177e4
LT
319 spin_lock(&appldata_timer_lock);
320 appldata_interval = interval;
321 __appldata_vtimer_setup(APPLDATA_MOD_TIMER);
322 spin_unlock(&appldata_timer_lock);
1760537b 323 put_online_cpus();
1da177e4
LT
324out:
325 *lenp = len;
326 *ppos += len;
327 return 0;
328}
329
330/*
331 * appldata_generic_handler()
332 *
333 * Generic start/stop monitoring and DIAG, show status of
334 * monitoring (0 = not in process, 1 = in process)
335 */
336static int
8d65af78 337appldata_generic_handler(ctl_table *ctl, int write,
1da177e4
LT
338 void __user *buffer, size_t *lenp, loff_t *ppos)
339{
340 struct appldata_ops *ops = NULL, *tmp_ops;
341 int rc, len, found;
342 char buf[2];
343 struct list_head *lh;
344
345 found = 0;
b1ad171e 346 mutex_lock(&appldata_ops_mutex);
1da177e4
LT
347 list_for_each(lh, &appldata_ops_list) {
348 tmp_ops = list_entry(lh, struct appldata_ops, list);
349 if (&tmp_ops->ctl_table[2] == ctl) {
350 found = 1;
351 }
352 }
353 if (!found) {
b1ad171e 354 mutex_unlock(&appldata_ops_mutex);
1da177e4
LT
355 return -ENODEV;
356 }
357 ops = ctl->data;
358 if (!try_module_get(ops->owner)) { // protect this function
b1ad171e 359 mutex_unlock(&appldata_ops_mutex);
1da177e4
LT
360 return -ENODEV;
361 }
b1ad171e 362 mutex_unlock(&appldata_ops_mutex);
1da177e4
LT
363
364 if (!*lenp || *ppos) {
365 *lenp = 0;
366 module_put(ops->owner);
367 return 0;
368 }
369 if (!write) {
370 len = sprintf(buf, ops->active ? "1\n" : "0\n");
371 if (len > *lenp)
372 len = *lenp;
373 if (copy_to_user(buffer, buf, len)) {
374 module_put(ops->owner);
375 return -EFAULT;
376 }
377 goto out;
378 }
379 len = *lenp;
380 if (copy_from_user(buf, buffer,
381 len > sizeof(buf) ? sizeof(buf) : len)) {
382 module_put(ops->owner);
383 return -EFAULT;
384 }
385
b1ad171e 386 mutex_lock(&appldata_ops_mutex);
1da177e4 387 if ((buf[0] == '1') && (ops->active == 0)) {
f26d583e
GS
388 // protect work queue callback
389 if (!try_module_get(ops->owner)) {
b1ad171e 390 mutex_unlock(&appldata_ops_mutex);
1da177e4
LT
391 module_put(ops->owner);
392 return -ENODEV;
393 }
1da177e4
LT
394 ops->callback(ops->data); // init record
395 rc = appldata_diag(ops->record_nr,
396 APPLDATA_START_INTERVAL_REC,
5b5dd21a
GS
397 (unsigned long) ops->data, ops->size,
398 ops->mod_lvl);
1da177e4 399 if (rc != 0) {
e7534b0e
GS
400 pr_err("Starting the data collection for %s "
401 "failed with rc=%d\n", ops->name, rc);
1da177e4 402 module_put(ops->owner);
d3ae942d 403 } else
5b5dd21a 404 ops->active = 1;
1da177e4
LT
405 } else if ((buf[0] == '0') && (ops->active == 1)) {
406 ops->active = 0;
407 rc = appldata_diag(ops->record_nr, APPLDATA_STOP_REC,
5b5dd21a
GS
408 (unsigned long) ops->data, ops->size,
409 ops->mod_lvl);
d3ae942d 410 if (rc != 0)
e7534b0e
GS
411 pr_err("Stopping the data collection for %s "
412 "failed with rc=%d\n", ops->name, rc);
1da177e4
LT
413 module_put(ops->owner);
414 }
b1ad171e 415 mutex_unlock(&appldata_ops_mutex);
1da177e4
LT
416out:
417 *lenp = len;
418 *ppos += len;
419 module_put(ops->owner);
420 return 0;
421}
422
423/*************************** /proc stuff <END> *******************************/
424
425
426/************************* module-ops management *****************************/
427/*
428 * appldata_register_ops()
429 *
430 * update ops list, register /proc/sys entries
431 */
432int appldata_register_ops(struct appldata_ops *ops)
433{
13f8b7c5 434 if (ops->size > APPLDATA_MAX_REC_SIZE)
37e3a6ac 435 return -EINVAL;
1da177e4 436
37e3a6ac
HC
437 ops->ctl_table = kzalloc(4 * sizeof(struct ctl_table), GFP_KERNEL);
438 if (!ops->ctl_table)
1da177e4 439 return -ENOMEM;
1da177e4 440
b1ad171e 441 mutex_lock(&appldata_ops_mutex);
1da177e4 442 list_add(&ops->list, &appldata_ops_list);
b1ad171e 443 mutex_unlock(&appldata_ops_mutex);
1da177e4 444
1da177e4
LT
445 ops->ctl_table[0].procname = appldata_proc_name;
446 ops->ctl_table[0].maxlen = 0;
447 ops->ctl_table[0].mode = S_IRUGO | S_IXUGO;
448 ops->ctl_table[0].child = &ops->ctl_table[2];
449
1da177e4
LT
450 ops->ctl_table[2].procname = ops->name;
451 ops->ctl_table[2].mode = S_IRUGO | S_IWUSR;
452 ops->ctl_table[2].proc_handler = appldata_generic_handler;
453 ops->ctl_table[2].data = ops;
454
0b4d4147 455 ops->sysctl_header = register_sysctl_table(ops->ctl_table);
37e3a6ac
HC
456 if (!ops->sysctl_header)
457 goto out;
1da177e4 458 return 0;
37e3a6ac 459out:
b1ad171e 460 mutex_lock(&appldata_ops_mutex);
37e3a6ac 461 list_del(&ops->list);
b1ad171e 462 mutex_unlock(&appldata_ops_mutex);
37e3a6ac
HC
463 kfree(ops->ctl_table);
464 return -ENOMEM;
1da177e4
LT
465}
466
467/*
468 * appldata_unregister_ops()
469 *
470 * update ops list, unregister /proc entries, stop DIAG if necessary
471 */
472void appldata_unregister_ops(struct appldata_ops *ops)
473{
b1ad171e 474 mutex_lock(&appldata_ops_mutex);
1da177e4 475 list_del(&ops->list);
b1ad171e 476 mutex_unlock(&appldata_ops_mutex);
330d57fb 477 unregister_sysctl_table(ops->sysctl_header);
37e3a6ac 478 kfree(ops->ctl_table);
1da177e4
LT
479}
480/********************** module-ops management <END> **************************/
481
482
524dbcda
GS
483/**************************** suspend / resume *******************************/
484static int appldata_freeze(struct device *dev)
485{
486 struct appldata_ops *ops;
487 int rc;
488 struct list_head *lh;
489
490 get_online_cpus();
491 spin_lock(&appldata_timer_lock);
492 if (appldata_timer_active) {
493 __appldata_vtimer_setup(APPLDATA_DEL_TIMER);
494 appldata_timer_suspended = 1;
495 }
496 spin_unlock(&appldata_timer_lock);
497 put_online_cpus();
498
499 mutex_lock(&appldata_ops_mutex);
500 list_for_each(lh, &appldata_ops_list) {
501 ops = list_entry(lh, struct appldata_ops, list);
502 if (ops->active == 1) {
503 rc = appldata_diag(ops->record_nr, APPLDATA_STOP_REC,
504 (unsigned long) ops->data, ops->size,
505 ops->mod_lvl);
506 if (rc != 0)
507 pr_err("Stopping the data collection for %s "
508 "failed with rc=%d\n", ops->name, rc);
509 }
510 }
511 mutex_unlock(&appldata_ops_mutex);
512 return 0;
513}
514
515static int appldata_restore(struct device *dev)
516{
517 struct appldata_ops *ops;
518 int rc;
519 struct list_head *lh;
520
521 get_online_cpus();
522 spin_lock(&appldata_timer_lock);
523 if (appldata_timer_suspended) {
524 __appldata_vtimer_setup(APPLDATA_ADD_TIMER);
525 appldata_timer_suspended = 0;
526 }
527 spin_unlock(&appldata_timer_lock);
528 put_online_cpus();
529
530 mutex_lock(&appldata_ops_mutex);
531 list_for_each(lh, &appldata_ops_list) {
532 ops = list_entry(lh, struct appldata_ops, list);
533 if (ops->active == 1) {
534 ops->callback(ops->data); // init record
535 rc = appldata_diag(ops->record_nr,
536 APPLDATA_START_INTERVAL_REC,
537 (unsigned long) ops->data, ops->size,
538 ops->mod_lvl);
539 if (rc != 0) {
540 pr_err("Starting the data collection for %s "
541 "failed with rc=%d\n", ops->name, rc);
542 }
543 }
544 }
545 mutex_unlock(&appldata_ops_mutex);
546 return 0;
547}
548
549static int appldata_thaw(struct device *dev)
550{
551 return appldata_restore(dev);
552}
553
554static struct dev_pm_ops appldata_pm_ops = {
555 .freeze = appldata_freeze,
556 .thaw = appldata_thaw,
557 .restore = appldata_restore,
558};
559
560static struct platform_driver appldata_pdrv = {
561 .driver = {
562 .name = "appldata",
563 .owner = THIS_MODULE,
564 .pm = &appldata_pm_ops,
565 },
566};
567/************************* suspend / resume <END> ****************************/
568
569
1da177e4
LT
570/******************************* init / exit *********************************/
571
84b36a8e 572static void __cpuinit appldata_online_cpu(int cpu)
1da177e4
LT
573{
574 init_virt_timer(&per_cpu(appldata_timer, cpu));
575 per_cpu(appldata_timer, cpu).function = appldata_timer_function;
576 per_cpu(appldata_timer, cpu).data = (unsigned long)
f26d583e 577 &appldata_work;
1da177e4
LT
578 atomic_inc(&appldata_expire_count);
579 spin_lock(&appldata_timer_lock);
580 __appldata_vtimer_setup(APPLDATA_MOD_TIMER);
581 spin_unlock(&appldata_timer_lock);
582}
583
076fc808 584static void __cpuinit appldata_offline_cpu(int cpu)
1da177e4
LT
585{
586 del_virt_timer(&per_cpu(appldata_timer, cpu));
587 if (atomic_dec_and_test(&appldata_expire_count)) {
588 atomic_set(&appldata_expire_count, num_online_cpus());
f26d583e 589 queue_work(appldata_wq, &appldata_work);
1da177e4
LT
590 }
591 spin_lock(&appldata_timer_lock);
592 __appldata_vtimer_setup(APPLDATA_MOD_TIMER);
593 spin_unlock(&appldata_timer_lock);
594}
595
11b8bf01
SS
596static int __cpuinit appldata_cpu_notify(struct notifier_block *self,
597 unsigned long action,
598 void *hcpu)
1da177e4
LT
599{
600 switch (action) {
601 case CPU_ONLINE:
8bb78442 602 case CPU_ONLINE_FROZEN:
1da177e4
LT
603 appldata_online_cpu((long) hcpu);
604 break;
1da177e4 605 case CPU_DEAD:
8bb78442 606 case CPU_DEAD_FROZEN:
1da177e4
LT
607 appldata_offline_cpu((long) hcpu);
608 break;
1da177e4
LT
609 default:
610 break;
611 }
612 return NOTIFY_OK;
613}
614
84b36a8e 615static struct notifier_block __cpuinitdata appldata_nb = {
1da177e4
LT
616 .notifier_call = appldata_cpu_notify,
617};
618
619/*
620 * appldata_init()
621 *
f26d583e 622 * init timer, register /proc entries
1da177e4
LT
623 */
624static int __init appldata_init(void)
625{
524dbcda
GS
626 int i, rc;
627
628 rc = platform_driver_register(&appldata_pdrv);
629 if (rc)
630 return rc;
1da177e4 631
524dbcda
GS
632 appldata_pdev = platform_device_register_simple("appldata", -1, NULL,
633 0);
634 if (IS_ERR(appldata_pdev)) {
635 rc = PTR_ERR(appldata_pdev);
636 goto out_driver;
637 }
f26d583e 638 appldata_wq = create_singlethread_workqueue("appldata");
524dbcda
GS
639 if (!appldata_wq) {
640 rc = -ENOMEM;
641 goto out_device;
642 }
f26d583e 643
1760537b 644 get_online_cpus();
1da177e4
LT
645 for_each_online_cpu(i)
646 appldata_online_cpu(i);
1760537b 647 put_online_cpus();
1da177e4
LT
648
649 /* Register cpu hotplug notifier */
be6b5a35 650 register_hotcpu_notifier(&appldata_nb);
1da177e4 651
0b4d4147 652 appldata_sysctl_header = register_sysctl_table(appldata_dir_table);
1da177e4 653 return 0;
524dbcda
GS
654
655out_device:
656 platform_device_unregister(appldata_pdev);
657out_driver:
658 platform_driver_unregister(&appldata_pdrv);
659 return rc;
1da177e4
LT
660}
661
076fc808 662__initcall(appldata_init);
1da177e4 663
1da177e4
LT
664/**************************** init / exit <END> ******************************/
665
1da177e4
LT
666EXPORT_SYMBOL_GPL(appldata_register_ops);
667EXPORT_SYMBOL_GPL(appldata_unregister_ops);
5b5dd21a 668EXPORT_SYMBOL_GPL(appldata_diag);
1da177e4 669
0c3252d5 670#ifdef CONFIG_SWAP
1da177e4 671EXPORT_SYMBOL_GPL(si_swapinfo);
0c3252d5 672#endif
1da177e4 673EXPORT_SYMBOL_GPL(nr_threads);
1da177e4
LT
674EXPORT_SYMBOL_GPL(nr_running);
675EXPORT_SYMBOL_GPL(nr_iowait);