Skip to content

Commit

Permalink
dm zoned: remove spurious newlines from debugging messages
Browse files Browse the repository at this point in the history
DMDEBUG will already add a newline to the logging messages, so we
shouldn't be adding it to the message itself.

Signed-off-by: Hannes Reinecke <[email protected]>
Reviewed-by: Damien Le Moal <[email protected]>
Signed-off-by: Mike Snitzer <[email protected]>
  • Loading branch information
hreinecke authored and snitm committed May 20, 2020
1 parent 74244b5 commit 49de3b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions drivers/md/dm-zoned-reclaim.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ static int dmz_do_reclaim(struct dmz_reclaim *zrc)

ret = dmz_flush_metadata(zrc->metadata);
if (ret) {
DMDEBUG("(%s): Metadata flush for zone %u failed, err %d\n",
DMDEBUG("(%s): Metadata flush for zone %u failed, err %d",
dmz_metadata_label(zmd), rzone->id, ret);
return ret;
}
Expand Down Expand Up @@ -491,7 +491,7 @@ static void dmz_reclaim_work(struct work_struct *work)

ret = dmz_do_reclaim(zrc);
if (ret) {
DMDEBUG("(%s): Reclaim error %d\n",
DMDEBUG("(%s): Reclaim error %d",
dmz_metadata_label(zmd), ret);
if (!dmz_check_dev(zmd))
return;
Expand Down
4 changes: 2 additions & 2 deletions drivers/md/dm-zoned-target.c
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ static void dmz_flush_work(struct work_struct *work)
/* Flush dirty metadata blocks */
ret = dmz_flush_metadata(dmz->metadata);
if (ret)
DMDEBUG("(%s): Metadata flush failed, rc=%d\n",
DMDEBUG("(%s): Metadata flush failed, rc=%d",
dmz_metadata_label(dmz->metadata), ret);

/* Process queued flush requests */
Expand Down Expand Up @@ -679,7 +679,7 @@ static int dmz_map(struct dm_target *ti, struct bio *bio)
/* Now ready to handle this BIO */
ret = dmz_queue_chunk_work(dmz, bio);
if (ret) {
DMDEBUG("(%s): BIO op %d, can't process chunk %llu, err %i\n",
DMDEBUG("(%s): BIO op %d, can't process chunk %llu, err %i",
dmz_metadata_label(zmd),
bio_op(bio), (u64)dmz_bio_chunk(zmd, bio),
ret);
Expand Down

0 comments on commit 49de3b7

Please sign in to comment.