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 62FE42D97BB; Wed, 4 Feb 2026 15:23:04 +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=1770218584; cv=none; b=PORprFm8qXbbgsmbZwTCvwTZ+SZlQITobwJTty3VLWez7fkO90ercBloH/JI2f3dLnfSBM/tnJnIuGwvJjjpgGvWZJXTHo12QmYT+ynTb2y5IRcjlMCMIRru/uu79Zt93PctWxHsTzDwqUMYA/h2xCfO+gO4pntmaG6cLXr4E0I= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770218584; c=relaxed/simple; bh=lmMrWdZTiriurxUJkl78Fl0AJ6cAUj1Qyzr7+Z7psVQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=s0KvUiDg4JJkzjCwt/sn9T9M685pBUvTXVwVXwtd3REugLz0ODIEW7KjgJ7xI5pjuaMV3/JWFC7lU81eIiiGchMj73ta3+42sTO4B0O+blOhr7DdywNeQBpN5wh3rqNNCfS3Sr1/SJsyI61uDyLKevE8L8kDNzAXib1UfarDKyo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=2U/qWjac; 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="2U/qWjac" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C63B0C4CEF7; Wed, 4 Feb 2026 15:23:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770218584; bh=lmMrWdZTiriurxUJkl78Fl0AJ6cAUj1Qyzr7+Z7psVQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=2U/qWjacPSdiFIL5QkhYx8DNr8ljpN7GlKcmt0BN+drryqqpRTszQHz+pmcsvauh/ SiCFwfqBEj+tDKOlBuLCi7sRYZvTlX4enysZnxZdlmOVL9ALgW2fdf8PVQlqTXgtdw rwpBdy/HL628oJ+UfP8/wiZEhV+LdbcWw3pNYZxw= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Alexis=20Lothor=C3=A9=20 ?= , Martin KaFai Lau , Alexei Starovoitov , Shung-Hsi Yu Subject: [PATCH 6.6 72/72] bpf/selftests: test_select_reuseport_kern: Remove unused header Date: Wed, 4 Feb 2026 15:41:15 +0100 Message-ID: <20260204143848.252227833@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260204143845.603454952@linuxfoundation.org> References: <20260204143845.603454952@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexis Lothoré (eBPF Foundation) commit 93cf4e537ed0c5bd9ba6cbdb2c33864547c1442f upstream. test_select_reuseport_kern.c is currently including , but it does not use any definition from there. Remove stdlib.h inclusion from test_select_reuseport_kern.c Signed-off-by: Alexis Lothoré (eBPF Foundation) Signed-off-by: Martin KaFai Lau Link: https://patch.msgid.link/20250227-remove_wrong_header-v1-1-bc94eb4e2f73@bootlin.com Signed-off-by: Alexei Starovoitov [shung-hsi.yu: Fix compilation error mentioned in footer of Alexis' patch with newer glibc header: [...] CLNG-BPF [test_progs-cpuv4] test_select_reuseport_kern.bpf.o In file included from progs/test_select_reuseport_kern.c:4: /usr/include/bits/floatn.h:83:52: error: unsupported machine mode '__TC__' 83 | typedef _Complex float __cfloat128 __attribute__ ((__mode__ (__TC__))); | ^ /usr/include/bits/floatn.h:97:9: error: __float128 is not supported on this target 97 | typedef __float128 _Float128; I'm not certain when the problem starts to occur, but I'm quite sure test_select_reuseport_kern.c were not meant to be using the C standard library in the first place.] Signed-off-by: Shung-Hsi Yu Signed-off-by: Greg Kroah-Hartman --- tools/testing/selftests/bpf/progs/test_select_reuseport_kern.c | 1 - 1 file changed, 1 deletion(-) --- a/tools/testing/selftests/bpf/progs/test_select_reuseport_kern.c +++ b/tools/testing/selftests/bpf/progs/test_select_reuseport_kern.c @@ -1,7 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2018 Facebook */ -#include #include #include #include