From aee0dcb1ec2075991d310dd6f3fb5e50160847d1 Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Tue, 3 Dec 2013 16:32:52 +0100 Subject: test/gem_concurrent_blt Limit working set size also with available ram. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=72255 Signed-off-by: Daniel Vetter --- tests/gem_concurrent_blit.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/gem_concurrent_blit.c') diff --git a/tests/gem_concurrent_blit.c b/tests/gem_concurrent_blit.c index fb56c257..27bc795f 100644 --- a/tests/gem_concurrent_blit.c +++ b/tests/gem_concurrent_blit.c @@ -366,6 +366,10 @@ igt_main max = gem_aperture_size (fd) / (1024 * 1024) / 2; if (num_buffers > max) num_buffers = max; + + max = intel_get_total_ram_mb() * 3 / 4; + if (num_buffers > max) + num_buffers = max; } for (i = 0; i < ARRAY_SIZE(access_modes); i++) -- cgit v1.2.3