From nobody Fri Dec 19 21:14:05 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0C5C515F417; Wed, 29 May 2024 06:41:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716964897; cv=none; b=g56IBr6qeczP4Gi7y7gx38d61vs/Q+8M0+hGgJg+IkDmtjYqlQ0Ui/qxOPwlbXrvfqI3P3QYN2HKX+j94ptLswGo8PxDHUJhpRCghI3cPwjrklIVILxKJCB9qSQHgy/f+q5tNgbqxEFZE2SljUo69P4Aj88NIODIVSlmA6koNFc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1716964897; c=relaxed/simple; bh=YWDdmREmUsG2sdnpM6TKccbxM+ep6uFhfemoebxk7Ps=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OveK0W0ReCK4LNiZZQ2Zn/iyLTIETDPe6WWbKbAeIBXUQ+XL5JXGkDQgpwxw8Ed11oV+Uce1kJkP5bX5w+Thm1jd0ioSbDhURgOVfdzKgaYnmdSDMvn5dTaECurLmlbb8ZRmnKWoW9iitD2o3BbUgU9S8M8j+bND4skSI1x/f80= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 555FAC2BD10; Wed, 29 May 2024 06:41:35 +0000 (UTC) From: Huacai Chen To: Konstantin Komarov Cc: Huacai Chen , ntfs3@lists.linux.dev, linux-kernel@vger.kernel.org, Huacai Chen , stable@vger.kernel.org Subject: [PATCH 2/2] fs/ntfs3: Rename the label end_reply to end_replay Date: Wed, 29 May 2024 14:40:53 +0800 Message-ID: <20240529064053.2741996-3-chenhuacai@loongson.cn> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240529064053.2741996-1-chenhuacai@loongson.cn> References: <20240529064053.2741996-1-chenhuacai@loongson.cn> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The label end_reply is obviously a typo. It should be "replay" in this context. So rename end_reply to end_replay. Cc: stable@vger.kernel.org Fixes: b46acd6a6a627d876898e ("fs/ntfs3: Add NTFS journal") Signed-off-by: Huacai Chen --- fs/ntfs3/fslog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/ntfs3/fslog.c b/fs/ntfs3/fslog.c index 19c448093df7..87c0e2b52954 100644 --- a/fs/ntfs3/fslog.c +++ b/fs/ntfs3/fslog.c @@ -4661,7 +4661,7 @@ int log_replay(struct ntfs_inode *ni, bool *initializ= ed) * table are not empty. */ if ((!dptbl || !dptbl->total) && (!trtbl || !trtbl->total)) - goto end_reply; + goto end_replay; =20 sbi->flags |=3D NTFS_FLAGS_NEED_REPLAY; if (is_ro) @@ -5090,7 +5090,7 @@ int log_replay(struct ntfs_inode *ni, bool *initializ= ed) =20 sbi->flags &=3D ~NTFS_FLAGS_NEED_REPLAY; =20 -end_reply: +end_replay: =20 err =3D 0; if (is_ro) --=20 2.43.0