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 7E853C6379F for ; Fri, 17 Feb 2023 14:11:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230032AbjBQOL0 (ORCPT ); Fri, 17 Feb 2023 09:11:26 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35418 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229504AbjBQOLZ (ORCPT ); Fri, 17 Feb 2023 09:11:25 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 694A46ABED for ; Fri, 17 Feb 2023 06:11:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=gvhxIMGb+GfpdmNDiHw0ab7BkVuDVyTlk7QBWRpxMNg=; b=ZvBWgqcKoPpCtyPgbK1azB55jH 2Dw0/95tlgFNzXTe0KVz73ZWcLyf2frKWFjcNmH/b0oJEy6WHyXNytDxPlBFkgR9geV9kYgCQKIgH r4+lw7+cY1x7Yx4xhIeL7b/sZjxovrkescffPrlIDZhdy72nDXrQx3hlr2s4G2Uxuznx6/Ced9o0B jPIJJmS7PtFAYARnVPAFwMlarJqRrzT/VRKTn3Uoanbt0+U8qlLGTmJjwu2s9YfsnXc1pkURMkM53 dp8irjRiLmzKGw/3yRHyM3Vi7Ib1QzHTtQi9bMM4ZcMb1cbqdJFX1aaHSWcVDf6tqKZY1Jgs+mTPw 9DNjcrRg==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1pT1Rs-009NJp-8N; Fri, 17 Feb 2023 14:10:52 +0000 Date: Fri, 17 Feb 2023 14:10:52 +0000 From: Matthew Wilcox To: Jiapeng Chong Cc: Liam.Howlett@oracle.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Abaci Robot Subject: Re: [PATCH] maple_tree: Remove some unused functions Message-ID: References: <20230217084647.50471-1-jiapeng.chong@linux.alibaba.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230217084647.50471-1-jiapeng.chong@linux.alibaba.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Feb 17, 2023 at 04:46:47PM +0800, Jiapeng Chong wrote: > These functions are defined in the maple_tree.c file, but not called > elsewhere, so delete these unused functions. These are for a feature that hasn't been implemented yet. They're static inline, so they cost nothing to keep around. NAK.