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 25B9EEB64DA for ; Thu, 22 Jun 2023 11:44:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230334AbjFVLoC (ORCPT ); Thu, 22 Jun 2023 07:44:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44312 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229522AbjFVLoA (ORCPT ); Thu, 22 Jun 2023 07:44:00 -0400 Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 921CED3; Thu, 22 Jun 2023 04:43:58 -0700 (PDT) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 370A022B5E; Thu, 22 Jun 2023 11:43:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1687434237; h=from:from:reply-to:reply-to:date:date:message-id:message-id:to:to: cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=FEyhj1IOHZB3IaQBsoinC9oGgZa11+KkYT8glCRKH5Q=; b=DALUwca1dulL9GTvk7uIR6BsZ6yIBxeKotvJEMuk464EoFs9UP2DvpKXUIxA9+ZE77psKn u0qmF/DYfsVH+Jb/MGu+M0zylFBGiWHPtIzjrgvAJxJHnLcT6+Dil2fVcJGu08iL5v1xC8 gBW1QKheHlIHSSS7yoodTCC6nrS8Wyo= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1687434237; h=from:from:reply-to:reply-to:date:date:message-id:message-id:to:to: cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=FEyhj1IOHZB3IaQBsoinC9oGgZa11+KkYT8glCRKH5Q=; b=xdbWjpMCBRbK9k1FDLxDFmXeXHuodsy9TFoPxM+ARg4CygQlEBROfIBrxYnc7EuuJh0swZ V03xcCf7NyAqw5Dw== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 0BFB8132BE; Thu, 22 Jun 2023 11:43:57 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id MKQIAv0zlGQWWgAAMHmgww (envelope-from ); Thu, 22 Jun 2023 11:43:57 +0000 Date: Thu, 22 Jun 2023 13:37:32 +0200 From: David Sterba To: Jeff Layton Cc: Christian Brauner , David Sterba , Al Viro , Jan Kara , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 10/79] affs: switch to new ctime accessors Message-ID: <20230622113732.GS16168@suse.cz> Reply-To: dsterba@suse.cz References: <20230621144507.55591-1-jlayton@kernel.org> <20230621144735.55953-1-jlayton@kernel.org> <20230621144735.55953-9-jlayton@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230621144735.55953-9-jlayton@kernel.org> User-Agent: Mutt/1.5.23.1-rc1 (2014-03-12) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Jun 21, 2023 at 10:45:23AM -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: David Sterba