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 AE6B6EB64D7 for ; Wed, 21 Jun 2023 15:29:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233308AbjFUP3o (ORCPT ); Wed, 21 Jun 2023 11:29:44 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37058 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233081AbjFUP3k (ORCPT ); Wed, 21 Jun 2023 11:29:40 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 214FDD2 for ; Wed, 21 Jun 2023 08:29:37 -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 B117E6159F for ; Wed, 21 Jun 2023 15:29:36 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C3ACBC433C0; Wed, 21 Jun 2023 15:29:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1687361376; bh=dgmuBTdS+zMEi3vb3kD/3iK+abX7cNk+YKlF7wbP0/8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=dD/D6x7/z3HCCGMZFDQ02XgBgXOo/KQPLberjqWoVTeVhiW7tmfra1ifV0AoUXv3Z B1+/3kDIHl2frF4ilC51GIxBcCKpOR/Rs7xLLcVEPg8PSyQGp9BsASsHMvqdm0Wj1Z pv0oQqpXB5Ijhc72fgK4UXGqNVorqRRwCxdQM5e8= Date: Wed, 21 Jun 2023 17:29:33 +0200 From: Greg Kroah-Hartman To: Jeff Layton Cc: Christian Brauner , Arnd Bergmann , Brad Warrum , Ritu Agarwal , Al Viro , Jan Kara , linux-kernel@vger.kernel.org Subject: Re: [PATCH 06/79] ibm: switch to new ctime accessors Message-ID: <2023062128-timing-tutor-efd5@gregkh> References: <20230621144507.55591-1-jlayton@kernel.org> <20230621144735.55953-1-jlayton@kernel.org> <20230621144735.55953-5-jlayton@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230621144735.55953-5-jlayton@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 21, 2023 at 10:45:19AM -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 > --- > drivers/misc/ibmasm/ibmasmfs.c | 2 +- > drivers/misc/ibmvmc.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) Acked-by: Greg Kroah-Hartman