diff options
Diffstat (limited to 'drivers/oprofile/oprofile_files.c')
-rw-r--r-- | drivers/oprofile/oprofile_files.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/oprofile/oprofile_files.c b/drivers/oprofile/oprofile_files.c index 468ec3e4f856..4c5b94775844 100644 --- a/drivers/oprofile/oprofile_files.c +++ b/drivers/oprofile/oprofile_files.c | |||
@@ -22,14 +22,15 @@ | |||
22 | unsigned long oprofile_buffer_size; | 22 | unsigned long oprofile_buffer_size; |
23 | unsigned long oprofile_cpu_buffer_size; | 23 | unsigned long oprofile_cpu_buffer_size; |
24 | unsigned long oprofile_buffer_watershed; | 24 | unsigned long oprofile_buffer_watershed; |
25 | unsigned long oprofile_time_slice; | ||
25 | 26 | ||
26 | #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX | 27 | #ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX |
27 | 28 | ||
28 | static ssize_t timeout_read(struct file *file, char __user *buf, | 29 | static ssize_t timeout_read(struct file *file, char __user *buf, |
29 | size_t count, loff_t *offset) | 30 | size_t count, loff_t *offset) |
30 | { | 31 | { |
31 | return oprofilefs_ulong_to_user(jiffies_to_msecs(timeout_jiffies), | 32 | return oprofilefs_ulong_to_user(jiffies_to_msecs(oprofile_time_slice), |
32 | buf, count, offset); | 33 | buf, count, offset); |
33 | } | 34 | } |
34 | 35 | ||
35 | 36 | ||