From nobody Sun Nov 24 12:42:09 2024 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 38693383 for ; Tue, 5 Nov 2024 21:44:05 +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=1730843046; cv=none; b=N4bnlGxu4WgDf07IOWy+9ywQOU5t+wSYmeeopmGblEZdv+TZBJUD0BCazQ8TwUqvKdBojYuv13zX5BmnDNb4uep7zUaWkG6JGY7Wuo+EgTaougvZi6Yl5rAI8A4D2XORyVD3uCcfkRAY4IWCmpwfg0dt32kLO5hdOE95tUlt/aU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730843046; c=relaxed/simple; bh=k9uXPkBDfxRatNzO2TftLe8CfGjA3UZHGRc6tEFljm8=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=SADqMiZArmMhP/RIHS0S92SxbPC0LBQCeqIvYftIrOUZOCGSZs5grMqbuU1grz0b0OGQKi5FFbqGlpwHJrpdQwJbvBy5T7ZPwhaWoiznKFyf0LjfMlxjktOMt79E5WqEsAskV2kDU4shFRSQbhS4pVx5zdiUXrU1NKY5lTgqNT8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=A4hgkrBt; 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="A4hgkrBt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8C510C4CED1; Tue, 5 Nov 2024 21:44:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1730843045; bh=k9uXPkBDfxRatNzO2TftLe8CfGjA3UZHGRc6tEFljm8=; h=Date:From:To:Cc:Subject:From; b=A4hgkrBtwqgzo08eiI8LHV/KX5dOp7jVNPuw15v0afRfI+XqVYscXNsunxqUgx1Re KELPFZVZeymD0e7hXJ5Ba5PVNDJTLVWzf7e5b70KAXfQZVuu97T/D51euXTJODYOuo Xln5Jxh1E+AKLHukq5r9rGPUsEVpNdXsJ1hNl8gfKdV2/tcyqj0cLkB9edCljt4v40 L34FKKadCt6CZXmCNT40oY2U9HbkVUQ5dToPXOScoUEYZpQrbNuTzi1i7iffJVMvbc GU9HmWNKEDq1mWV5+FI9znm8hAK/7fQbmAxWzP8Rr4RPPBFrg4mCA03R3aT9iyhxes GvGO90rePtUtg== Date: Tue, 5 Nov 2024 11:44:04 -1000 From: Tejun Heo To: David Vernet Cc: linux-kernel@vger.kernel.org, sched-ext@meta.comm, kernel-team@meta.com Subject: [PATCH sched_ext/for-6.12-fixes] sched_ext: Add a missing newline at the end of an error message Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Signed-off-by: Tejun Heo --- Applying to sched_ext/for-6.12-fixes. Thanks. kernel/sched/ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/kernel/sched/ext.c +++ b/kernel/sched/ext.c @@ -5225,7 +5225,7 @@ static int scx_ops_enable(struct sched_e =20 if (!cpumask_equal(housekeeping_cpumask(HK_TYPE_DOMAIN), cpu_possible_mask)) { - pr_err("sched_ext: Not compatible with \"isolcpus=3D\" domain isolation"= ); + pr_err("sched_ext: Not compatible with \"isolcpus=3D\" domain isolation\= n"); return -EINVAL; }