Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1637016
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 1/4] s390/cache: Combine two function calls into one in show_cacheinfo() |
| Date | 2017-05-07 23:50 +0200 |
| Message-ID | <tECdY-30b-25@gated-at.bofh.it> (permalink) |
| References | <tECdY-30b-17@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Markus Elfring <elfring@users.sourceforge.net> Date: Sun, 7 May 2017 17:53:31 +0200 A bit of data was put into a sequence by two separate function calls. Print the same data by a single function call instead. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> --- arch/s390/kernel/cache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/s390/kernel/cache.c b/arch/s390/kernel/cache.c index c8a83276a4dc..9e9752ce3233 100644 --- a/arch/s390/kernel/cache.c +++ b/arch/s390/kernel/cache.c @@ -82,8 +82,8 @@ void show_cacheinfo(struct seq_file *m) cache->disable_sysfs ? "Shared" : "Private"); seq_printf(m, "size=%dK ", cache->size >> 10); seq_printf(m, "line_size=%u ", cache->coherency_line_size); - seq_printf(m, "associativity=%d", cache->ways_of_associativity); - seq_puts(m, "\n"); + seq_printf(m, "associativity=%d\n", + cache->ways_of_associativity); } } -- 2.12.2
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 1/4] s390/cache: Combine two function calls into one in show_cacheinfo() SF Markus Elfring <elfring@users.sourceforge.net> - 2017-05-07 23:50 +0200
csiph-web