Received: by 2002:a05:6a10:5bc5:0:0:0:0 with SMTP id os5csp1744467pxb; Thu, 4 Nov 2021 07:44:42 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwq9sYkXuxTLfDd/+Kdy0bLwzp5fDQ0dm56aNz/PzbDiUU4bNQHsD+9dnyjvJWc1RYuMDDy X-Received: by 2002:a02:c053:: with SMTP id u19mr1624324jam.5.1636037082824; Thu, 04 Nov 2021 07:44:42 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1636037082; cv=none; d=google.com; s=arc-20160816; b=e//pKRWYbE4bCusnxAy3P3W2i5C93ETLwm8Yva5Dl4vOoURW1qlcDxujdJgLCVrzBT 65SkBd8+c2WZQE+SkITJDMu7futPVBcS52UyVg0SgNwhIzlSC1tLm4Zy2Ylsg24iP27V SKNebDNgMRpT4vdP8aZXRlLkpUlPttvHI2cEHAHPYtdpaJUK9NtV6JcTkUP6Pab1WUKy SjgVJo5aUn4qssui/LHUc4hCFVC9aPOhAsuXmcDavZgNowpXfdypR/smQqZNMvtbv1EN H63/IppjduUPYAQhN/QNuGT2JCtG3vzUt5trFQX10guq6p+Ubw1unx242Nz2FODXpGRt YVuw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=zMTXo6U37RW/aimzemSD/ZM1DTy1+Tojnzjrm6Bdne4=; b=AGPKelRw6yKqg6qneR6YyOftKKwHcNAWSZK+/j5TWMpKBx6FGD6V7M9Mt356DXiI/L xP4A4Tg6TUL0N+gwnzW5nSXykXgMUtLP8ViIKAdSnyqrDHmbOiXBtFHqGXdBAZW9vrK3 M0evtKm0/hLjdAVCZIQP80ysG//EUN2tsd+YVN/deSfnNIMNHD4g1L+PcfYsoahDVFN7 B5kWXZL1mtE919dY8wrIXKJDE1wnk0Ky4DmqB5X3mT1Uxoku+DCGozpNCwfBgg7LeIcF JnFkwZAOBkRUYavZqCtwlwK+TBvkpxIVQWgvud75vpYkXeUk2xkLpsu/wh+azxAdWiHc kIuw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id y9si2689522ilv.58.2021.11.04.07.44.27; Thu, 04 Nov 2021 07:44:42 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-ext4-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-ext4-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229577AbhKDOrB (ORCPT + 99 others); Thu, 4 Nov 2021 10:47:01 -0400 Received: from outgoing-auth-1.mit.edu ([18.9.28.11]:32919 "EHLO outgoing.mit.edu" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S229505AbhKDOq7 (ORCPT ); Thu, 4 Nov 2021 10:46:59 -0400 Received: from cwcc.thunk.org (pool-72-74-133-215.bstnma.fios.verizon.net [72.74.133.215]) (authenticated bits=0) (User authenticated as tytso@ATHENA.MIT.EDU) by outgoing.mit.edu (8.14.7/8.12.4) with ESMTP id 1A4EiIt4016587 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 4 Nov 2021 10:44:19 -0400 Received: by cwcc.thunk.org (Postfix, from userid 15806) id 6AB8E15C00B9; Thu, 4 Nov 2021 10:44:18 -0400 (EDT) From: "Theodore Ts'o" To: Harshad Shirwadkar , linux-ext4@vger.kernel.org Cc: "Theodore Ts'o" Subject: Re: [PATCH 1/2] ext4: commit inline data during fast commit Date: Thu, 4 Nov 2021 10:44:16 -0400 Message-Id: <163603704482.2752249.11675165495055132631.b4-ty@mit.edu> X-Mailer: git-send-email 2.31.0 In-Reply-To: <20211015182513.395917-1-harshads@google.com> References: <20211015182513.395917-1-harshads@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Fri, 15 Oct 2021 11:25:12 -0700, Harshad Shirwadkar wrote: > From: Harshad Shirwadkar > > During the commit phase in fast commits if an inode with inline data > is being committed, also commit the inline data along with > inode. Since recovery code just blindly copies entire content found in > inode TLV, there is no change needed on the recovery path. Thus, this > change is backward compatiable. > > [...] Applied, thanks! [1/2] ext4: commit inline data during fast commit commit: 6c31a689b2e9e1dee5cbe16b773648a2d84dfb02 [2/2] ext4: inline data inode fast commit replay fixes commit: 1ebf21784b19d5bc269f39a5d1eedb7f29a7d152 Best regards, -- Theodore Ts'o