Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame^] | 1 | /* |
| 2 | * arch/s390/kernel/profile.c |
| 3 | * |
| 4 | * Copyright (C) 2003 IBM Deutschland Entwicklung GmbH, IBM Corporation |
| 5 | * Author(s): Thomas Spatzier (tspat@de.ibm.com) |
| 6 | * |
| 7 | */ |
| 8 | #include <linux/proc_fs.h> |
| 9 | #include <linux/profile.h> |
| 10 | |
| 11 | static struct proc_dir_entry * root_irq_dir; |
| 12 | |
| 13 | void init_irq_proc(void) |
| 14 | { |
| 15 | /* create /proc/irq */ |
| 16 | root_irq_dir = proc_mkdir("irq", 0); |
| 17 | |
| 18 | /* create /proc/irq/prof_cpu_mask */ |
| 19 | create_prof_cpu_mask(root_irq_dir); |
| 20 | } |