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 36A7BC433EF for ; Thu, 17 Mar 2022 12:23:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233514AbiCQMYb (ORCPT ); Thu, 17 Mar 2022 08:24:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43720 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233509AbiCQMY2 (ORCPT ); Thu, 17 Mar 2022 08:24:28 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EE49BAC060 for ; Thu, 17 Mar 2022 05:23:10 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 3DA8060F28 for ; Thu, 17 Mar 2022 12:23:10 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D6F41C340E9; Thu, 17 Mar 2022 12:23:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1647519789; bh=FMgPDbk2fBw3oYvS8YviKVNhODsyO44hJ1OmNfCDISo=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=ljufRSOjhQHYhrd85n5Myho6xsI7ty90UxcG8IIg35ZYbqTwNq7D/RHnlMHI0hFM+ ghHs0QzGgmVMKOq6W6sofOkx4acz600s26sfdrSOQU3+jvLAKPaN9JE2sIa0RTOqro V8tPCcNMqaEV+sDBLbkfwsD09N2p/xbKbzbYBbcU8ZExwuFjaeofgBLCEXz3WuvU5e GM45pFkzBNbhwebgobXZp9aVP+yQV6xfLrGJ9XggMzZnVTaBT+EUdd4mLnHjF5rf6X AnpcUAfAwYiek0NB4MXo8Hg9X21L2t8sZCANEGGhwUPk1fy56xXT2Ibj8pFVRQC8Rk qQJQqrptrZ8cw== Message-ID: <40bafa49-41a0-880d-d1bc-85124cf9f750@kernel.org> Date: Thu, 17 Mar 2022 20:23:06 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Subject: Re: [PATCH v2] erofs: rename ctime to mtime Content-Language: en-US To: Gao Xiang , linux-erofs@lists.ozlabs.org Cc: LKML , David Anderson References: <20220317114959.106787-1-hsiangkao@linux.alibaba.com> From: Chao Yu In-Reply-To: <20220317114959.106787-1-hsiangkao@linux.alibaba.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2022/3/17 19:49, Gao Xiang wrote: > From: David Anderson > > EROFS images should inherit modification time rather than change time, > since users and host tooling have no easy way to control change time. > > To reflect the new timestamp meaning, i_ctime and i_ctime_nsec are > renamed to i_mtime and i_mtime_nsec. > > Signed-off-by: David Anderson > [ Gao Xiang: update document as well. ] > Signed-off-by: Gao Xiang Reviewed-by: Chao Yu Thanks,