1 #include <linux/init.h>
2 #include <linux/errno.h>
3 #include <linux/kernel.h>
4 #include <linux/proc_fs.h>
5 #include <linux/types.h>
6 #include <asm/ptrace.h>
7 #include <asm/uaccess.h>
9 #define SAMPLE_BUFFER_SIZE 8192
11 static char* sample_buffer
;
12 static char* sample_buffer_pos
;
13 static int prof_running
= 0;
16 cris_profile_sample(struct pt_regs
* regs
)
21 *(unsigned int*)sample_buffer_pos
= current
->pid
;
23 *(unsigned int*)sample_buffer_pos
= 0;
24 *(unsigned int*)(sample_buffer_pos
+ 4) = instruction_pointer(regs
);
25 sample_buffer_pos
+= 8;
26 if (sample_buffer_pos
== sample_buffer
+ SAMPLE_BUFFER_SIZE
)
27 sample_buffer_pos
= sample_buffer
;
31 read_cris_profile(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*ppos
)
33 unsigned long p
= *ppos
;
34 if (p
> SAMPLE_BUFFER_SIZE
)
36 if (p
+ count
> SAMPLE_BUFFER_SIZE
)
37 count
= SAMPLE_BUFFER_SIZE
- p
;
38 if (copy_to_user(buf
, sample_buffer
+ p
,count
))
40 memset(sample_buffer
+ p
, 0, count
);
46 write_cris_profile(struct file
*file
, const char __user
*buf
,
47 size_t count
, loff_t
*ppos
)
49 sample_buffer_pos
= sample_buffer
;
50 memset(sample_buffer
, 0, SAMPLE_BUFFER_SIZE
);
53 static struct file_operations cris_proc_profile_operations
= {
54 .read
= read_cris_profile
,
55 .write
= write_cris_profile
,
59 __init
init_cris_profile(void)
61 struct proc_dir_entry
*entry
;
62 sample_buffer
= (char*)kmalloc(SAMPLE_BUFFER_SIZE
, GFP_KERNEL
);
63 sample_buffer_pos
= sample_buffer
;
64 entry
= create_proc_entry("system_profile", S_IWUSR
| S_IRUGO
, NULL
);
66 entry
->proc_fops
= &cris_proc_profile_operations
;
67 entry
->size
= SAMPLE_BUFFER_SIZE
;
73 __initcall(init_cris_profile
);