From 74670c7bb9968a99d75a97c3677b15110281c94d Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Sun, 17 Jul 2011 23:33:27 +0200 Subject: [PATCH] gem_stress: ducttaping mandatory In other news: We've been missing a unmapping_mapping_range somewhere in the kernel. But lazy me never came around to digging up the real cause. Signed-off-by: Daniel Vetter --- tests/gem_stress.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/gem_stress.c b/tests/gem_stress.c index e279365..6ee0f98 100644 --- a/tests/gem_stress.c +++ b/tests/gem_stress.c @@ -692,7 +692,7 @@ static void parse_options(int argc, char **argv) {"no-fail", 0, 0, 'f'}, {"tiles-per-buf", 0, 0, 'p'}, #define DUCTAPE 0xdead0001 - {"apply-duct-tape", 0, 0, DUCTAPE}, + {"remove-duct-tape", 0, 0, DUCTAPE}, #define TILESZ 0xdead0002 {"tile-size", 1, 0, TILESZ}, #define CHCK_RENDER 0xdead0003 @@ -711,7 +711,7 @@ static void parse_options(int argc, char **argv) options.use_cpu_maps = 0; options.total_rounds = 512; options.fail = 1; - options.ducttape = 0; + options.ducttape = 1; options.tile_size = 16; options.tiles_per_buf = options.scratch_buf_size / TILE_BYTES(options.tile_size); options.check_render_cpyfn = 0; @@ -795,7 +795,7 @@ static void parse_options(int argc, char **argv) printf("tiles per buffer %i\n", options.tiles_per_buf); break; case DUCTAPE: - options.ducttape = 1; + options.ducttape = 0; printf("applying duct-tape\n"); break; case TILESZ: -- 2.7.4