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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3654EC0015E for ; Wed, 21 Jun 2023 15:30:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233330AbjFUPaB (ORCPT ); Wed, 21 Jun 2023 11:30:01 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36980 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233379AbjFUP3r (ORCPT ); Wed, 21 Jun 2023 11:29:47 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1DD09A1 for ; Wed, 21 Jun 2023 08:29:47 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 9F03F6159F for ; Wed, 21 Jun 2023 15:29:46 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 89689C433C0; Wed, 21 Jun 2023 15:29:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1687361386; bh=3HpyoVVBEGjHA/+oLKQ/TX+H2SAn3NgTGD89AcrwTEw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=rGJpelspCVuXQTYk3YQNvDeP7rFnNbjuWqmOOP1UzShLdJ64mSzFm4X0rHvvHSYmH PjrU3gXe8dRyGzJk3YA+udN8OZs+xsNH7iu4mOdoYwoFL35IuSU7bqwvF2ICYXQYyH nxQ07pZqhRkjImxTEXn39sOcrNFFGeuPBRvOXcSk= Date: Wed, 21 Jun 2023 17:29:43 +0200 From: Greg Kroah-Hartman To: Jeff Layton Cc: Christian Brauner , "Rafael J. Wysocki" , Al Viro , Jan Kara , linux-kernel@vger.kernel.org Subject: Re: [PATCH 21/79] debugfs: switch to new ctime accessors Message-ID: <2023062137-crushed-upstairs-fe38@gregkh> References: <20230621144507.55591-1-jlayton@kernel.org> <20230621144735.55953-1-jlayton@kernel.org> <20230621144735.55953-20-jlayton@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230621144735.55953-20-jlayton@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 21, 2023 at 10:45:34AM -0400, Jeff Layton wrote: > In later patches, we're going to change how the ctime.tv_nsec field is > utilized. Switch to using accessor functions instead of raw accesses of > inode->i_ctime. > > Signed-off-by: Jeff Layton Acked-by: Greg Kroah-Hartman