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 9356C1A619B; Tue, 30 Jul 2024 16:35:44 +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=1722357344; cv=none; b=KpbmHqQQ4PMdUlz75bwjSHNE5heVtWlW06//QAbmvNu9Zoz1QxVpATCbOwjrqSH6WtRB1ZVZUsuNjGli77u8SCxtCoQZwwCh6rtflEy6/iZpZ9fdjVHNsGfu3gpHDGOPCk5g9mxpElFYfxVommAnqrhKmbPzJ3DFq2OjmskDUmg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1722357344; c=relaxed/simple; bh=jaN4r44kinXzrAzFFIjrWTuK5mU/pmyJFPA3MwMt0yI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=nXagKxzfrkPN/baljeBWGa0Sjm+t5sPT7IMW+Yxbf0A0mjrdnKkkx4kEKgAMNoHFA5jl8m6IK8KbNnCN/ONNkNn5A2WMkJU1++Pi4Ncu63jKO26QXW5a+WvzhcWeVqNX/6OY8Y4NRJp1JTLrXSGxbD85K4PwIcZ0udzq0YPXJ5g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VOQbnXzZ; 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="VOQbnXzZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 116DDC32782; Tue, 30 Jul 2024 16:35:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1722357344; bh=jaN4r44kinXzrAzFFIjrWTuK5mU/pmyJFPA3MwMt0yI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VOQbnXzZmHH51lX7KzcGpiDvfoNvtucW4ETbKOV2QR8uCepXwvM6skXenO7lLw5uF osNO1zI74zcKWxe94+QTcY5LfcUVoUVmvHQJsskc0WJwiboAjbwjiFgLtgDmB7SfDn nIr+esSkGUEcSK/PYdaV8FNxAHj1ehcmDH7+3Rgw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Benjamin Coddington , Chuck Lever , Anna Schumaker , Sasha Levin Subject: [PATCH 6.6 246/568] SUNRPC: Fixup gss_status tracepoint error output Date: Tue, 30 Jul 2024 17:45:53 +0200 Message-ID: <20240730151649.496744351@linuxfoundation.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240730151639.792277039@linuxfoundation.org> References: <20240730151639.792277039@linuxfoundation.org> User-Agent: quilt/0.67 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 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Benjamin Coddington [ Upstream commit b9fae9f06d84ffab0f3f9118f3a96bbcdc528bf6 ] The GSS routine errors are values, not flags. Fixes: 0c77668ddb4e ("SUNRPC: Introduce trace points in rpc_auth_gss.ko") Signed-off-by: Benjamin Coddington Reviewed-by: Chuck Lever Signed-off-by: Anna Schumaker Signed-off-by: Sasha Levin --- include/trace/events/rpcgss.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/trace/events/rpcgss.h b/include/trace/events/rpcgss.h index f50fcafc69de2..78704f1209d3e 100644 --- a/include/trace/events/rpcgss.h +++ b/include/trace/events/rpcgss.h @@ -54,7 +54,7 @@ TRACE_DEFINE_ENUM(GSS_S_UNSEQ_TOKEN); TRACE_DEFINE_ENUM(GSS_S_GAP_TOKEN); #define show_gss_status(x) \ - __print_flags(x, "|", \ + __print_symbolic(x, \ { GSS_S_BAD_MECH, "GSS_S_BAD_MECH" }, \ { GSS_S_BAD_NAME, "GSS_S_BAD_NAME" }, \ { GSS_S_BAD_NAMETYPE, "GSS_S_BAD_NAMETYPE" }, \ -- 2.43.0