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 98D4E7082D for ; Fri, 13 Feb 2026 00:52:27 +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=1770943947; cv=none; b=QScMJ1JDoxPWLWUPccfw7XHl7r1eoGk6LdZlM6xQBHQIc1LkonYAQP1VW0y13iYBvFhqoEJSxCYqhhWeqTzvMjYxBBHcGxXLwPpKM6DzX6oDcUAToSb5PyMyv5iC6OBrAeCVZ1Yd2qsP3xipXzGtISQgGM9ntMqHc30e4L5MAgo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770943947; c=relaxed/simple; bh=uu1NxSZhYoIgaWtt0fArch1Cgaq5w6gURv3CE33SuOY=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References: MIME-Version:Content-Type; b=ZfSOhUuvgJHufjfCxenY1U4eQOo847RqiAg5RqLUvNx17di3A4IADPQqUC2LYuz0xhzkXszp6cE1qDvlJfyu730xudvuq6q+N/BKjjbdGMKUTaG8iYrMrpDbJMWl+9YplJbS+5cO6cCDElaPl9VK5I0s43V8QUGtOq6f57i1iQU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=OiY6maEh; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="OiY6maEh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C701AC4CEF7; Fri, 13 Feb 2026 00:52:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1770943947; bh=uu1NxSZhYoIgaWtt0fArch1Cgaq5w6gURv3CE33SuOY=; h=Date:From:To:cc:Subject:In-Reply-To:References:From; b=OiY6maEhLLyD1GB8nc2clUujo1Ds2RG0KqxBYLN7entB95FAxOnXeceCQeKs3nDF2 S3xEhA+Mok0NosyA9MBb9cIpR5gzQBhniahk4M9M5w4u+DOrEiR5MeOH/BUEMbcbV/ h9qDTiCpOFH/5SZITrVaUw4th056wlGFqj8N2UYutof9b9wo7le2s18uWmBBqM5DJM XNj5BXt5ko/8LDcE3vsNbyT2dHxPU3zzwiUxWrFPCTeCn2uLwiaJOhaPXZGcAyMBvd OFURddh/ccxZK4YSVh7cd4WdsTtsme7ZHFS0+GSh3bHPvUQwIXXb+bv43uNyiY8xoi yJn8TtWS8zsLQ== Date: Thu, 12 Feb 2026 17:52:25 -0700 (MST) From: Paul Walmsley To: Austin Kim cc: pjw@kernel.org, palmer@dabbelt.com, aou@eecs.berkeley.edu, alex@ghiti.fr, linux-kernel@vger.kernel.org, linux-riscv@lists.infradead.org Subject: Re: [PATCH] riscv: increase COMMAND_LINE_SIZE value to 2048 In-Reply-To: Message-ID: <55cbf9fb-6d13-a893-e8b0-429fe972e207@kernel.org> References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII On Mon, 19 Jan 2026, Austin Kim wrote: > From: Austin Kim > > SoC people may send many parameters to configure the drivers via kernel > command line. If COMMAND_LINE_SIZE is not enough, they may go through > unexpected error. > > To avoid the potential pain, we had better increase COMMAND_LINE_SIZE. > > Signed-off-by: Austin Kim Thanks, queued for v7.1. - Paul