net: Use octal not symbolic permissions
Prefer the direct use of octal for permissions. Done with checkpatch -f --types=SYMBOLIC_PERMS --fix-inplace and some typing. Miscellanea: o Whitespace neatening around these conversions. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
cb6219a2f5
commit
d6444062f8
@@ -269,7 +269,7 @@ static int kcm_proc_register(struct net *net, struct kcm_seq_muxinfo *muxinfo)
|
||||
struct proc_dir_entry *p;
|
||||
int rc = 0;
|
||||
|
||||
p = proc_create_data(muxinfo->name, S_IRUGO, net->proc_net,
|
||||
p = proc_create_data(muxinfo->name, 0444, net->proc_net,
|
||||
muxinfo->seq_fops, muxinfo);
|
||||
if (!p)
|
||||
rc = -ENOMEM;
|
||||
@@ -406,7 +406,7 @@ static int kcm_proc_init_net(struct net *net)
|
||||
{
|
||||
int err;
|
||||
|
||||
if (!proc_create("kcm_stats", S_IRUGO, net->proc_net,
|
||||
if (!proc_create("kcm_stats", 0444, net->proc_net,
|
||||
&kcm_stats_seq_fops)) {
|
||||
err = -ENOMEM;
|
||||
goto out_kcm_stats;
|
||||
|
Reference in New Issue
Block a user