From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 52A21C54E67 for ; Fri, 15 Mar 2024 13:19:18 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id CF2A710E15A; Fri, 15 Mar 2024 13:19:17 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="m9/1xDIj"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.8]) by gabe.freedesktop.org (Postfix) with ESMTPS id A371E10E15A for ; Fri, 15 Mar 2024 13:19:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1710508756; x=1742044756; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=OBVs+fTlVukCjDB/LNsAV8VH02wBquEdRJdelgHFzoo=; b=m9/1xDIjixDDslrvgfMr+l02KhQIxlLfExR7UMyA9/q1aDMN9BzWuW2O 7yXUiKVCDhXF4dwkAooyvjldIhtk8R/cJFN9H+BzWKP6XSyN0x+xfhTgh 9WsyoxAB28x6nonMmqeXkZO5fDbcxVGdKNUYtQf7K2jkVK6EV/Sz4n3x4 B+4h7q/JFZmAA82RdU6Obegu/d26vIiGvCK7x2OGILOmmTfirKJRpvfQI zJSDIhGJdh4uTj5qV9XhidaWr9gRQZri0a+5x/Wdh5QzN9ULK6m27JwE6 Pjel946QOSWcm38sme6uI7uQP+JrDnBduOld+br2KWGGHLq1yWyARO2vj A==; X-IronPort-AV: E=McAfee;i="6600,9927,11013"; a="22897139" X-IronPort-AV: E=Sophos;i="6.07,128,1708416000"; d="scan'208";a="22897139" Received: from orviesa003.jf.intel.com ([10.64.159.143]) by fmvoesa102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Mar 2024 06:19:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.07,128,1708416000"; d="scan'208";a="17372761" Received: from unknown (HELO localhost) ([10.245.246.202]) by ORVIESA003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Mar 2024 06:19:15 -0700 From: Kamil Konieczny To: igt-dev@lists.freedesktop.org Cc: Kamil Konieczny , Bernd Kuhls Subject: [PATCH i-g-t v1 2/3] lib/igt_kmod: fix musl builds Date: Fri, 15 Mar 2024 14:19:00 +0100 Message-ID: <20240315131901.28144-3-kamil.konieczny@linux.intel.com> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20240315131901.28144-1-kamil.konieczny@linux.intel.com> References: <20240315131901.28144-1-kamil.konieczny@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: igt-dev@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development mailing list for IGT GPU Tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" On musl build the PATH_MAX define is missing, fixed this with including limits.h Link: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/138 Cc: Bernd Kuhls Signed-off-by: Kamil Konieczny --- lib/igt_kmod.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/igt_kmod.c b/lib/igt_kmod.c index b4b884898..0b01f070f 100644 --- a/lib/igt_kmod.c +++ b/lib/igt_kmod.c @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include -- 2.42.0