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 0621DEB64D7 for ; Wed, 21 Jun 2023 15:29:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233062AbjFUP3e (ORCPT ); Wed, 21 Jun 2023 11:29:34 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36722 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232874AbjFUP3c (ORCPT ); Wed, 21 Jun 2023 11:29:32 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0BA38DC for ; Wed, 21 Jun 2023 08:29:29 -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 8AF646159F for ; Wed, 21 Jun 2023 15:29:28 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 73BF8C433C0; Wed, 21 Jun 2023 15:29:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1687361368; bh=aMAP5HWouNXWj6lc9xZVQR+piCW8BBPoG08vjJRTNDw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=svJyCzRIhAY5SjfRwTD55zgxnioupIoUMBqNxPDrzRKxzxbAGSh6gaJfyvaoja4we QzzPwtQd7OkQ/iDX51qSdVIXP5aq1ypHy1C7vNI9J1rj6IrqXoUlylr6N9rJQinZ2r HXDBeBRudys+fPSFGI+PxYhHyo/nhqgRE8ktuZ9g= Date: Wed, 21 Jun 2023 17:29:25 +0200 From: Greg Kroah-Hartman To: Jeff Layton Cc: Christian Brauner , Arve =?iso-8859-1?B?SGr4bm5lduVn?= , Todd Kjos , Martijn Coenen , Joel Fernandes , Carlos Llamas , Suren Baghdasaryan , Al Viro , Jan Kara , linux-kernel@vger.kernel.org Subject: Re: [PATCH 04/79] binderfs: switch to new ctime accessors Message-ID: <2023062156-diagnoses-jellied-beb2@gregkh> References: <20230621144507.55591-1-jlayton@kernel.org> <20230621144735.55953-1-jlayton@kernel.org> <20230621144735.55953-3-jlayton@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230621144735.55953-3-jlayton@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 21, 2023 at 10:45:17AM -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/android/binderfs.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > Acked-by: Greg Kroah-Hartman