diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-01 13:55:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-01 13:55:57 -0400 |
commit | a7c2a10dab4e5122cbcfa3d5e9d589a52ccc2287 (patch) | |
tree | f031a4ae113e7669b56eb399c2e6f5285d2418f5 | |
parent | b14f7fb5aa2f4289e3a9fa8d7d92417ec8607498 (diff) | |
parent | 383795c206946777d87ed5f6d61d6659110f9344 (diff) |
Merge branch 'hotfixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6
* 'hotfixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6:
SELinux: /proc/mounts should show what it can
-rw-r--r-- | security/selinux/hooks.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c index 40d06c533f89..3ae9bec5a508 100644 --- a/security/selinux/hooks.c +++ b/security/selinux/hooks.c | |||
@@ -998,8 +998,12 @@ static int selinux_sb_show_options(struct seq_file *m, struct super_block *sb) | |||
998 | int rc; | 998 | int rc; |
999 | 999 | ||
1000 | rc = selinux_get_mnt_opts(sb, &opts); | 1000 | rc = selinux_get_mnt_opts(sb, &opts); |
1001 | if (rc) | 1001 | if (rc) { |
1002 | /* before policy load we may get EINVAL, don't show anything */ | ||
1003 | if (rc == -EINVAL) | ||
1004 | rc = 0; | ||
1002 | return rc; | 1005 | return rc; |
1006 | } | ||
1003 | 1007 | ||
1004 | selinux_write_opts(m, &opts); | 1008 | selinux_write_opts(m, &opts); |
1005 | 1009 | ||