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 9D0351C07C2; Tue, 15 Oct 2024 12:56:49 +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=1728997009; cv=none; b=Q3NxZLnwYt0Ula4djN5ha5FuNPvoJv+OatwRxUfqcxEw3uMVOvzi2D9Cx1BOVvdIoMvC49f64enF4wrVL9xPv3I8XLk666YzcRjmPasCu4Z5cvxO8LX0E7uZBtdYIAgG+x7ii8OU3TNUdZicd9kUpGsJpUb0OkEjptQPh+JEq74= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728997009; c=relaxed/simple; bh=pxEnMqOj+PlsNrWPasw/FwRan+Kwrh9AmGrHU9sln0c=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=PllMKyowhBXmrwMc1udbWYLWTl6jG3r1tyxRFbSvagvDbo8SQNoH04yBXKW3VCzAfSSf4ifbGehsTussP06SizaAhIMmOYKuDyaMXKeOqE9m0imMojwGUv1fnsxsUUo2XS5I9vsdEKa9I5dX/dTuBeIDicUXztQv8XyxXcxxEK4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=vNstbORk; 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="vNstbORk" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D1BACC4CEC6; Tue, 15 Oct 2024 12:56:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1728997009; bh=pxEnMqOj+PlsNrWPasw/FwRan+Kwrh9AmGrHU9sln0c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=vNstbORkQOzF7tqtRnXZQZExa1H0Z3/YVUw8VSLpBsOzbKYQ1PmGGtmsbWEg0tJK+ +HN5Nol2wcJC461KVuzju+r21unaxOMc/8zL1NITt15RRuiCqop+guwQWC+TWAZLtz Kx2lhXe/axHn7oRqsrGC8xvbYJZ7qpL5BMg/GHNI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Christoph Hellwig , Jan Kara , Miquel Raynal , Richard Weinberger , Vignesh Raghavendra , Andrew Morton , Linus Torvalds , Sasha Levin Subject: [PATCH 5.10 061/518] fs: explicitly unregister per-superblock BDIs Date: Tue, 15 Oct 2024 14:39:25 +0200 Message-ID: <20241015123919.363486173@linuxfoundation.org> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20241015123916.821186887@linuxfoundation.org> References: <20241015123916.821186887@linuxfoundation.org> User-Agent: quilt/0.67 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 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Christoph Hellwig [ Upstream commit 0b3ea0926afb8dde70cfab00316ae0a70b93a7cc ] Add a new SB_I_ flag to mark superblocks that have an ephemeral bdi associated with them, and unregister it when the superblock is shut down. Link: https://lkml.kernel.org/r/20211021124441.668816-4-hch@lst.de Signed-off-by: Christoph Hellwig Reviewed-by: Jan Kara Cc: Miquel Raynal Cc: Richard Weinberger Cc: Vignesh Raghavendra Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Stable-dep-of: 4bcda1eaf184 ("mount: handle OOM on mnt_warn_timestamp_expiry") Signed-off-by: Sasha Levin --- fs/super.c | 3 +++ include/linux/fs.h | 1 + 2 files changed, 4 insertions(+) diff --git a/fs/super.c b/fs/super.c index 282aa36901eb1..3d040c09f723f 100644 --- a/fs/super.c +++ b/fs/super.c @@ -476,6 +476,8 @@ void generic_shutdown_super(struct super_block *sb) spin_unlock(&sb_lock); up_write(&sb->s_umount); if (sb->s_bdi != &noop_backing_dev_info) { + if (sb->s_iflags & SB_I_PERSB_BDI) + bdi_unregister(sb->s_bdi); bdi_put(sb->s_bdi); sb->s_bdi = &noop_backing_dev_info; } @@ -1634,6 +1636,7 @@ int super_setup_bdi_name(struct super_block *sb, char *fmt, ...) } WARN_ON(sb->s_bdi != &noop_backing_dev_info); sb->s_bdi = bdi; + sb->s_iflags |= SB_I_PERSB_BDI; return 0; } diff --git a/include/linux/fs.h b/include/linux/fs.h index 2e202f01c38d0..e92acc55fbd1d 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1427,6 +1427,7 @@ extern int send_sigurg(struct fown_struct *fown); #define SB_I_UNTRUSTED_MOUNTER 0x00000040 #define SB_I_SKIP_SYNC 0x00000100 /* Skip superblock at global sync */ +#define SB_I_PERSB_BDI 0x00000200 /* has a per-sb bdi */ /* Possible states of 'frozen' field */ enum { -- 2.43.0