Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1491885
| From | Ramiro Oliveira <Ramiro.Oliveira@synopsys.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] Staging: android: fix permissions style |
| Date | 2016-09-27 14:50 +0200 |
| Message-ID | <slZZD-186-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Change permissions from symbolic to octal. Signed-off-by: Ramiro Oliveira <roliveir@synopsys.com> --- drivers/staging/android/lowmemorykiller.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/android/lowmemorykiller.c b/drivers/staging/android/lowmemorykiller.c index 80d7adf..03b5765 100644 --- a/drivers/staging/android/lowmemorykiller.c +++ b/drivers/staging/android/lowmemorykiller.c @@ -204,10 +204,10 @@ device_initcall(lowmem_init); * not really modular, but the easiest way to keep compat with existing * bootargs behaviour is to continue using module_param here. */ -module_param_named(cost, lowmem_shrinker.seeks, int, S_IRUGO | S_IWUSR); +module_param_named(cost, lowmem_shrinker.seeks, int, 0644); module_param_array_named(adj, lowmem_adj, short, &lowmem_adj_size, S_IRUGO | S_IWUSR); module_param_array_named(minfree, lowmem_minfree, uint, &lowmem_minfree_size, S_IRUGO | S_IWUSR); -module_param_named(debug_level, lowmem_debug_level, uint, S_IRUGO | S_IWUSR); +module_param_named(debug_level, lowmem_debug_level, uint, 0644); -- 2.9.3
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] Staging: android: fix permissions style Ramiro Oliveira <Ramiro.Oliveira@synopsys.com> - 2016-09-27 14:50 +0200
Re: [PATCH] Staging: android: fix permissions style Joe Perches <joe@perches.com> - 2016-09-27 19:50 +0200
Re: [PATCH] Staging: android: fix permissions style Greg KH <gregkh@linuxfoundation.org> - 2016-09-28 11:30 +0200
Re: [PATCH] Staging: android: fix permissions style Ramiro Oliveira <Ramiro.Oliveira@synopsys.com> - 2016-09-28 15:50 +0200
Re: [PATCH] Staging: android: fix permissions style Greg KH <gregkh@linuxfoundation.org> - 2016-09-28 17:40 +0200
Re: [PATCH] Staging: android: fix permissions style Ramiro Oliveira <Ramiro.Oliveira@synopsys.com> - 2016-09-28 18:00 +0200
csiph-web