Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1496473
| From | SF Markus Elfring <elfring@users.sourceforge.net> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 23/54] md/raid1: Replace a seq_printf() call by seq_puts() in raid1_status() |
| Date | 2016-10-06 11:30 +0200 |
| Message-ID | <spda1-6DS-3@gated-at.bofh.it> (permalink) |
| References | <qEuGl-43C-5@gated-at.bofh.it> <spcH0-6dt-53@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Markus Elfring <elfring@users.sourceforge.net> Date: Tue, 4 Oct 2016 21:16:13 +0200 The script "checkpatch.pl" pointed information out like the following. WARNING: Prefer seq_puts to seq_printf Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> --- drivers/md/raid1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index 95f6098..ec6aafb 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c @@ -1417,7 +1417,7 @@ static void raid1_status(struct seq_file *seq, struct mddev *mddev) rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_"); } rcu_read_unlock(); - seq_printf(seq, "]"); + seq_puts(seq, "]"); } static void raid1_error(struct mddev *mddev, struct md_rdev *rdev) -- 2.10.1
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 23/54] md/raid1: Replace a seq_printf() call by seq_puts() in raid1_status() SF Markus Elfring <elfring@users.sourceforge.net> - 2016-10-06 11:30 +0200
csiph-web