From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 563FE233946; Sat, 12 Sep 2026 12:49:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789217386; cv=none; b=pr+mPPRhKryueGyxn0NkFnWuWgfI898QjGNhG1DJfwLk3NiHhM7s9HEUrSDD9RmaKAjUW7DgGvgtAlw3je0qT8jI21J9PelsJMR1qByOGYZyaunEo6qevxLqykOGBOvDKgBrm2fsdWA4UfYWblygjK274+Z6lMAFkPa+rOczkFA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789217386; c=relaxed/simple; bh=CLx+Al4NB8VwpvHIsO+FaepDu8+YIqelT4b8U03xQ2U=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=YyS11FQKopWqEJFpKRGxxEajOHMphXKO6/yFFCmyWv7QPRZtPHlivl7u8SD6EEJ8T6KxBUCIOImHqtja6jOW6Gv2/1rSX7EY16dnkz25k5h7tpChzRmsBpEPdry4vlnw0ZhvSsBuqMCFbYVIUdTqZCT6Go1wk3OgJ//hC/DwOYc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VP3aajaF; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="VP3aajaF" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6874D1F000FF; Sat, 12 Sep 2026 12:49:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789217385; bh=M7o4FKWddCDDsNGMUtrqdcolaBCBkzG8Ls4M+Jr1bcM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=VP3aajaFtDTvjLu0JNy+RdTivckrKEOp5gZY9BntRFrF1yiyp5iUIM1cIe7x92BUN hzc/3Y7dbA8zN4ODr95r/mzgrQOowj+a5k8iMgdDAedkLQjsaVfE8hwm10CBpEbr90 eOEU+yseVT42O32mkQffIsWaaM2UFZwGZMXE9mMs= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Yichong Chen , OGAWA Hirofumi , Christian Brauner , Amit Sahrawat , Namjae Jeon , Ravishankar N , Andrew Morton , Sasha Levin Subject: [PATCH 6.12 0888/1376] fat: release buffer head after rebuilding parent Date: Sat, 12 Sep 2026 08:55:14 +0200 Message-ID: <20260912065627.354577742@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065607.535295758@linuxfoundation.org> References: <20260912065607.535295758@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Yichong Chen [ Upstream commit 83e98dbf19ab64e8528e101e20f8d50e1aaa68a8 ] fat_scan_logstart() leaves the matching directory entry's buffer head in sinfo.bh for the caller to release, just like fat_scan(). fat_rebuild_parent() uses the directory entry to rebuild the parent inode for the nostale_ro NFS export path, but does not release sinfo.bh after a successful scan. Release it once fat_build_inode() has consumed the directory entry data. Link: https://lore.kernel.org/20260715020957.1096309-1-chenyichong@uniontech.com Fixes: f1e6fb0ab451 ("fat (exportfs): rebuild directory-inode if fat_dget()") Signed-off-by: Yichong Chen Acked-by: OGAWA Hirofumi Cc: Christian Brauner Cc: Amit Sahrawat Cc: chenyichong Cc: Namjae Jeon Cc: Ravishankar N Signed-off-by: Andrew Morton Signed-off-by: Sasha Levin --- fs/fat/nfs.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fs/fat/nfs.c b/fs/fat/nfs.c index 509eea96a457d..6e1b371711edd 100644 --- a/fs/fat/nfs.c +++ b/fs/fat/nfs.c @@ -250,8 +250,10 @@ struct inode *fat_rebuild_parent(struct super_block *sb, int parent_logstart) MSDOS_I(dummy_grand_parent)->i_pos = -1; } - if (!fat_scan_logstart(dummy_grand_parent, clus_to_match, &sinfo)) + if (!fat_scan_logstart(dummy_grand_parent, clus_to_match, &sinfo)) { parent = fat_build_inode(sb, sinfo.de, sinfo.i_pos); + brelse(sinfo.bh); + } brelse(parent_bh); iput(dummy_grand_parent); -- 2.53.0