提交 710a0647 编写于 作者: M Markus Elfring 提交者: Paul Moore

selinuxfs: Use seq_puts() in sel_avc_stats_seq_show()

A string which did not contain data format specifications should be put
into a sequence. Thus use the corresponding function "seq_puts".

This issue was detected by using the Coccinelle software.
Signed-off-by: NMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: NPaul Moore <paul@paul-moore.com>
上级 8ee4586c
...@@ -1456,10 +1456,10 @@ static int sel_avc_stats_seq_show(struct seq_file *seq, void *v) ...@@ -1456,10 +1456,10 @@ static int sel_avc_stats_seq_show(struct seq_file *seq, void *v)
{ {
struct avc_cache_stats *st = v; struct avc_cache_stats *st = v;
if (v == SEQ_START_TOKEN) if (v == SEQ_START_TOKEN) {
seq_printf(seq, "lookups hits misses allocations reclaims " seq_puts(seq,
"frees\n"); "lookups hits misses allocations reclaims frees\n");
else { } else {
unsigned int lookups = st->lookups; unsigned int lookups = st->lookups;
unsigned int misses = st->misses; unsigned int misses = st->misses;
unsigned int hits = lookups - misses; unsigned int hits = lookups - misses;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册