diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-06-23 19:20:39 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-06-23 19:20:39 -0700 |
| commit | 77a5fdb07e54e8467aabdaf26cc5c31d2660a929 (patch) | |
| tree | 7ce9b5a9ce2e325e5fff91970295b445d05dcd24 /include | |
| parent | 537bc91c60680d6c9c33dbc2a6972613fffdeb64 (diff) | |
[PATCH] OProfile: allow normal user to trigger sample dumps
From: John Levon <levon@movementarian.org>
In 2.4, OProfile allowed normal users to trigger sample dumps (useful under
low sample load). The patch below, by Will Cohen, allows this for 2.6 too.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/oprofile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/oprofile.h b/include/linux/oprofile.h index 80cfea0fa65f..f17c89c37c72 100644 --- a/include/linux/oprofile.h +++ b/include/linux/oprofile.h @@ -65,6 +65,9 @@ extern void oprofile_add_sample(unsigned long eip, unsigned int is_kernel, */ int oprofilefs_create_file(struct super_block * sb, struct dentry * root, char const * name, struct file_operations * fops); + +int oprofilefs_create_file_perm(struct super_block * sb, struct dentry * root, + char const * name, struct file_operations * fops, int perm); /** Create a file for read/write access to an unsigned long. */ int oprofilefs_create_ulong(struct super_block * sb, struct dentry * root, |
