diff options
Diffstat (limited to 'security/selinux/selinuxfs.c')
-rw-r--r-- | security/selinux/selinuxfs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c index cb3fd98fb05a..ce7171884223 100644 --- a/security/selinux/selinuxfs.c +++ b/security/selinux/selinuxfs.c | |||
@@ -1456,10 +1456,10 @@ static int sel_avc_stats_seq_show(struct seq_file *seq, void *v) | |||
1456 | { | 1456 | { |
1457 | struct avc_cache_stats *st = v; | 1457 | struct avc_cache_stats *st = v; |
1458 | 1458 | ||
1459 | if (v == SEQ_START_TOKEN) | 1459 | if (v == SEQ_START_TOKEN) { |
1460 | seq_printf(seq, "lookups hits misses allocations reclaims " | 1460 | seq_puts(seq, |
1461 | "frees\n"); | 1461 | "lookups hits misses allocations reclaims frees\n"); |
1462 | else { | 1462 | } else { |
1463 | unsigned int lookups = st->lookups; | 1463 | unsigned int lookups = st->lookups; |
1464 | unsigned int misses = st->misses; | 1464 | unsigned int misses = st->misses; |
1465 | unsigned int hits = lookups - misses; | 1465 | unsigned int hits = lookups - misses; |