public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Antonio Argenziano <antonio.argenziano@intel.com>
To: igt-dev@lists.freedesktop.org
Subject: [igt-dev] [PATCH i-g-t v5 8/9] Remove static variables from mapping version function
Date: Wed, 12 Jun 2019 15:57:33 -0700	[thread overview]
Message-ID: <20190612225734.14514-9-antonio.argenziano@intel.com> (raw)
In-Reply-To: <20190612225734.14514-1-antonio.argenziano@intel.com>

---
 lib/i915/gem_mman.c | 21 ++++++++-------------
 1 file changed, 8 insertions(+), 13 deletions(-)

diff --git a/lib/i915/gem_mman.c b/lib/i915/gem_mman.c
index 4d41a66d..7b7ffb99 100644
--- a/lib/i915/gem_mman.c
+++ b/lib/i915/gem_mman.c
@@ -50,22 +50,17 @@
  */
 static int gem_mmap__gtt_version(int fd)
 {
-	static int gtt_version = ~0;
-
-	if (gtt_version == ~0) {
-			struct drm_i915_getparam gp;
-
-			gtt_version = 0;
+	int gtt_version = ~0;
+	struct drm_i915_getparam gp;
 
-			memset(&gp, 0, sizeof(gp));
-			gp.param = I915_PARAM_MMAP_GTT_VERSION;
-			gp.value = &gtt_version;
+	memset(&gp, 0, sizeof(gp));
+	gp.param = I915_PARAM_MMAP_GTT_VERSION;
+	gp.value = &gtt_version;
 
-			if(ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp) && errno == -ENODEV)
-				gtt_version = -1; /* No mappable aperture */
+	if(ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp) && errno == -ENODEV)
+		gtt_version = -1; /* No mappable aperture */
 
-			errno = 0;
-	}
+	errno = 0;
 
 	return gtt_version;
 }
-- 
2.21.0

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

  parent reply	other threads:[~2019-06-12 22:58 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-12 22:57 [igt-dev] [PATCH i-g-t v5 0/9] Aperture removal IGT changes Antonio Argenziano
2019-06-12 22:57 ` [igt-dev] [PATCH i-g-t v5 1/9] tests/i915/gem_render_copy.c: Do detiling on the CPU side Antonio Argenziano
2019-06-12 22:57 ` [igt-dev] [PATCH i-g-t v5 2/9] tests/i915/gem_madvise.c: Add more mappings Antonio Argenziano
2019-06-12 22:57 ` [igt-dev] [PATCH i-g-t v5 3/9] lib/i915/gem_mman: Remove static variables Antonio Argenziano
2019-06-12 22:57 ` [igt-dev] [PATCH i-g-t v5 4/9] lib/i915: Add mmap_offset support Antonio Argenziano
2019-06-12 22:57 ` [igt-dev] [PATCH i-g-t v5 5/9] tests/i915/gem_mmap_offset_exhaustion.c: Extend test to different mappings Antonio Argenziano
2019-06-12 22:57 ` [igt-dev] [PATCH i-g-t v5 6/9] igt/lib: Add wrapper to check if gtt mapping is available Antonio Argenziano
2019-06-12 22:57 ` [igt-dev] [PATCH i-g-t v5 7/9] igt/i915: Require GTT mapping to be available when needed Antonio Argenziano
2019-06-12 22:57 ` Antonio Argenziano [this message]
2019-06-12 22:57 ` [igt-dev] [PATCH i-g-t v5 9/9] igt/lib: If mappable aperture is missing return 0 size Antonio Argenziano
2019-06-13  1:37 ` [igt-dev] ✗ Fi.CI.BAT: failure for Aperture removal IGT changes Patchwork

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=20190612225734.14514-9-antonio.argenziano@intel.com \
    --to=antonio.argenziano@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    /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