* [PATCH] tests/gem_flink_race, prime_self_import: fix object counts
@ 2014-05-07 13:55 Mika Kuoppala
2014-05-07 14:13 ` Daniel Vetter
0 siblings, 1 reply; 2+ messages in thread
From: Mika Kuoppala @ 2014-05-07 13:55 UTC (permalink / raw)
To: intel-gfx
We need to add one drm_open_any() before getting the object counts
as first call to drm_open_any() allocates file descriptors for
exit handlers and thus is not symmetrical
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77867
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77875
Signed-off-by: Mika Kuoppala <mika.kuoppala@intel.com>
---
tests/gem_flink_race.c | 8 ++++++++
tests/prime_self_import.c | 8 ++++++++
2 files changed, 16 insertions(+)
diff --git a/tests/gem_flink_race.c b/tests/gem_flink_race.c
index 3353b83..f129cb3 100644
--- a/tests/gem_flink_race.c
+++ b/tests/gem_flink_race.c
@@ -163,6 +163,11 @@ static void test_flink_close(void)
int r, i, num_threads;
int obj_count;
void *status;
+ int fake;
+
+ /* Allocate exit handler fds in here so that we dont screw
+ * up the counts */
+ fake = drm_open_any();
obj_count = get_object_count();
@@ -193,6 +198,9 @@ static void test_flink_close(void)
obj_count = get_object_count() - obj_count;
printf("leaked %i objects\n", obj_count);
+
+ close(fake);
+
igt_assert(obj_count == 0);
}
diff --git a/tests/prime_self_import.c b/tests/prime_self_import.c
index efdd24f..41c203f 100644
--- a/tests/prime_self_import.c
+++ b/tests/prime_self_import.c
@@ -258,6 +258,11 @@ static void test_reimport_close_race(void)
int obj_count;
void *status;
uint32_t handle;
+ int fake;
+
+ /* Allocate exit handler fds in here so that we dont screw
+ * up the counts */
+ fake = drm_open_any();
obj_count = get_object_count();
@@ -294,6 +299,9 @@ static void test_reimport_close_race(void)
obj_count = get_object_count() - obj_count;
printf("leaked %i objects\n", obj_count);
+
+ close(fake);
+
igt_assert(obj_count == 0);
}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] tests/gem_flink_race, prime_self_import: fix object counts
2014-05-07 13:55 [PATCH] tests/gem_flink_race, prime_self_import: fix object counts Mika Kuoppala
@ 2014-05-07 14:13 ` Daniel Vetter
0 siblings, 0 replies; 2+ messages in thread
From: Daniel Vetter @ 2014-05-07 14:13 UTC (permalink / raw)
To: Mika Kuoppala; +Cc: intel-gfx
On Wed, May 07, 2014 at 04:55:28PM +0300, Mika Kuoppala wrote:
> We need to add one drm_open_any() before getting the object counts
> as first call to drm_open_any() allocates file descriptors for
> exit handlers and thus is not symmetrical
>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77867
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=77875
> Signed-off-by: Mika Kuoppala <mika.kuoppala@intel.com>
Ah, makes sense. Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
When you push this please add a citation of the commit which introduced
this regression like we do it for kernel patches.
Thanks, Daniel
> ---
> tests/gem_flink_race.c | 8 ++++++++
> tests/prime_self_import.c | 8 ++++++++
> 2 files changed, 16 insertions(+)
>
> diff --git a/tests/gem_flink_race.c b/tests/gem_flink_race.c
> index 3353b83..f129cb3 100644
> --- a/tests/gem_flink_race.c
> +++ b/tests/gem_flink_race.c
> @@ -163,6 +163,11 @@ static void test_flink_close(void)
> int r, i, num_threads;
> int obj_count;
> void *status;
> + int fake;
> +
> + /* Allocate exit handler fds in here so that we dont screw
> + * up the counts */
> + fake = drm_open_any();
>
> obj_count = get_object_count();
>
> @@ -193,6 +198,9 @@ static void test_flink_close(void)
> obj_count = get_object_count() - obj_count;
>
> printf("leaked %i objects\n", obj_count);
> +
> + close(fake);
> +
> igt_assert(obj_count == 0);
> }
>
> diff --git a/tests/prime_self_import.c b/tests/prime_self_import.c
> index efdd24f..41c203f 100644
> --- a/tests/prime_self_import.c
> +++ b/tests/prime_self_import.c
> @@ -258,6 +258,11 @@ static void test_reimport_close_race(void)
> int obj_count;
> void *status;
> uint32_t handle;
> + int fake;
> +
> + /* Allocate exit handler fds in here so that we dont screw
> + * up the counts */
> + fake = drm_open_any();
>
> obj_count = get_object_count();
>
> @@ -294,6 +299,9 @@ static void test_reimport_close_race(void)
> obj_count = get_object_count() - obj_count;
>
> printf("leaked %i objects\n", obj_count);
> +
> + close(fake);
> +
> igt_assert(obj_count == 0);
> }
>
> --
> 1.7.9.5
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-05-07 14:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-07 13:55 [PATCH] tests/gem_flink_race, prime_self_import: fix object counts Mika Kuoppala
2014-05-07 14:13 ` Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox