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 7F41E52F88 for ; Wed, 25 Dec 2024 02:45:02 +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=1735094702; cv=none; b=KETIMHYrINOIUZkvHubyhAdQNGpUoYn3acM/eOVnokigZhVmFPTagPp+2Cdb/I2fAMnGMxySdzRI2Vw3uuIrWc4BdPg3uQHtO2zRwrBnp96t7yxHcTAdplZVWMVUJz5I7DKD4hmvxC2Oj8nYrAL8IXLv7GiihEZjjKOwb6ymrgE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1735094702; c=relaxed/simple; bh=wljXXit2l8Lgg2UUOdeeuGnUjGQ4bnYw/htZRuytk+s=; h=Message-ID:Date:From:To:Cc:Subject; b=T9SoSSKYCEBNtGynjON6Vgr7ZXSo+n49MXSwVoJjIqZeZAZyHPEhsJnisvMFi3tu+mYmjbCA4HsYP5OqoMiYJ0cQfuWGpzM962oeFdgOwNXbMjUjik/91LZHK31xZGdnjKnZp7A2mlNwuF3UPINFtGyY8XjE83eWm0Mt5iEqe18= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0E087C4CED0; Wed, 25 Dec 2024 02:45:02 +0000 (UTC) Received: from rostedt by gandalf with local (Exim 4.98) (envelope-from ) id 1tQHPI-0000000Ekt3-3von; Tue, 24 Dec 2024 21:45:56 -0500 Message-ID: <20241225024536.865653915@goodmis.org> User-Agent: quilt/0.68 Date: Tue, 24 Dec 2024 21:45:36 -0500 From: Steven Rostedt To: linux-kernel@vger.kernel.org Cc: Masami Hiramatsu , Mark Rutland , Mathieu Desnoyers , Andrew Morton Subject: [for-linus][PATCH 0/2] tracing: Two minor fixes for 6.13 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Two minor tracing fixes for 6.13: - Add "const" to "char *" in event structure field that gets assigned literals. - Check size of input passed into the tracing cpumask file. If a too large of an input gets passed into the cpumask file, it could trigger a warning in the bitmask parsing code. git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git trace/fixes Head SHA1: 98feccbf32cfdde8c722bc4587aaa60ee5ac33f0 Christian Göttsche (1): tracing: Constify string literal data member in struct trace_event_call Lizhi Xu (1): tracing: Prevent bad count for tracing_cpumask_write ---- include/linux/trace_events.h | 2 +- kernel/trace/trace.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-)