|
@@ -1456,10 +1456,10 @@ static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
|
|
|
{
|
|
|
struct avc_cache_stats *st = v;
|
|
|
|
|
|
- if (v == SEQ_START_TOKEN)
|
|
|
- seq_printf(seq, "lookups hits misses allocations reclaims "
|
|
|
- "frees\n");
|
|
|
- else {
|
|
|
+ if (v == SEQ_START_TOKEN) {
|
|
|
+ seq_puts(seq,
|
|
|
+ "lookups hits misses allocations reclaims frees\n");
|
|
|
+ } else {
|
|
|
unsigned int lookups = st->lookups;
|
|
|
unsigned int misses = st->misses;
|
|
|
unsigned int hits = lookups - misses;
|