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 55F7DEB64D8 for ; Wed, 21 Jun 2023 15:30:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233373AbjFUPac (ORCPT ); Wed, 21 Jun 2023 11:30:32 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37676 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233403AbjFUPaZ (ORCPT ); Wed, 21 Jun 2023 11:30:25 -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 798EC173F for ; Wed, 21 Jun 2023 08:30:11 -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 056D261574 for ; Wed, 21 Jun 2023 15:30:11 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id EBBDCC433CA; Wed, 21 Jun 2023 15:30:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1687361410; bh=+Oit9GrcNfl2S/cBViHtwSBfKUjJEhYCjVZKO8nX/GI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=auTBQVodHXCXfsQz1rj1S3/ZiMUJGWFiUXv9Iu3Ds6xnyUDgmAYtda7eEPeHR3mRO Fyf3I2vBF/7TJUjkTrXSO7+kPH4Jb137L2nrMuP+PF+NA6Q2oJVbG+WvvnOeJTaWbq HtflpY+q8ATqstxydkX9BnrSqF9skknYIHwAlTho= Date: Wed, 21 Jun 2023 17:30:07 +0200 From: Greg Kroah-Hartman To: Jeff Layton Cc: Christian Brauner , Tejun Heo , Al Viro , Jan Kara , linux-kernel@vger.kernel.org Subject: Re: [PATCH 43/79] kernfs: switch to new ctime accessors Message-ID: <2023062103-bodacious-spearmint-b107@gregkh> References: <20230621144507.55591-1-jlayton@kernel.org> <20230621144735.55953-1-jlayton@kernel.org> <20230621144735.55953-42-jlayton@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230621144735.55953-42-jlayton@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 21, 2023 at 10:45:56AM -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