From nobody Mon Sep 29 21:17:52 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 94A4CC00140 for ; Mon, 15 Aug 2022 23:09:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352945AbiHOXJ1 (ORCPT ); Mon, 15 Aug 2022 19:09:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:32772 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1352969AbiHOXGz (ORCPT ); Mon, 15 Aug 2022 19:06:55 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D28CE78BDE; Mon, 15 Aug 2022 12:59:01 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 0599DCE12C1; Mon, 15 Aug 2022 19:59:00 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9791BC4314B; Mon, 15 Aug 2022 19:58:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1660593538; bh=quscIzqOezI43fSI8mIp1WPLb6sxj7Y8IUlqlZvAgEc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=0wxceTWKprlQ0Z7C9wMoqwX4EdeOk1VN2W+7idw00J0cZ9XOETAqHAX57Hl3k7fs+ jn2kEKACglfdxnMGYH485fMs5yxkar13z3H54NIX5CwZeOgRsaOIF7Gtfj5eAAih6g JoiGyWcXVaFPYlHYCB7N1A3+7fQ6ZCaoaNj5GlIM= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Mikulas Patocka , Mike Snitzer , Sasha Levin Subject: [PATCH 5.19 0276/1157] dm writecache: return void from functions Date: Mon, 15 Aug 2022 19:53:52 +0200 Message-Id: <20220815180450.653757030@linuxfoundation.org> X-Mailer: git-send-email 2.37.2 In-Reply-To: <20220815180439.416659447@linuxfoundation.org> References: <20220815180439.416659447@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Mikulas Patocka [ Upstream commit 9bc0c92e4b82adb017026dbb2aa816b1ac2bef31 ] The functions writecache_map_remap_origin and writecache_bio_copy_ssd only return a single value, thus they can be made to return void. This helps simplify the following IO accounting changes. Signed-off-by: Mikulas Patocka Signed-off-by: Mike Snitzer Signed-off-by: Sasha Levin --- drivers/md/dm-writecache.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/drivers/md/dm-writecache.c b/drivers/md/dm-writecache.c index d74c5a7a0ab4..e4753e8c46d3 100644 --- a/drivers/md/dm-writecache.c +++ b/drivers/md/dm-writecache.c @@ -1329,8 +1329,8 @@ enum wc_map_op { WC_MAP_ERROR, }; =20 -static enum wc_map_op writecache_map_remap_origin(struct dm_writecache *wc= , struct bio *bio, - struct wc_entry *e) +static void writecache_map_remap_origin(struct dm_writecache *wc, struct b= io *bio, + struct wc_entry *e) { if (e) { sector_t next_boundary =3D @@ -1338,8 +1338,6 @@ static enum wc_map_op writecache_map_remap_origin(str= uct dm_writecache *wc, stru if (next_boundary < bio->bi_iter.bi_size >> SECTOR_SHIFT) dm_accept_partial_bio(bio, next_boundary); } - - return WC_MAP_REMAP_ORIGIN; } =20 static enum wc_map_op writecache_map_read(struct dm_writecache *wc, struct= bio *bio) @@ -1366,14 +1364,15 @@ static enum wc_map_op writecache_map_read(struct dm= _writecache *wc, struct bio * map_op =3D WC_MAP_REMAP; } } else { - map_op =3D writecache_map_remap_origin(wc, bio, e); + writecache_map_remap_origin(wc, bio, e); + map_op =3D WC_MAP_REMAP_ORIGIN; } =20 return map_op; } =20 -static enum wc_map_op writecache_bio_copy_ssd(struct dm_writecache *wc, st= ruct bio *bio, - struct wc_entry *e, bool search_used) +static void writecache_bio_copy_ssd(struct dm_writecache *wc, struct bio *= bio, + struct wc_entry *e, bool search_used) { unsigned bio_size =3D wc->block_size; sector_t start_cache_sec =3D cache_sector(wc, e); @@ -1419,8 +1418,6 @@ static enum wc_map_op writecache_bio_copy_ssd(struct = dm_writecache *wc, struct b } else { writecache_schedule_autocommit(wc); } - - return WC_MAP_REMAP; } =20 static enum wc_map_op writecache_map_write(struct dm_writecache *wc, struc= t bio *bio) @@ -1458,7 +1455,8 @@ static enum wc_map_op writecache_map_write(struct dm_= writecache *wc, struct bio direct_write: wc->stats.writes_around++; e =3D writecache_find_entry(wc, bio->bi_iter.bi_sector, WFE_RETURN_FOL= LOWING); - return writecache_map_remap_origin(wc, bio, e); + writecache_map_remap_origin(wc, bio, e); + return WC_MAP_REMAP_ORIGIN; } wc->stats.writes_blocked_on_freelist++; writecache_wait_on_freelist(wc); @@ -1469,10 +1467,12 @@ static enum wc_map_op writecache_map_write(struct d= m_writecache *wc, struct bio wc->uncommitted_blocks++; wc->stats.writes_allocate++; bio_copy: - if (WC_MODE_PMEM(wc)) + if (WC_MODE_PMEM(wc)) { bio_copy_block(wc, bio, memory_data(wc, e)); - else - return writecache_bio_copy_ssd(wc, bio, e, search_used); + } else { + writecache_bio_copy_ssd(wc, bio, e, search_used); + return WC_MAP_REMAP; + } } while (bio->bi_iter.bi_size); =20 if (unlikely(bio->bi_opf & REQ_FUA || wc->uncommitted_blocks >=3D wc->aut= ocommit_blocks)) --=20 2.35.1