diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2008-10-27 15:38:27 -0400 |
---|---|---|
committer | Alexey Dobriyan <adobriyan@gmail.com> | 2008-10-27 15:56:56 -0400 |
commit | 6c87df37dcb9c6c33923707fa5191e0a65874d60 (patch) | |
tree | 7a753aec4f97afda592cc19c3536178a81fce41d /fs/proc | |
parent | e013e13bf605b9e6b702adffbe2853cfc60e7806 (diff) |
proc: revert /proc/uptime to ->read_proc hook
Turned out some VMware userspace does pread(2) on /proc/uptime, but
seqfiles currently don't allow pread() resulting in -ESPIPE.
Seqfiles in theory can do pread(), but this can be a long story,
so revert to ->read_proc until then.
http://bugzilla.kernel.org/show_bug.cgi?id=11856
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/uptime.c | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/fs/proc/uptime.c b/fs/proc/uptime.c index 0c10a0b3f146..df26aa88fa47 100644 --- a/fs/proc/uptime.c +++ b/fs/proc/uptime.c | |||
@@ -1,43 +1,45 @@ | |||
1 | #include <linux/fs.h> | ||
2 | #include <linux/init.h> | 1 | #include <linux/init.h> |
3 | #include <linux/proc_fs.h> | 2 | #include <linux/proc_fs.h> |
4 | #include <linux/sched.h> | 3 | #include <linux/sched.h> |
5 | #include <linux/seq_file.h> | ||
6 | #include <linux/time.h> | 4 | #include <linux/time.h> |
7 | #include <asm/cputime.h> | 5 | #include <asm/cputime.h> |
8 | 6 | ||
9 | static int uptime_proc_show(struct seq_file *m, void *v) | 7 | static int proc_calc_metrics(char *page, char **start, off_t off, |
8 | int count, int *eof, int len) | ||
9 | { | ||
10 | if (len <= off + count) | ||
11 | *eof = 1; | ||
12 | *start = page + off; | ||
13 | len -= off; | ||
14 | if (len > count) | ||
15 | len = count; | ||
16 | if (len < 0) | ||
17 | len = 0; | ||
18 | return len; | ||
19 | } | ||
20 | |||
21 | static int uptime_read_proc(char *page, char **start, off_t off, int count, | ||
22 | int *eof, void *data) | ||
10 | { | 23 | { |
11 | struct timespec uptime; | 24 | struct timespec uptime; |
12 | struct timespec idle; | 25 | struct timespec idle; |
26 | int len; | ||
13 | cputime_t idletime = cputime_add(init_task.utime, init_task.stime); | 27 | cputime_t idletime = cputime_add(init_task.utime, init_task.stime); |
14 | 28 | ||
15 | do_posix_clock_monotonic_gettime(&uptime); | 29 | do_posix_clock_monotonic_gettime(&uptime); |
16 | monotonic_to_bootbased(&uptime); | 30 | monotonic_to_bootbased(&uptime); |
17 | cputime_to_timespec(idletime, &idle); | 31 | cputime_to_timespec(idletime, &idle); |
18 | seq_printf(m, "%lu.%02lu %lu.%02lu\n", | 32 | len = sprintf(page, "%lu.%02lu %lu.%02lu\n", |
19 | (unsigned long) uptime.tv_sec, | 33 | (unsigned long) uptime.tv_sec, |
20 | (uptime.tv_nsec / (NSEC_PER_SEC / 100)), | 34 | (uptime.tv_nsec / (NSEC_PER_SEC / 100)), |
21 | (unsigned long) idle.tv_sec, | 35 | (unsigned long) idle.tv_sec, |
22 | (idle.tv_nsec / (NSEC_PER_SEC / 100))); | 36 | (idle.tv_nsec / (NSEC_PER_SEC / 100))); |
23 | return 0; | 37 | return proc_calc_metrics(page, start, off, count, eof, len); |
24 | } | 38 | } |
25 | 39 | ||
26 | static int uptime_proc_open(struct inode *inode, struct file *file) | ||
27 | { | ||
28 | return single_open(file, uptime_proc_show, NULL); | ||
29 | } | ||
30 | |||
31 | static const struct file_operations uptime_proc_fops = { | ||
32 | .open = uptime_proc_open, | ||
33 | .read = seq_read, | ||
34 | .llseek = seq_lseek, | ||
35 | .release = single_release, | ||
36 | }; | ||
37 | |||
38 | static int __init proc_uptime_init(void) | 40 | static int __init proc_uptime_init(void) |
39 | { | 41 | { |
40 | proc_create("uptime", 0, NULL, &uptime_proc_fops); | 42 | create_proc_read_entry("uptime", 0, NULL, uptime_read_proc, NULL); |
41 | return 0; | 43 | return 0; |
42 | } | 44 | } |
43 | module_init(proc_uptime_init); | 45 | module_init(proc_uptime_init); |