Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Ashutosh Dixit <ashutosh.dixit@intel.com>
To: igt-dev@lists.freedesktop.org
Cc: Petri Latvala <petri.latvala@intel.com>
Subject: [igt-dev] [PATCH i-g-t] lib/i915: Add i915_drm_local.h
Date: Tue, 27 Jul 2021 22:17:00 -0700	[thread overview]
Message-ID: <20210728051700.21223-1-ashutosh.dixit@intel.com> (raw)

It is necessary on occasion to add uapi declarations to IGT before they
appear in imported kernel uapi headers. This is typically done at present
using LOCAL declarations (or #ifndef's) which are dispersed across multiple
source and header files. Such declarations sometimes linger on in the code
for months or years till someone thinks of cleaning them up.

As opposed to this, provide a central location (in i915_drm_local.h) for
such early uapi declarations in IGT. These declarations will be added to
i915_drm_local.h exactly as they are expected to appear in the kernel uapi
headers, i.e. without the LOCAL_ or local_ prefix. They can be cleaned up
when the uapi headers are sync'd or they can live on (if they don't
conflict with the kernel headers) but at least they will be in a single
place and more visible. At least that is the hope.

Cc: Petri Latvala <petri.latvala@intel.com>
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
 lib/i915/i915_drm_local.h | 27 +++++++++++++++++++++++++++
 lib/igt_gt.h              |  1 +
 2 files changed, 28 insertions(+)
 create mode 100644 lib/i915/i915_drm_local.h

diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h
new file mode 100644
index 00000000000..dd646aedf49
--- /dev/null
+++ b/lib/i915/i915_drm_local.h
@@ -0,0 +1,27 @@
+/* SPDX-License-Identifier: MIT */
+/*
+ * Copyright © 2021 Intel Corporation
+ */
+#ifndef _I915_DRM_LOCAL_H_
+#define _I915_DRM_LOCAL_H_
+
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
+/*
+ * It is necessary on occasion to add uapi declarations to IGT before they
+ * appear in imported kernel uapi headers. This header is provided for this
+ * purpose.
+
+ * Early uapi declarations should be added here exactly as they are
+ * expected to appear in the kernel uapi headers, i.e. without the LOCAL_
+ * or local_ prefix and without any #ifndef's. Attempt should be made to
+ * clean these up when kernel uapi headers are sync'd.
+ */
+
+#if defined(__cplusplus)
+}
+#endif
+
+#endif /* _I915_DRM_LOCAL_H_ */
diff --git a/lib/igt_gt.h b/lib/igt_gt.h
index 2ea360cc48a..d87fae2d39c 100644
--- a/lib/igt_gt.h
+++ b/lib/igt_gt.h
@@ -28,6 +28,7 @@
 #include "igt_dummyload.h"
 #include "igt_core.h"
 
+#include "i915/i915_drm_local.h"
 #include "i915_drm.h"
 
 void igt_require_hang_ring(int fd, int ring);
-- 
2.31.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

             reply	other threads:[~2021-07-28  5:17 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-28  5:17 Ashutosh Dixit [this message]
2021-07-28  6:42 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Add i915_drm_local.h Patchwork
2021-07-28  9:28 ` [igt-dev] ✗ GitLab.Pipeline: warning " Patchwork
2021-07-28 15:05 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-07-29  8:25 ` [igt-dev] [PATCH i-g-t] " Petri Latvala
2021-07-30  1:09   ` Dixit, Ashutosh

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210728051700.21223-1-ashutosh.dixit@intel.com \
    --to=ashutosh.dixit@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=petri.latvala@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox