From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id DBD8610E29C for ; Tue, 4 Jul 2023 07:23:55 +0000 (UTC) From: =?UTF-8?q?Zbigniew=20Kempczy=C5=84ski?= To: igt-dev@lists.freedesktop.org Date: Tue, 4 Jul 2023 09:23:47 +0200 Message-Id: <20230704072347.65359-1-zbigniew.kempczynski@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t] tests/xe_*.c: Fix build break on Ubuntu 22.04.2 LTS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: I've noticed missing fcntl.h include which breaks compilation of xe tests. Signed-off-by: Zbigniew KempczyƄski Cc: Karolina Stolarek --- tests/xe/xe_sysfs_defaults.c | 1 + tests/xe/xe_sysfs_scheduler.c | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/xe/xe_sysfs_defaults.c b/tests/xe/xe_sysfs_defaults.c index a1df312e74..5c9de43e9f 100644 --- a/tests/xe/xe_sysfs_defaults.c +++ b/tests/xe/xe_sysfs_defaults.c @@ -14,6 +14,7 @@ */ #include +#include #include #include #include diff --git a/tests/xe/xe_sysfs_scheduler.c b/tests/xe/xe_sysfs_scheduler.c index 9650194732..1da0f541ad 100644 --- a/tests/xe/xe_sysfs_scheduler.c +++ b/tests/xe/xe_sysfs_scheduler.c @@ -24,6 +24,7 @@ */ #include +#include #include #include #include -- 2.34.1