From mboxrd@z Thu Jan 1 00:00:00 1970 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 A64C335B15C; Fri, 9 Jan 2026 12:38:50 +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=1767962330; cv=none; b=VFbvJMEjaQe/eTdrm2jw3apsjwguLp+N+0FK3MMaXUADtKI3yeY4iYmnooj4hi8yfASwKzMLUh+yy4ZAACgOdi4EoxdJDTsROja4leN9hRxxWGSgT1fkhstHUkBpsiZYucxXBf9Een3s7Nhm5so7KjRco2cq8KEGXTQUsnhBbqE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767962330; c=relaxed/simple; bh=aj0g1xPl874+FQLBNlteac/R812owkP4SF60SqktdyI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=u845CTHn2ykm8szHx358MpP412Qj1cGupLDRaWhtnnaRbhn0to0jwVrKzt663IpXXB+MGPmo/3wem7eEnYUF5UA5nn9rJhPQBJEiw1PnPyFQckYE0jkXEqGclSDOW11o2dBg1fH37JdFn6IuX8oFnRX31tODOHOQdH8DbdndTP4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Hukzdvts; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Hukzdvts" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DEAB7C4CEF1; Fri, 9 Jan 2026 12:38:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1767962330; bh=aj0g1xPl874+FQLBNlteac/R812owkP4SF60SqktdyI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Hukzdvts1wN1/Mw9L/RfDTzZzmz6hCpPldFAHy/Jb1NyNLqfc/VPiw2zCz1bJRhWF 7JfK+uhPrhd8wZd+xLucGqf849NVc3AKTWmMmY4je6mmnX6cZjrh1Yzjg/itYM+RB7 XQ3Ybl3tVagSQ/AolDlxayP5XC8XUsYCEGd6t2+A= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Haibo Chen , Baokun Li , Zhang Yi , Jan Kara , Theodore Tso , stable@kernel.org Subject: [PATCH 6.1 328/634] ext4: clear i_state_flags when alloc inode Date: Fri, 9 Jan 2026 12:40:06 +0100 Message-ID: <20260109112129.870071948@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260109112117.407257400@linuxfoundation.org> References: <20260109112117.407257400@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Haibo Chen commit 4091c8206cfd2e3bb529ef260887296b90d9b6a2 upstream. i_state_flags used on 32-bit archs, need to clear this flag when alloc inode. Find this issue when umount ext4, sometimes track the inode as orphan accidently, cause ext4 mesg dump. Fixes: acf943e9768e ("ext4: fix checks for orphan inodes") Signed-off-by: Haibo Chen Reviewed-by: Baokun Li Reviewed-by: Zhang Yi Reviewed-by: Jan Kara Message-ID: <20251104-ext4-v1-1-73691a0800f9@nxp.com> Signed-off-by: Theodore Ts'o Cc: stable@kernel.org Signed-off-by: Greg Kroah-Hartman --- fs/ext4/ialloc.c | 1 - fs/ext4/inode.c | 1 - fs/ext4/super.c | 1 + 3 files changed, 1 insertion(+), 2 deletions(-) --- a/fs/ext4/ialloc.c +++ b/fs/ext4/ialloc.c @@ -1300,7 +1300,6 @@ got: sizeof(gen)); } - ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ ext4_set_inode_state(inode, EXT4_STATE_NEW); ei->i_extra_isize = sbi->s_want_extra_isize; --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -4937,7 +4937,6 @@ struct inode *__ext4_iget(struct super_b ei->i_projid = make_kprojid(&init_user_ns, i_projid); set_nlink(inode, le16_to_cpu(raw_inode->i_links_count)); - ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ ei->i_inline_off = 0; ei->i_dir_start_lookup = 0; ei->i_dtime = le32_to_cpu(raw_inode->i_dtime); --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -1327,6 +1327,7 @@ static struct inode *ext4_alloc_inode(st inode_set_iversion(&ei->vfs_inode, 1); ei->i_flags = 0; + ext4_clear_state_flags(ei); /* Only relevant on 32-bit archs */ spin_lock_init(&ei->i_raw_lock); INIT_LIST_HEAD(&ei->i_prealloc_list); atomic_set(&ei->i_prealloc_active, 0);