Received: by 2002:a05:6a10:a0d1:0:0:0:0 with SMTP id j17csp3297786pxa; Tue, 18 Aug 2020 11:27:39 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzy9B5Kefqsc0ZzaTNJgc40zHjLiJ4hRd6Hn2vvE58eKnOpWTtlQkTCYYZKNr+RhWVksO6V X-Received: by 2002:a50:d75e:: with SMTP id i30mr21930152edj.246.1597775258380; Tue, 18 Aug 2020 11:27:38 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1597775258; cv=none; d=google.com; s=arc-20160816; b=G+/M2uVbQG2mByPw8RXnWOYLQY0LmGUtq8WOpCEQh4cFzoCOdrC3MBqI4rmkbttY+x 03SopxwJd9JtsF0/4SW0Avdtg0F5UM4JMXAa5C1PBLwKljB4CUOUh1EfsAyyKAAg81OS rJjJ88mxJpt9FVK3dQs2L2WiLXNlpMe/hP/OrLCPnkMsHQsB5095euaDw+hyrLneVhNe /wVcLWs8nY2ZVTwBkoviIEawUFYT8LVclQEHma+DXQNzDY7UFSptgTHVleY40CaZMTk2 4vDoHrKlwo3YcyWSEP9Rfgz3X6OwkxK+yCHgAUPBeIxFnJGqxHg7mLzhlpLfzJ+V/3Jr 7KZg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=0Hth/a69P7vg8FaTaRNdO7kfMZkUswtN4dxmz3WCvWk=; b=geCChBcddCiuexpPZM807U8bG7NPuTgNCz507pJ/mq6IpGSKur0wLkfSQsq7XiWMzB fbbqkWfkD1qUk1D+pXFGyDpVGRorKYpxYBQ8JmRxxYAHdu/VTNCRnpc396TQf1PIpN7K LNBvE4QH2eKkjWmYXE09RJZJNFa2XVd1qj+FWNiC6HWBh3S4O2B4BtNr6PtfM+s9X0Tt MrKeF/POjxe8IwfnUN1jNGekGsf1tbp3EpOiWEi+BMGjD78MjDZ2XVz1h3+X5QMeePha a1qIL+eSYfpbDmSx96ncJ5XPNoenLju9T4UIWadNDn6n0CRaeHqAHBkKSeufRqes9to1 2ANg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id r24si13424439edy.160.2020.08.18.11.27.13; Tue, 18 Aug 2020 11:27:38 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726651AbgHRS0U (ORCPT + 99 others); Tue, 18 Aug 2020 14:26:20 -0400 Received: from outgoing-auth-1.mit.edu ([18.9.28.11]:47320 "EHLO outgoing.mit.edu" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726570AbgHRS0U (ORCPT ); Tue, 18 Aug 2020 14:26:20 -0400 Received: from callcc.thunk.org (pool-108-49-65-20.bstnma.fios.verizon.net [108.49.65.20]) (authenticated bits=0) (User authenticated as tytso@ATHENA.MIT.EDU) by outgoing.mit.edu (8.14.7/8.12.4) with ESMTP id 07IIQGpa017009 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 18 Aug 2020 14:26:16 -0400 Received: by callcc.thunk.org (Postfix, from userid 15806) id 38C89420DC0; Tue, 18 Aug 2020 14:26:16 -0400 (EDT) Date: Tue, 18 Aug 2020 14:26:16 -0400 From: "Theodore Y. Ts'o" To: Kyoungho Koo Cc: Andreas Dilger , linux-ext4@vger.kernel.org Subject: Re: [PATCH] ext4: remove unused parameter of ext4_generic_delete_entry function Message-ID: <20200818182616.GA162457@mit.edu> References: <20200810080701.GA14160@koo-Z370-HD3> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200810080701.GA14160@koo-Z370-HD3> Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Mon, Aug 10, 2020 at 05:07:05PM +0900, Kyoungho Koo wrote: > The ext4_generic_delete_entry function defines the handle_t type > variable, handle, as a parameter, but it is not used. > > Signed-off-by: Kyoungho Koo Applied, thanks. - Ted