diff options
| author | Jin Qian <jinqian@google.com> | 2015-05-11 17:57:52 -0700 |
|---|---|---|
| committer | Moyster <oysterized@gmail.com> | 2016-09-10 16:03:49 +0200 |
| commit | 1baefe9e066e1604a251c71b33bbc6418b96f502 (patch) | |
| tree | c9cb3c33d92f18fb43b88986cca151e8e96c329a | |
| parent | ecdff845f5436939e0a2f37b973358585599b464 (diff) | |
proc: uid_cputime: fix show_uid_stat permission
Change-Id: Ice9084e39da599261df0be6dc305b817b50cfbbf
Signed-off-by: Jin Qian <jinqian@google.com>
| -rw-r--r-- | drivers/misc/uid_cputime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/uid_cputime.c b/drivers/misc/uid_cputime.c index acd7046ce..c3f5bda92 100644 --- a/drivers/misc/uid_cputime.c +++ b/drivers/misc/uid_cputime.c @@ -226,7 +226,7 @@ static int __init proc_uid_cputime_init(void) proc_create_data("remove_uid_range", S_IWUGO, parent, &uid_remove_fops, NULL); - proc_create_data("show_uid_stat", S_IWUGO, parent, &uid_stat_fops, + proc_create_data("show_uid_stat", S_IRUGO, parent, &uid_stat_fops, NULL); profile_event_register(PROFILE_TASK_EXIT, &process_notifier_block); |
