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=-5.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=no 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 9CA89C432BE for ; Mon, 26 Jul 2021 03:42:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8178360E09 for ; Mon, 26 Jul 2021 03:42:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231553AbhGZDCN (ORCPT ); Sun, 25 Jul 2021 23:02:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51216 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230321AbhGZDCM (ORCPT ); Sun, 25 Jul 2021 23:02:12 -0400 Received: from out2.migadu.com (out2.migadu.com [IPv6:2001:41d0:2:aacc::]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EC5D0C061757; Sun, 25 Jul 2021 20:42:41 -0700 (PDT) Subject: Re: [PATCH V3 1/5] ext4: remove the 'group' parameter of ext4_trim_extent DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1627270960; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=oIKUOM1qFVtj2putWoUkmBP9qdwIlEl4y16S5EkJxhM=; b=jRbVPuzYsiHmKdgcx+SmQXSdLTB0AJM0432WkBZuCyyo75MkmDmt3MgObdowgvcQvp/sYq aJNxwFVsDCDzDuLVP8LPNvT3lJEy/p/fMosxLoUQFqZW8jj/kcUa4lUXq2dMKMPtNvs5o4 1X0TiTP8xqu9jNStUpqhCCE829IGTIg= To: Wang Jianchao , linux-ext4@vger.kernel.org, linux-kernel@vger.kernel.org Cc: tytso@mit.edu, adilger.kernel@dilger.ca References: <20210724074124.25731-1-jianchao.wan9@gmail.com> <20210724074124.25731-2-jianchao.wan9@gmail.com> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Guoqing Jiang Message-ID: <68e1530d-46c5-7879-0191-b62356759d3a@linux.dev> Date: Mon, 26 Jul 2021 11:42:33 +0800 MIME-Version: 1.0 In-Reply-To: <20210724074124.25731-2-jianchao.wan9@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: guoqing.jiang@linux.dev Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 7/24/21 3:41 PM, Wang Jianchao wrote: > -static int ext4_trim_extent(struct super_block *sb, int start, int count, > - ext4_group_t group, struct ext4_buddy *e4b) > +static int ext4_trim_extent(struct super_block *sb, > + int start, int count, struct ext4_buddy *e4b) Nit, seems only need to change the second line. Thanks, Guoqing