summaryrefslogtreecommitdiff
path: root/tests/gem_ctx_thrash.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2016-02-05 11:46:41 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2016-02-18 09:46:02 +0000
commit3b12d9e6dc115939ddd110c7a7f7ad319b731524 (patch)
treeb65cd597a395a91ace5a466422e7130a3e7f61da /tests/gem_ctx_thrash.c
parentef724ab2bba7a51113542c0bc9e77d34e8935c60 (diff)
igt/gem_ctx_thrash: Double number of threads/proceesses
Slightly increase the stress by doubling the number of contending threads and the number of times we try and use each ctx/fd. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests/gem_ctx_thrash.c')
-rw-r--r--tests/gem_ctx_thrash.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/gem_ctx_thrash.c b/tests/gem_ctx_thrash.c
index c7d0bbf7..7feedf6f 100644
--- a/tests/gem_ctx_thrash.c
+++ b/tests/gem_ctx_thrash.c
@@ -33,7 +33,7 @@
IGT_TEST_DESCRIPTION("Fill the Gobal GTT with context objects and VMs\n");
-#define NUM_THREADS sysconf(_SC_NPROCESSORS_ONLN)
+#define NUM_THREADS (2*sysconf(_SC_NPROCESSORS_ONLN))
static void xchg_int(void *array, unsigned i, unsigned j)
{
@@ -175,19 +175,18 @@ struct thread {
int fd;
uint32_t *all_ctx;
unsigned num_ctx;
+ uint32_t batch;
};
static void *thread(void *data)
{
struct thread *t = data;
- uint32_t bbe = MI_BATCH_BUFFER_END;
struct drm_i915_gem_execbuffer2 execbuf;
struct drm_i915_gem_exec_object2 obj;
uint32_t *ctx;
memset(&obj, 0, sizeof(obj));
- obj.handle = gem_create(t->fd, 4096);
- gem_write(t->fd, obj.handle, 0, &bbe, sizeof(bbe));
+ obj.handle = t->batch;
memset(&execbuf, 0, sizeof(execbuf));
execbuf.buffers_ptr = (uintptr_t)&obj;
@@ -204,13 +203,13 @@ static void *thread(void *data)
}
free(ctx);
- gem_close(t->fd, obj.handle);
return NULL;
}
static void threads(void)
{
+ uint32_t bbe = MI_BATCH_BUFFER_END;
pthread_t threads[NUM_THREADS];
struct thread data;
@@ -220,6 +219,8 @@ static void threads(void)
igt_assert(data.all_ctx);
for (unsigned n = 0; n < data.num_ctx; n++)
data.all_ctx[n] = gem_context_create(data.fd);
+ data.batch = gem_create(data.fd, 4096);
+ gem_write(data.fd, data.batch, 0, &bbe, sizeof(bbe));
for (int n = 0; n < NUM_THREADS; n++)
pthread_create(&threads[n], NULL, thread, &data);