* [patch] Staging: silicom: remove S_IWOTH from proc declaration
@ 2012-09-12 7:57 Dan Carpenter
2012-09-12 18:31 ` Daniel Cotey
0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2012-09-12 7:57 UTC (permalink / raw)
To: kernel-janitors
We don't need these to be world writable or group writable.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
This is linux-next stuff. The code in bp_proc.c is ifdefed out, and I
wasn't able to compile it.
diff --git a/drivers/staging/silicom/bp_proc.c b/drivers/staging/silicom/bp_proc.c
index 4fe862d..6ad4b27 100644
--- a/drivers/staging/silicom/bp_proc.c
+++ b/drivers/staging/silicom/bp_proc.c
@@ -106,8 +106,7 @@ bypass_proc_create_entry_sd(struct pfs_unit *pfs_unit_curr,
pfs_unit_curr->proc_entry = create_proc_entry(pfs_unit_curr->proc_name,
S_IFREG | S_IRUSR |
S_IWUSR | S_IRGRP |
- S_IWGRP | S_IROTH |
- S_IWOTH, parent_pfs);
+ S_IROTH, parent_pfs);
if (pfs_unit_curr->proc_entry = 0) {
return -1;
diff --git a/drivers/staging/silicom/bp_mod.c b/drivers/staging/silicom/bp_mod.c
index 0d96196..6e999c7 100644
--- a/drivers/staging/silicom/bp_mod.c
+++ b/drivers/staging/silicom/bp_mod.c
@@ -7724,8 +7724,7 @@ bypass_proc_create_entry_sd(struct pfs_unit_sd *pfs_unit_curr,
pfs_unit_curr->proc_entry = create_proc_entry(pfs_unit_curr->proc_name,
S_IFREG | S_IRUSR |
S_IWUSR | S_IRGRP |
- S_IWGRP | S_IROTH |
- S_IWOTH, parent_pfs);
+ S_IROTH, parent_pfs);
if (pfs_unit_curr->proc_entry = 0) {
return -1;
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [patch] Staging: silicom: remove S_IWOTH from proc declaration
2012-09-12 7:57 [patch] Staging: silicom: remove S_IWOTH from proc declaration Dan Carpenter
@ 2012-09-12 18:31 ` Daniel Cotey
0 siblings, 0 replies; 2+ messages in thread
From: Daniel Cotey @ 2012-09-12 18:31 UTC (permalink / raw)
To: kernel-janitors
On Wed, Sep 12, 2012 at 10:57:33AM +0300, Dan Carpenter wrote:
> We don't need these to be world writable or group writable.
>
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
> This is linux-next stuff. The code in bp_proc.c is ifdefed out, and I
> wasn't able to compile it.
>
> diff --git a/drivers/staging/silicom/bp_proc.c b/drivers/staging/silicom/bp_proc.c
> index 4fe862d..6ad4b27 100644
> --- a/drivers/staging/silicom/bp_proc.c
> +++ b/drivers/staging/silicom/bp_proc.c
> @@ -106,8 +106,7 @@ bypass_proc_create_entry_sd(struct pfs_unit *pfs_unit_curr,
> pfs_unit_curr->proc_entry = create_proc_entry(pfs_unit_curr->proc_name,
> S_IFREG | S_IRUSR |
> S_IWUSR | S_IRGRP |
> - S_IWGRP | S_IROTH |
> - S_IWOTH, parent_pfs);
> + S_IROTH, parent_pfs);
> if (pfs_unit_curr->proc_entry = 0) {
>
> return -1;
> diff --git a/drivers/staging/silicom/bp_mod.c b/drivers/staging/silicom/bp_mod.c
> index 0d96196..6e999c7 100644
> --- a/drivers/staging/silicom/bp_mod.c
> +++ b/drivers/staging/silicom/bp_mod.c
> @@ -7724,8 +7724,7 @@ bypass_proc_create_entry_sd(struct pfs_unit_sd *pfs_unit_curr,
> pfs_unit_curr->proc_entry = create_proc_entry(pfs_unit_curr->proc_name,
> S_IFREG | S_IRUSR |
> S_IWUSR | S_IRGRP |
> - S_IWGRP | S_IROTH |
> - S_IWOTH, parent_pfs);
> + S_IROTH, parent_pfs);
> if (pfs_unit_curr->proc_entry = 0) {
>
> return -1;
I need to check my test setup tonight, but I do think apps need group write.
Regards,
Daniel Cotey
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-09-12 18:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-12 7:57 [patch] Staging: silicom: remove S_IWOTH from proc declaration Dan Carpenter
2012-09-12 18:31 ` Daniel Cotey
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox