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 7ED8A39F18A; Sat, 12 Sep 2026 19:08:33 +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=1789240114; cv=none; b=STXKdbUnI9V1Vbjr2HAwzmw/lVRphpOz2tA8eXt0H4MQ5W7wEPI1vtG7a7r3Gdp48j47WESqfXqqLOaFKZi7iSkN6BHjyvzMLiPd4meZGKaD6Ui73gdUTuJcmzbsN1p85jAo6crQGJmJpmLHTkUPul4hzC/nMXVJiuPOl/u881k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789240114; c=relaxed/simple; bh=JIRTeCvGfyrU5V7NNP/hQ2Crf7g99MsNhqAG1pieR4w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ouOLbhEuI22Yjd2A7Ods7Fw+lAErQC+KtEm83fKU05xotBUPIKuyt1XaXhDIJQf2fH4M31e6qIzJDXmpCRmw2ie/kwQblSLlq+neYkqwjechHR3vtaKGPJezkyC7YFHZPn2gin8Ak/sp8OrIuc+CK7zOnB+U1Po6FCo0otGTR9c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Al2ZWkJZ; 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="Al2ZWkJZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2157E1F000FF; Sat, 12 Sep 2026 19:08:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789240113; bh=y/nSJ/DgIDyWPEzVfe/LvPvEPtwgN67YJX5Ki+8+HaE=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Al2ZWkJZysr9TmLV4mzXtq02ov5PJ0xYSt9R1YszKow9bZa0OJNhRUPjPfLjZbOrS 76MriOJT3IOFBq4UtJf9huobKhitS2m7jYQ9eR4aV96SH60sr2zRVr7rdsIKsmKmG3 05etZYG5w4Lfy5NsehLWPtxw5uDz3ZFqHTtVX2Vg= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ran Hongyun , Zhihao Cheng , Richard Weinberger , Sasha Levin Subject: [PATCH 5.15 801/935] UBI: fix two issues in the ubi.mtd MODULE_PARM_DESC Date: Sat, 12 Sep 2026 09:03:51 +0200 Message-ID: <20260912065545.210009462@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065526.833703348@linuxfoundation.org> References: <20260912065526.833703348@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 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ran Hongyun [ Upstream commit ff7937d14f5333ec7e6fb50d00a152d7974f4105 ] Fix two issues introduced before: - The parameter format string was missing the enable_fm and need_resv_pool tokens introduced in an earlier commit. - The bad-block reservation note was misplaced after Example 5 instead of after Example 3. It was misplaced due to an earlier patch. Fixes: 83ff59a06663 ("UBI: support ubi_num on mtd.ubi command line") Signed-off-by: Ran Hongyun Reviewed-by: Zhihao Cheng Signed-off-by: Richard Weinberger Signed-off-by: Sasha Levin --- drivers/mtd/ubi/build.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/ubi/build.c b/drivers/mtd/ubi/build.c index 184a68dca2439..d0b5f15441432 100644 --- a/drivers/mtd/ubi/build.c +++ b/drivers/mtd/ubi/build.c @@ -1505,7 +1505,7 @@ static int ubi_mtd_param_parse(const char *val, const struct kernel_param *kp) } module_param_call(mtd, ubi_mtd_param_parse, NULL, NULL, 0400); -MODULE_PARM_DESC(mtd, "MTD devices to attach. Parameter format: mtd=[,[,max_beb_per1024[,ubi_num]]].\n" +MODULE_PARM_DESC(mtd, "MTD devices to attach. Parameter format: mtd=[,[,max_beb_per1024[,ubi_num[,enable_fm[,need_resv_pool]]]]].\n" "Multiple \"mtd\" parameters may be specified.\n" "MTD devices may be specified by their number, name, or path to the MTD character device node.\n" "Optional \"vid_hdr_offs\" parameter specifies UBI VID header position to be used by UBI. (default value if 0)\n" @@ -1518,9 +1518,9 @@ MODULE_PARM_DESC(mtd, "MTD devices to attach. Parameter format: mtd=