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 F195F2D8376; Tue, 21 Jul 2026 18:52:38 +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=1784659960; cv=none; b=FsJr8c+aHE5LbvE4iFacP/FnEDsCIxD8FYX577UkhPMUWKRXxoWaiuW6MOA/i8paKaZD8bTh+ZnWtuaDIqXHjl3jNYUVlIT1h+k2i2UD/tU5lohTpnRPC0dG4vaGVAf5PQrQorVOCtArm5GQtf7qqjlZs4MufYYj0N14PsS2SZw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784659960; c=relaxed/simple; bh=OWt/bQGqhptRva+YtZBRL3KbrFztRso+xk4l08BPRyg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=sz8FV90kot/e5PkLjQrZXM3oZZq61/74jHM/kleSa/90SArMA0XRuCQdUv3rWghnm/KDKh0ExHMgN5uqDjdTJcVGAd+a5qIuwEzDI/LnYlZBAua7c/zoJW/KbEC5ZJMKi6L1CFQlUOIRihkIvU/5zaxuyyVuvOv3WNddt+JENJc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=zRv2UWvH; 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="zRv2UWvH" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 630B51F000E9; Tue, 21 Jul 2026 18:52:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784659958; bh=DsrSWP45MjN2opb8wp0Rbbrf9rN/JKImaVzYFT8P7vg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=zRv2UWvHPl96oZgE9x3iXbjK0sSNVGgw+J+QNj0MnnwPRpo+obKFBDLyPzSrtAUM7 HTOj6XsZz/A/hhr0ds8vtN6Ddb2Rz7hz5+1UD+bRTVLsWAI9VnJOr3vyE2udYldeiR WO0Gy18dV3OCZReSOOkKsYCTEHor/bzlUer0M/UM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jiri Olsa , Alexei Starovoitov , Sasha Levin Subject: [PATCH 7.1 0781/2077] selftests/bpf: Fix typo in verify_umulti_link_info Date: Tue, 21 Jul 2026 17:07:34 +0200 Message-ID: <20260721152611.219105310@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152552.646164743@linuxfoundation.org> References: <20260721152552.646164743@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 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jiri Olsa [ Upstream commit df29003c55115737a8fb4f8a60c6c2bba4c4a484 ] We verify info.uprobe_multi.flags against wrong kprobe-multi flag (BPF_F_KPROBE_MULTI_RETURN). It's the same value as the correct flag (BPF_F_UPROBE_MULTI_RETURN), so there's not functional change. Fixes: 147c69307bcf ("selftests/bpf: Add link_info test for uprobe_multi link") Signed-off-by: Jiri Olsa Link: https://lore.kernel.org/r/20260611114230.950379-8-jolsa@kernel.org Signed-off-by: Alexei Starovoitov Signed-off-by: Sasha Levin --- tools/testing/selftests/bpf/prog_tests/fill_link_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/testing/selftests/bpf/prog_tests/fill_link_info.c b/tools/testing/selftests/bpf/prog_tests/fill_link_info.c index e401146207510a..f589eefbf9fbd5 100644 --- a/tools/testing/selftests/bpf/prog_tests/fill_link_info.c +++ b/tools/testing/selftests/bpf/prog_tests/fill_link_info.c @@ -469,7 +469,7 @@ verify_umulti_link_info(int fd, bool retprobe, __u64 *offsets, ASSERT_EQ(info.uprobe_multi.pid, getpid(), "info.uprobe_multi.pid"); ASSERT_EQ(info.uprobe_multi.count, 3, "info.uprobe_multi.count"); - ASSERT_EQ(info.uprobe_multi.flags & BPF_F_KPROBE_MULTI_RETURN, + ASSERT_EQ(info.uprobe_multi.flags & BPF_F_UPROBE_MULTI_RETURN, retprobe, "info.uprobe_multi.flags.retprobe"); ASSERT_EQ(info.uprobe_multi.path_size, strlen(path) + 1, "info.uprobe_multi.path_size"); ASSERT_STREQ(path_buf, path, "info.uprobe_multi.path"); -- 2.53.0