diff options
author | Mikulas Patocka <mpatocka@redhat.com> | 2023-04-18 15:56:09 -0400 |
---|---|---|
committer | Mike Snitzer <snitzer@kernel.org> | 2023-04-19 11:07:47 -0400 |
commit | e3675dc1e7ea2e4e5a6527fa7068e9fcbc2475cc (patch) | |
tree | 86dafbf2b5fd47af83dca66413de6e08559e67ff /drivers/md | |
parent | 98dba02d9a93eec11bffbb93c7c51624290702d2 (diff) |
dm flakey: remove trailing space in the table line
Don't return a trailing space in the output of STATUSTYPE_TABLE.
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/dm-flakey.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/md/dm-flakey.c b/drivers/md/dm-flakey.c index ef07b294e550..948b6b5ee5f2 100644 --- a/drivers/md/dm-flakey.c +++ b/drivers/md/dm-flakey.c @@ -430,21 +430,21 @@ static void flakey_status(struct dm_target *ti, status_type_t type, break; case STATUSTYPE_TABLE: - DMEMIT("%s %llu %u %u ", fc->dev->name, + DMEMIT("%s %llu %u %u", fc->dev->name, (unsigned long long)fc->start, fc->up_interval, fc->down_interval); drop_writes = test_bit(DROP_WRITES, &fc->flags); error_writes = test_bit(ERROR_WRITES, &fc->flags); - DMEMIT("%u ", drop_writes + error_writes + (fc->corrupt_bio_byte > 0) * 5); + DMEMIT(" %u", drop_writes + error_writes + (fc->corrupt_bio_byte > 0) * 5); if (drop_writes) - DMEMIT("drop_writes "); + DMEMIT(" drop_writes"); else if (error_writes) - DMEMIT("error_writes "); + DMEMIT(" error_writes"); if (fc->corrupt_bio_byte) - DMEMIT("corrupt_bio_byte %u %c %u %u ", + DMEMIT(" corrupt_bio_byte %u %c %u %u", fc->corrupt_bio_byte, (fc->corrupt_bio_rw == WRITE) ? 'w' : 'r', fc->corrupt_bio_value, fc->corrupt_bio_flags); |