All of lore.kernel.org
 help / color / mirror / Atom feed
* [Linux-kernel-mentees] [PATCH v2] replaced both the symbolic permissions S_IXUGO and S_IRUGO to octal permissions 0111 and 0444
@ 2019-06-22  7:17 ` Sushma Unnibhavi
  0 siblings, 0 replies; 4+ messages in thread
From: sushmaunnibhavi425 @ 2019-06-22  7:17 UTC (permalink / raw)


Signed-off-by: Sushma Unnibhavi <sushmaunnibhavi425 at gmail.com>
---
Changes in v2:changed both symbolic permissions to octal
 drivers/staging/rtl8723bs/os_dep/rtw_proc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/os_dep/rtw_proc.c b/drivers/staging/rtl8723bs/os_dep/rtw_proc.c
index fd9dfb953ada..f4292a2fd011 100644
--- a/drivers/staging/rtl8723bs/os_dep/rtw_proc.c
+++ b/drivers/staging/rtl8723bs/os_dep/rtw_proc.c
@@ -21,7 +21,7 @@ inline struct proc_dir_entry *rtw_proc_create_dir(const char *name, struct proc_
 {
 	struct proc_dir_entry *entry;
 
-	entry = proc_mkdir_data(name, 0444|S_IXUGO, parent, data);
+	entry = proc_mkdir_data(name, 0444|0111, parent, data);
 
 	return entry;
 }
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-06-22  7:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-22  7:17 [Linux-kernel-mentees] [PATCH v2] replaced both the symbolic permissions S_IXUGO and S_IRUGO to octal permissions 0111 and 0444 sushmaunnibhavi425
2019-06-22  7:17 ` Sushma Unnibhavi
2019-06-22  7:29 ` gregkh
2019-06-22  7:29   ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.