From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A30B9C433E6 for ; Tue, 9 Feb 2021 17:14:33 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id EF0CA64EC2 for ; Tue, 9 Feb 2021 17:14:32 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org EF0CA64EC2 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=lst.de Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 8151B6B006E; Tue, 9 Feb 2021 12:14:32 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 7C4606B0070; Tue, 9 Feb 2021 12:14:32 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 700BB6B0071; Tue, 9 Feb 2021 12:14:32 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0138.hostedemail.com [216.40.44.138]) by kanga.kvack.org (Postfix) with ESMTP id 5193F6B006E for ; Tue, 9 Feb 2021 12:14:32 -0500 (EST) Received: from smtpin04.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay02.hostedemail.com (Postfix) with ESMTP id 6AA1B3643 for ; Tue, 9 Feb 2021 17:14:30 +0000 (UTC) X-FDA: 77799378300.04.toes67_590360d27609 Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin04.hostedemail.com (Postfix) with ESMTP id DF57580846B0 for ; Tue, 9 Feb 2021 17:14:29 +0000 (UTC) X-HE-Tag: toes67_590360d27609 X-Filterd-Recvd-Size: 3717 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) by imf30.hostedemail.com (Postfix) with ESMTP for ; Tue, 9 Feb 2021 17:14:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To: Content-Type:Content-ID:Content-Description; bh=jvggammSvObo4RoSuyeZ2Zo9ElC7zgmHWypynsiC2QE=; b=COwEEgjwD0Y9KZMkKHwzMrEpRO 6t/TvPfp1sgUlkaEUsVD7k3dNWKZiGxqFLHKWT9NvAFmqyDi/yP5r14JWZo/OV5909xUL8AfVd1tV Fz69D6fl5Y08WD2b0GzltNSiUJREUSvUFejASpzijYDmIouo8Y2+sh02+0qk2xG7ZzGzDi8sw7YZv OvJ+3osL6jcD6ZTBFC5ZKgrD0dQJ9O9pfDdr1pocJqU496c9ThZi+pDJdu6uV/5NM2/lO+W/lc720 5agYoZxT8qiOnqfMnjelVYj2OZ1uxMWg/d5h1RCH7pEyeoS8c1Er2SWhmMWvOMcYuaZ00cpfjiN1e PiIub22w==; Received: from [2001:4bb8:184:7d04:8942:6d04:f432:bc43] (helo=localhost) by casper.infradead.org with esmtpsa (Exim 4.94 #2 (Red Hat Linux)) id 1l9Waj-007jC2-UC; Tue, 09 Feb 2021 17:14:22 +0000 From: Christoph Hellwig To: Jens Axboe Cc: Andrew Morton , "Rafael J. Wysocki" , linux-mm@kvack.org, linux-block@vger.kernel.org Subject: [PATCH] mm: simplify swapdev_block Date: Tue, 9 Feb 2021 18:14:19 +0100 Message-Id: <20210209171419.4003839-2-hch@lst.de> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210209171419.4003839-1-hch@lst.de> References: <20210209171419.4003839-1-hch@lst.de> MIME-Version: 1.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org. See http://www.infradead.org/rpr.html Content-Transfer-Encoding: quoted-printable X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Open code the parts of map_swap_entry that was actually used by swapdev_block, and remove the now unused map_swap_entry function. Signed-off-by: Christoph Hellwig --- mm/swapfile.c | 30 +++--------------------------- 1 file changed, 3 insertions(+), 27 deletions(-) diff --git a/mm/swapfile.c b/mm/swapfile.c index 351999a84e6e4e..21a98cb8d646e3 100644 --- a/mm/swapfile.c +++ b/mm/swapfile.c @@ -1790,9 +1790,6 @@ int free_swap_and_cache(swp_entry_t entry) } =20 #ifdef CONFIG_HIBERNATION - -static sector_t map_swap_entry(swp_entry_t, struct block_device**); - /* * Find the swap type that corresponds to given device (if any). * @@ -1852,12 +1849,13 @@ int find_first_swap(dev_t *device) */ sector_t swapdev_block(int type, pgoff_t offset) { - struct block_device *bdev; struct swap_info_struct *si =3D swap_type_to_swap_info(type); + struct swap_extent *se; =20 if (!si || !(si->flags & SWP_WRITEOK)) return 0; - return map_swap_entry(swp_entry(type, offset), &bdev); + se =3D offset_to_swap_extent(si, offset); + return se->start_block + (offset - se->start_page); } =20 /* @@ -2283,28 +2281,6 @@ static void drain_mmlist(void) spin_unlock(&mmlist_lock); } =20 -#ifdef CONFIG_HIBERNATION -/* - * Use this swapdev's extent info to locate the (PAGE_SIZE) block which - * corresponds to page offset for the specified swap entry. - * Note that the type of this function is sector_t, but it returns page = offset - * into the bdev, not sector offset. - */ -static sector_t map_swap_entry(swp_entry_t entry, struct block_device **= bdev) -{ - struct swap_info_struct *sis; - struct swap_extent *se; - pgoff_t offset; - - sis =3D swp_swap_info(entry); - *bdev =3D sis->bdev; - - offset =3D swp_offset(entry); - se =3D offset_to_swap_extent(sis, offset); - return se->start_block + (offset - se->start_page); -} -#endif - /* * Free all of a swapdev's extent information */ --=20 2.29.2