From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7673D1D6BB; Thu, 30 Oct 2025 05:32:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761802347; cv=none; b=Pj/2/lGDES0xsDnRCxn4sMD4z0kZc8PWAeTgg3TT1zT/8KD/yQfC6acoCnUsA5PR56DnxO/G8vSOMpbGmlm1f9NLuwmQ4s0/T3iZkxP9ZD4sYJZgeemsG+EIZ9nCBGxDF137MU+MWyWUxIPMQ59g71dHoA8E5WIev+M869G0rWs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761802347; c=relaxed/simple; bh=RKZ55e/BX3Bsy8j/0XAduETGE5FWfV4zDbi6AF2gqjA=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=tc+K2iDQSXPcvEmEQIBmDfC5mRctw6ILtjLA5lYMt1wlQQzC/R+5UncTFFhXtPcEo3jLY2lnMUmgt2yvdC92n/Db73QMD5pCqL81mBe4qt6B/kog7ZO3PZKrFNYEwKRwqNv5aRfYB9PRigSHIpP12lMdcTXPruguUeG0H4RoXqg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=pWZ489wE; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="pWZ489wE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 66130C4CEF1; Thu, 30 Oct 2025 05:32:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1761802347; bh=RKZ55e/BX3Bsy8j/0XAduETGE5FWfV4zDbi6AF2gqjA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pWZ489wE0/m49sWPsV/Rq7Bz2NYaTqU6b90Ymhx8VEoudj0uV9WaKuBWHmU1WM/O/ xHxhdceQwVt+HGjb6niSCPHuQjJXzAwL234wCbKVKiqhVjf1ULVAxCbXZwSilitsRx Mpjs6IhZxNwipGykTOUfLGAGdCRTODuSqIbQP0QE= Date: Thu, 30 Oct 2025 06:32:24 +0100 From: Greg Kroah-Hartman To: NeilBrown Cc: Alexander Viro , Christian Brauner , Amir Goldstein , Jan Kara , linux-fsdevel@vger.kernel.org, Jeff Layton , Chris Mason , David Sterba , David Howells , "Rafael J. Wysocki" , Danilo Krummrich , Tyler Hicks , Miklos Szeredi , Chuck Lever , Olga Kornievskaia , Dai Ngo , Namjae Jeon , Steve French , Sergey Senozhatsky , Carlos Maiolino , John Johansen , Paul Moore , James Morris , "Serge E. Hallyn" , Stephen Smalley , Ondrej Mosnacek , Mateusz Guzik , Lorenzo Stoakes , Stefan Berger , "Darrick J. Wong" , linux-kernel@vger.kernel.org, netfs@lists.linux.dev, ecryptfs@vger.kernel.org, linux-nfs@vger.kernel.org, linux-unionfs@vger.kernel.org, linux-cifs@vger.kernel.org, linux-xfs@vger.kernel.org, apparmor@lists.ubuntu.com, linux-security-module@vger.kernel.org, selinux@vger.kernel.org Subject: Re: [PATCH v4 01/14] debugfs: rename end_creating() to debugfs_end_creating() Message-ID: <2025103013-overcome-jailhouse-538b@gregkh> References: <20251029234353.1321957-1-neilb@ownmail.net> <20251029234353.1321957-2-neilb@ownmail.net> Precedence: bulk X-Mailing-List: linux-xfs@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20251029234353.1321957-2-neilb@ownmail.net> On Thu, Oct 30, 2025 at 10:31:01AM +1100, NeilBrown wrote: > From: NeilBrown > > By not using the generic end_creating() name here we are free to use it > more globally for a more generic function. > This should have been done when start_creating() was renamed. > > For consistency, also rename failed_creating(). > > Reviewed-by: Amir Goldstein > Reviewed-by: Jeff Layton > Signed-off-by: NeilBrown > --- > fs/debugfs/inode.c | 26 +++++++++++++------------- > 1 file changed, 13 insertions(+), 13 deletions(-) Acked-by: Greg Kroah-Hartman