From nobody Thu Apr 9 18:00:24 2026 Received: from todd.t-8ch.de (todd.t-8ch.de [159.69.126.157]) (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 1F2E22BD5B4 for ; Sat, 7 Mar 2026 08:48:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=159.69.126.157 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772873285; cv=none; b=pI40s9tpRZr1tyNxuvyURXl7ynQ2lgjxSqD8EMT9qTnRkdKmD6384ML0mUYLnkXV4NwQImDqtlManwZOpR6x1gJe/OfnScDBIu197pY5jxnm55OZtU5ZBCLiOLABG4zbY+6aHcxIWqdrCWu+ByrUHEtailyXVianSi0ZMejeqqE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772873285; c=relaxed/simple; bh=SRoExemJq9fx3orPBfGLqdJj4FFM8FPhZ7tWsqX3j64=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=q8TDU/QWGOLi0q4vRhcP6/xNYd7xmAoXmdCeOsFooVwzLH9ctyJDFASp7daNbiGvg5VRRZV5cHir2IJedZ2RjwpYVHkRgsgkCN/ub4Z727INP77wjjy3/eyfA6inrXenLWcsM2RHGvFWkppcb+gh4wOoY9LLKEIh6h0NGNeCUZo= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net; spf=pass smtp.mailfrom=weissschuh.net; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b=hdjJZKaR; arc=none smtp.client-ip=159.69.126.157 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=weissschuh.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=weissschuh.net header.i=@weissschuh.net header.b="hdjJZKaR" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=weissschuh.net; s=mail; t=1772873282; bh=SRoExemJq9fx3orPBfGLqdJj4FFM8FPhZ7tWsqX3j64=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=hdjJZKaRMFAqrbjCWfdrgWMRzrq/IOwN1CpwD+Gmkwo23F4iSYJqy62kNVVKT8gbz flX3tFRzLnwpcq+vW/2ffE+PI3rVePzydMKPuoDBlBCcOWTk0rT4GyXp2m3q+N+E4O CeG4Yph/hasE6PXKfLbgA1FQGrVD7j+ZxEzns/X0= From: =?utf-8?q?Thomas_Wei=C3=9Fschuh?= Date: Sat, 07 Mar 2026 09:47:53 +0100 Subject: [PATCH 2/2] tools/getdelays: use the static UAPI headers from tools/include/uapi Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-Id: <20260307-accounting-taskstats-h-v1-2-0b75915c6ce5@weissschuh.net> References: <20260307-accounting-taskstats-h-v1-0-0b75915c6ce5@weissschuh.net> In-Reply-To: <20260307-accounting-taskstats-h-v1-0-0b75915c6ce5@weissschuh.net> To: Balbir Singh , Yang Yang , Wang Yaxin , Andrew Morton Cc: Arnd Bergmann , xu xin , Kun Jiang , linux-kernel@vger.kernel.org, =?utf-8?q?Thomas_Wei=C3=9Fschuh?= , kernel test robot X-Mailer: b4 0.14.3 X-Developer-Signature: v=1; a=ed25519-sha256; t=1772873281; l=983; i=linux@weissschuh.net; s=20221212; h=from:subject:message-id; bh=SRoExemJq9fx3orPBfGLqdJj4FFM8FPhZ7tWsqX3j64=; b=A9qIy4P7vyEgw/THxyyUMTw4hp/RHCAVBKSsxu/+9WVsO2eosyaI4lDWlW4wSiIa0rLJVUjlw k/Xq9L/6T/WCwvvtx2jtEhwIddF5+gq8Y60KxEVrMbDzwE+VORktjDT X-Developer-Key: i=linux@weissschuh.net; a=ed25519; pk=KcycQgFPX2wGR5azS7RhpBqedglOZVgRPfdFSPB1LNw= The include directory ../../usr/include is only present if an in-tree kernel build with CONFIG_HEADERS_INSTALL was done before. Otherwise the system UAPI headers are used, which most likely are not the most recent ones. To make sure to always have access to up-to-date UAPI headers, use the static copy in tools/include/uapi. Reported-by: kernel test robot Closes: https://lore.kernel.org/r/202603062103.Z5fecwZD-lkp@intel.com/ Signed-off-by: Thomas Wei=C3=9Fschuh --- tools/accounting/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/accounting/Makefile b/tools/accounting/Makefile index 20bbd461515e..007c0bb8cbbb 100644 --- a/tools/accounting/Makefile +++ b/tools/accounting/Makefile @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0 CC :=3D $(CROSS_COMPILE)gcc -CFLAGS :=3D -I../../usr/include +CFLAGS :=3D -I../include/uapi/ =20 PROGS :=3D getdelays procacct delaytop =20 --=20 2.53.0