* [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc
@ 2022-03-28 8:31 Kamil Konieczny
2022-03-28 8:31 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: add create without relocs Kamil Konieczny
` (3 more replies)
0 siblings, 4 replies; 12+ messages in thread
From: Kamil Konieczny @ 2022-03-28 8:31 UTC (permalink / raw)
To: igt-dev
Add noreloc mode for GPU gens without relocations. Also
while at this, add some caching for required properties.
Change also snoop function so it will work on DG1.
v3: address Zbigniew review: correcting comment style, changed
checks in bit17_require
v2: rebased, fix caching in bit17_require, addressed Zbigniew
review comments
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Kamil Konieczny (2):
lib/intel_batchbuffer: add create without relocs
tests/i915/gem_concurrent_all: Add no-reloc capability
lib/intel_batchbuffer.c | 7 ++
lib/intel_batchbuffer.h | 1 +
tests/i915/gem_concurrent_all.c | 167 +++++++++++++++++++++++++++-----
3 files changed, 152 insertions(+), 23 deletions(-)
--
2.32.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: add create without relocs 2022-03-28 8:31 [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc Kamil Konieczny @ 2022-03-28 8:31 ` Kamil Konieczny 2022-03-28 8:31 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_concurrent_all: Add no-reloc capability Kamil Konieczny ` (2 subsequent siblings) 3 siblings, 0 replies; 12+ messages in thread From: Kamil Konieczny @ 2022-03-28 8:31 UTC (permalink / raw) To: igt-dev There is create function with relocations, so add its counterpart without it. v2: change to HIGH_TO_LOW allocation (Zbigniew) Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- lib/intel_batchbuffer.c | 7 +++++++ lib/intel_batchbuffer.h | 1 + 2 files changed, 8 insertions(+) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 2cd472d1..be6cce85 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -1493,6 +1493,13 @@ struct intel_bb *intel_bb_create(int i915, uint32_t size) ALLOC_STRATEGY_HIGH_TO_LOW); } +struct intel_bb *intel_bb_create_no_relocs(int i915, uint32_t size) +{ + return __intel_bb_create(i915, 0, size, false, 0, 0, + INTEL_ALLOCATOR_SIMPLE, + ALLOC_STRATEGY_HIGH_TO_LOW); +} + /** * intel_bb_create_with_context: * @i915: drm fd diff --git a/lib/intel_batchbuffer.h b/lib/intel_batchbuffer.h index 75d41ea3..8cc829d9 100644 --- a/lib/intel_batchbuffer.h +++ b/lib/intel_batchbuffer.h @@ -524,6 +524,7 @@ struct intel_bb *intel_bb_create(int i915, uint32_t size); struct intel_bb * intel_bb_create_with_context(int i915, uint32_t ctx, uint32_t size); struct intel_bb *intel_bb_create_with_relocs(int i915, uint32_t size); +struct intel_bb *intel_bb_create_no_relocs(int i915, uint32_t size); struct intel_bb * intel_bb_create_with_relocs_and_context(int i915, uint32_t ctx, uint32_t size); void intel_bb_destroy(struct intel_bb *ibb); -- 2.32.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_concurrent_all: Add no-reloc capability 2022-03-28 8:31 [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc Kamil Konieczny 2022-03-28 8:31 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: add create without relocs Kamil Konieczny @ 2022-03-28 8:31 ` Kamil Konieczny 2022-03-28 12:33 ` Zbigniew Kempczyński 2022-03-28 11:00 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_concurrent_all: Add no-reloc (rev3) Patchwork 2022-03-28 12:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 1 reply; 12+ messages in thread From: Kamil Konieczny @ 2022-03-28 8:31 UTC (permalink / raw) To: igt-dev Add noreloc mode for GPU gens without relocations. Also while at this, add some caching for required properties. Change also snoop function so it will work on DG1. Tested with ./gem_concurrent_blit --run '4KiB-tiny-gpu-*' and 256KiB with modified drm-tip to allow softpinning. v6: correct comment, rewrite bit17 caching (Zbigniew) v5: rebase, fix caching in bit17_require, changes according to Zbigniew review: simplify cache of !gem_has_llc, drop multiprocess start/stop, use ALLOC_STRATEGY_HIGH_TO_LOW, correct offset and flags v4: corrected alloc_open and first ahnd setting Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> --- tests/i915/gem_concurrent_all.c | 167 +++++++++++++++++++++++++++----- 1 file changed, 144 insertions(+), 23 deletions(-) diff --git a/tests/i915/gem_concurrent_all.c b/tests/i915/gem_concurrent_all.c index d0f9b62e..3e650233 100644 --- a/tests/i915/gem_concurrent_all.c +++ b/tests/i915/gem_concurrent_all.c @@ -60,6 +60,7 @@ int fd, devid, gen; int vgem_drv = -1; int all; int pass; +uint64_t ahnd; struct create { const char *name; @@ -239,8 +240,16 @@ unmapped_create_bo(const struct buffers *b) static void create_snoop_require(const struct create *create, unsigned count) { + static bool check_llc = true; + static bool has_snoop; + create_cpu_require(create, count); - igt_require(!gem_has_llc(fd)); + if (check_llc) { + has_snoop = !gem_has_llc(fd); + check_llc = false; + } + + igt_require(has_snoop); } static struct intel_buf * @@ -249,7 +258,7 @@ snoop_create_bo(const struct buffers *b) struct intel_buf *buf; buf = unmapped_create_bo(b); - gem_set_caching(fd, buf->handle, I915_CACHING_CACHED); + __gem_set_caching(fd, buf->handle, I915_CACHING_CACHED); return buf; } @@ -581,11 +590,29 @@ static void bit17_require(void) #define DRM_IOCTL_I915_GEM_GET_TILING2 DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_TILING, struct drm_i915_gem_get_tiling2) if (arg.handle == 0) { + bool has_tiling2; + int err_tiling; + + has_tiling2 = false; arg.handle = gem_create(fd, 4096); - gem_set_tiling(fd, arg.handle, I915_TILING_X, 512); + err_tiling = __gem_set_tiling(fd, arg.handle, I915_TILING_X, 512); + if (!err_tiling) { + igt_ioctl(fd, DRM_IOCTL_I915_GEM_GET_TILING2, &arg); + if (!errno) + has_tiling2 = true; + + errno = 0; + } - do_ioctl(fd, DRM_IOCTL_I915_GEM_GET_TILING2, &arg); gem_close(fd, arg.handle); + if (err_tiling || !has_tiling2) + if (arg.phys_swizzle_mode == arg.swizzle_mode) { + arg.phys_swizzle_mode = 0; + arg.swizzle_mode = -1; + } + + igt_require(!err_tiling); + igt_require(has_tiling2); } igt_require(arg.phys_swizzle_mode == arg.swizzle_mode); } @@ -670,11 +697,21 @@ gpu_set_bo(struct buffers *buffers, struct intel_buf *buf, uint32_t val) struct drm_i915_gem_exec_object2 gem_exec[2]; struct drm_i915_gem_execbuffer2 execbuf; uint32_t tmp[10], *b; + uint64_t addr = 0; memset(reloc, 0, sizeof(reloc)); memset(gem_exec, 0, sizeof(gem_exec)); memset(&execbuf, 0, sizeof(execbuf)); + if (ahnd) { + addr = buf->addr.offset; + if (INVALID_ADDR(addr)) { + addr = intel_allocator_alloc(buffers->ibb->allocator_handle, + buf->handle, buf->size, 0); + buf->addr.offset = addr; + } + } + b = tmp; *b++ = XY_COLOR_BLT_CMD_NOLEN | ((gen >= 8) ? 5 : 4) | @@ -691,9 +728,9 @@ gpu_set_bo(struct buffers *buffers, struct intel_buf *buf, uint32_t val) reloc[0].target_handle = buf->handle; reloc[0].read_domains = I915_GEM_DOMAIN_RENDER; reloc[0].write_domain = I915_GEM_DOMAIN_RENDER; - *b++ = 0; + *b++ = addr; if (gen >= 8) - *b++ = 0; + *b++ = addr >> 32; *b++ = val; *b++ = MI_BATCH_BUFFER_END; if ((b - tmp) & 1) @@ -703,8 +740,19 @@ gpu_set_bo(struct buffers *buffers, struct intel_buf *buf, uint32_t val) gem_exec[0].flags = EXEC_OBJECT_NEEDS_FENCE; gem_exec[1].handle = gem_create(fd, 4096); - gem_exec[1].relocation_count = 1; - gem_exec[1].relocs_ptr = to_user_pointer(reloc); + if (!ahnd) { + gem_exec[1].relocation_count = 1; + gem_exec[1].relocs_ptr = to_user_pointer(reloc); + } else { + gem_exec[1].offset = CANONICAL(intel_allocator_alloc(ahnd, + gem_exec[1].handle, + 4096, 0)); + gem_exec[1].flags |= EXEC_OBJECT_PINNED | EXEC_OBJECT_SUPPORTS_48B_ADDRESS; + + gem_exec[0].offset = CANONICAL(buf->addr.offset); + gem_exec[0].flags |= EXEC_OBJECT_PINNED | EXEC_OBJECT_WRITE | + EXEC_OBJECT_SUPPORTS_48B_ADDRESS; + } execbuf.buffers_ptr = to_user_pointer(gem_exec); execbuf.buffer_count = 2; @@ -716,6 +764,7 @@ gpu_set_bo(struct buffers *buffers, struct intel_buf *buf, uint32_t val) gem_execbuf(fd, &execbuf); gem_close(fd, gem_exec[1].handle); + put_offset(ahnd, gem_exec[1].handle); } static void @@ -766,6 +815,18 @@ static bool set_max_map_count(int num_buffers) return max > num_buffers; } +static uint64_t alloc_open(void) +{ + return ahnd ? intel_allocator_open_full(fd, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, + ALLOC_STRATEGY_HIGH_TO_LOW, 0) : 0; +} + +static struct intel_bb *bb_create(int i915, uint32_t size) +{ + return ahnd ? intel_bb_create_no_relocs(i915, size) : + intel_bb_create_with_relocs(i915, size); +} + static void buffers_init(struct buffers *b, const char *name, const struct create *create, @@ -796,7 +857,7 @@ static void buffers_init(struct buffers *b, igt_assert(b->src); b->dst = b->src + num_buffers; - b->ibb = intel_bb_create(_fd, 4096); + b->ibb = bb_create(_fd, 4096); } static void buffers_destroy(struct buffers *b) @@ -829,6 +890,27 @@ static void buffers_destroy(struct buffers *b) } } +static void bb_destroy(struct buffers *b) +{ + if (b->ibb) { + intel_bb_destroy(b->ibb); + b->ibb = NULL; + } +} + +static void __bufs_destroy(struct buffers *b) +{ + buffers_destroy(b); + if (b->ibb) { + intel_bb_destroy(b->ibb); + b->ibb = NULL; + } + if (b->bops) { + buf_ops_destroy(b->bops); + b->bops = NULL; + } +} + static void buffers_create(struct buffers *b) { int count = b->num_buffers; @@ -838,32 +920,57 @@ static void buffers_create(struct buffers *b) igt_assert(b->count == 0); b->count = count; + ahnd = alloc_open(); for (int i = 0; i < count; i++) { b->src[i] = b->mode->create_bo(b); b->dst[i] = b->mode->create_bo(b); } b->spare = b->mode->create_bo(b); b->snoop = snoop_create_bo(b); + if (b->ibb) + intel_bb_destroy(b->ibb); + + b->ibb = bb_create(fd, 4096); } static void buffers_reset(struct buffers *b) { b->bops = buf_ops_create(fd); - b->ibb = intel_bb_create(fd, 4096); + b->ibb = bb_create(fd, 4096); +} + +static void __buffers_create(struct buffers *b) +{ + b->bops = buf_ops_create(fd); + igt_assert(b->bops); + igt_assert(b->num_buffers > 0); + igt_assert(b->mode); + igt_assert(b->mode->create_bo); + + b->count = 0; + for (int i = 0; i < b->num_buffers; i++) { + b->src[i] = b->mode->create_bo(b); + b->dst[i] = b->mode->create_bo(b); + } + b->count = b->num_buffers; + b->spare = b->mode->create_bo(b); + b->snoop = snoop_create_bo(b); + ahnd = alloc_open(); + b->ibb = bb_create(fd, 4096); } static void buffers_fini(struct buffers *b) { if (b->bops == NULL) return; - buffers_destroy(b); free(b->tmp); free(b->src); - - intel_bb_destroy(b->ibb); - buf_ops_destroy(b->bops); + if (b->ibb) + intel_bb_destroy(b->ibb); + if (b->bops) + buf_ops_destroy(b->bops); memset(b, 0, sizeof(*b)); } @@ -1306,6 +1413,8 @@ static void run_single(struct buffers *buffers, do_hang do_hang_func) { pass = 0; + bb_destroy(buffers); + buffers->ibb = bb_create(fd, 4096); do_test_func(buffers, do_copy_func, do_hang_func); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); } @@ -1316,6 +1425,8 @@ static void run_interruptible(struct buffers *buffers, do_hang do_hang_func) { pass = 0; + bb_destroy(buffers); + buffers->ibb = bb_create(fd, 4096); igt_while_interruptible(true) do_test_func(buffers, do_copy_func, do_hang_func); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); @@ -1332,10 +1443,18 @@ static void run_child(struct buffers *buffers, * leading to the child closing an object without the parent knowing. */ pass = 0; - igt_fork(child, 1) + __bufs_destroy(buffers); + + igt_fork(child, 1) { + /* recreate process local variables */ + intel_allocator_init(); + __buffers_create(buffers); do_test_func(buffers, do_copy_func, do_hang_func); + } igt_waitchildren(); + igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); + buffers_reset(buffers); } static void __run_forked(struct buffers *buffers, @@ -1346,24 +1465,20 @@ static void __run_forked(struct buffers *buffers, { /* purge the caches before cloing the process */ - buffers_destroy(buffers); - intel_bb_destroy(buffers->ibb); - buf_ops_destroy(buffers->bops); + __bufs_destroy(buffers); igt_fork(child, num_children) { int num_buffers; /* recreate process local variables */ fd = gem_reopen_driver(fd); - + intel_allocator_init(); /* detach from thread */ num_buffers = buffers->num_buffers / num_children; num_buffers += MIN_BUFFERS; if (num_buffers < buffers->num_buffers) buffers->num_buffers = num_buffers; - buffers_reset(buffers); - buffers_create(buffers); - + __buffers_create(buffers); igt_while_interruptible(interrupt) { for (pass = 0; pass < loops; pass++) do_test_func(buffers, @@ -1773,6 +1888,7 @@ igt_main { "16MiB", 2048, 2048 }, { NULL} }; + uint64_t pin_sz = 0; void *pinned = NULL; char name[80]; @@ -1792,6 +1908,12 @@ igt_main rendercopy = igt_get_render_copyfunc(devid); vgem_drv = __drm_open_driver(DRIVER_VGEM); + + ahnd = intel_allocator_open_full(fd, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, + ALLOC_STRATEGY_HIGH_TO_LOW, 0); + put_ahnd(ahnd); + if (ahnd) + intel_bb_track(true); } for (const struct create *c = create; c->name; c++) { @@ -1864,7 +1986,6 @@ igt_main igt_fixture igt_stop_shrink_helper(); } - /* Use the entire mappable aperture, force swapping */ snprintf(name, sizeof(name), "%s%s-%s", c->name, s->name, "swap"); -- 2.32.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_concurrent_all: Add no-reloc capability 2022-03-28 8:31 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_concurrent_all: Add no-reloc capability Kamil Konieczny @ 2022-03-28 12:33 ` Zbigniew Kempczyński 0 siblings, 0 replies; 12+ messages in thread From: Zbigniew Kempczyński @ 2022-03-28 12:33 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev On Mon, Mar 28, 2022 at 10:31:40AM +0200, Kamil Konieczny wrote: > Add noreloc mode for GPU gens without relocations. Also > while at this, add some caching for required properties. > Change also snoop function so it will work on DG1. > > Tested with ./gem_concurrent_blit --run '4KiB-tiny-gpu-*' > and 256KiB with modified drm-tip to allow softpinning. > > v6: correct comment, rewrite bit17 caching (Zbigniew) > v5: rebase, fix caching in bit17_require, changes according > to Zbigniew review: simplify cache of !gem_has_llc, drop > multiprocess start/stop, use ALLOC_STRATEGY_HIGH_TO_LOW, > correct offset and flags > v4: corrected alloc_open and first ahnd setting > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Cc: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > --- > tests/i915/gem_concurrent_all.c | 167 +++++++++++++++++++++++++++----- > 1 file changed, 144 insertions(+), 23 deletions(-) > > diff --git a/tests/i915/gem_concurrent_all.c b/tests/i915/gem_concurrent_all.c > index d0f9b62e..3e650233 100644 > --- a/tests/i915/gem_concurrent_all.c > +++ b/tests/i915/gem_concurrent_all.c > @@ -60,6 +60,7 @@ int fd, devid, gen; > int vgem_drv = -1; > int all; > int pass; > +uint64_t ahnd; > > struct create { > const char *name; > @@ -239,8 +240,16 @@ unmapped_create_bo(const struct buffers *b) > > static void create_snoop_require(const struct create *create, unsigned count) > { > + static bool check_llc = true; > + static bool has_snoop; > + > create_cpu_require(create, count); > - igt_require(!gem_has_llc(fd)); > + if (check_llc) { > + has_snoop = !gem_has_llc(fd); > + check_llc = false; > + } > + > + igt_require(has_snoop); > } > > static struct intel_buf * > @@ -249,7 +258,7 @@ snoop_create_bo(const struct buffers *b) > struct intel_buf *buf; > > buf = unmapped_create_bo(b); > - gem_set_caching(fd, buf->handle, I915_CACHING_CACHED); > + __gem_set_caching(fd, buf->handle, I915_CACHING_CACHED); > > return buf; > } > @@ -581,11 +590,29 @@ static void bit17_require(void) > #define DRM_IOCTL_I915_GEM_GET_TILING2 DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_TILING, struct drm_i915_gem_get_tiling2) > > if (arg.handle == 0) { > + bool has_tiling2; > + int err_tiling; > + > + has_tiling2 = false; > arg.handle = gem_create(fd, 4096); > - gem_set_tiling(fd, arg.handle, I915_TILING_X, 512); > + err_tiling = __gem_set_tiling(fd, arg.handle, I915_TILING_X, 512); > + if (!err_tiling) { > + igt_ioctl(fd, DRM_IOCTL_I915_GEM_GET_TILING2, &arg); > + if (!errno) > + has_tiling2 = true; > + > + errno = 0; > + } > > - do_ioctl(fd, DRM_IOCTL_I915_GEM_GET_TILING2, &arg); > gem_close(fd, arg.handle); > + if (err_tiling || !has_tiling2) > + if (arg.phys_swizzle_mode == arg.swizzle_mode) { > + arg.phys_swizzle_mode = 0; > + arg.swizzle_mode = -1; > + } > + > + igt_require(!err_tiling); > + igt_require(has_tiling2); Still little bit overengineered. set/get were provided in pairs, so trying to set on gen which doesn't support can immediately go out with require (apart of gem_close() which should be done to avoid fd leakage). So calling get-tiling and gathering / faking information is a little bit confusing. -- Zbigniew > } > igt_require(arg.phys_swizzle_mode == arg.swizzle_mode); > } > @@ -670,11 +697,21 @@ gpu_set_bo(struct buffers *buffers, struct intel_buf *buf, uint32_t val) > struct drm_i915_gem_exec_object2 gem_exec[2]; > struct drm_i915_gem_execbuffer2 execbuf; > uint32_t tmp[10], *b; > + uint64_t addr = 0; > > memset(reloc, 0, sizeof(reloc)); > memset(gem_exec, 0, sizeof(gem_exec)); > memset(&execbuf, 0, sizeof(execbuf)); > > + if (ahnd) { > + addr = buf->addr.offset; > + if (INVALID_ADDR(addr)) { > + addr = intel_allocator_alloc(buffers->ibb->allocator_handle, > + buf->handle, buf->size, 0); > + buf->addr.offset = addr; > + } > + } > + > b = tmp; > *b++ = XY_COLOR_BLT_CMD_NOLEN | > ((gen >= 8) ? 5 : 4) | > @@ -691,9 +728,9 @@ gpu_set_bo(struct buffers *buffers, struct intel_buf *buf, uint32_t val) > reloc[0].target_handle = buf->handle; > reloc[0].read_domains = I915_GEM_DOMAIN_RENDER; > reloc[0].write_domain = I915_GEM_DOMAIN_RENDER; > - *b++ = 0; > + *b++ = addr; > if (gen >= 8) > - *b++ = 0; > + *b++ = addr >> 32; > *b++ = val; > *b++ = MI_BATCH_BUFFER_END; > if ((b - tmp) & 1) > @@ -703,8 +740,19 @@ gpu_set_bo(struct buffers *buffers, struct intel_buf *buf, uint32_t val) > gem_exec[0].flags = EXEC_OBJECT_NEEDS_FENCE; > > gem_exec[1].handle = gem_create(fd, 4096); > - gem_exec[1].relocation_count = 1; > - gem_exec[1].relocs_ptr = to_user_pointer(reloc); > + if (!ahnd) { > + gem_exec[1].relocation_count = 1; > + gem_exec[1].relocs_ptr = to_user_pointer(reloc); > + } else { > + gem_exec[1].offset = CANONICAL(intel_allocator_alloc(ahnd, > + gem_exec[1].handle, > + 4096, 0)); > + gem_exec[1].flags |= EXEC_OBJECT_PINNED | EXEC_OBJECT_SUPPORTS_48B_ADDRESS; > + > + gem_exec[0].offset = CANONICAL(buf->addr.offset); > + gem_exec[0].flags |= EXEC_OBJECT_PINNED | EXEC_OBJECT_WRITE | > + EXEC_OBJECT_SUPPORTS_48B_ADDRESS; > + } > > execbuf.buffers_ptr = to_user_pointer(gem_exec); > execbuf.buffer_count = 2; > @@ -716,6 +764,7 @@ gpu_set_bo(struct buffers *buffers, struct intel_buf *buf, uint32_t val) > gem_execbuf(fd, &execbuf); > > gem_close(fd, gem_exec[1].handle); > + put_offset(ahnd, gem_exec[1].handle); > } > > static void > @@ -766,6 +815,18 @@ static bool set_max_map_count(int num_buffers) > return max > num_buffers; > } > > +static uint64_t alloc_open(void) > +{ > + return ahnd ? intel_allocator_open_full(fd, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, > + ALLOC_STRATEGY_HIGH_TO_LOW, 0) : 0; > +} > + > +static struct intel_bb *bb_create(int i915, uint32_t size) > +{ > + return ahnd ? intel_bb_create_no_relocs(i915, size) : > + intel_bb_create_with_relocs(i915, size); > +} > + > static void buffers_init(struct buffers *b, > const char *name, > const struct create *create, > @@ -796,7 +857,7 @@ static void buffers_init(struct buffers *b, > igt_assert(b->src); > b->dst = b->src + num_buffers; > > - b->ibb = intel_bb_create(_fd, 4096); > + b->ibb = bb_create(_fd, 4096); > } > > static void buffers_destroy(struct buffers *b) > @@ -829,6 +890,27 @@ static void buffers_destroy(struct buffers *b) > } > } > > +static void bb_destroy(struct buffers *b) > +{ > + if (b->ibb) { > + intel_bb_destroy(b->ibb); > + b->ibb = NULL; > + } > +} > + > +static void __bufs_destroy(struct buffers *b) > +{ > + buffers_destroy(b); > + if (b->ibb) { > + intel_bb_destroy(b->ibb); > + b->ibb = NULL; > + } > + if (b->bops) { > + buf_ops_destroy(b->bops); > + b->bops = NULL; > + } > +} > + > static void buffers_create(struct buffers *b) > { > int count = b->num_buffers; > @@ -838,32 +920,57 @@ static void buffers_create(struct buffers *b) > igt_assert(b->count == 0); > b->count = count; > > + ahnd = alloc_open(); > for (int i = 0; i < count; i++) { > b->src[i] = b->mode->create_bo(b); > b->dst[i] = b->mode->create_bo(b); > } > b->spare = b->mode->create_bo(b); > b->snoop = snoop_create_bo(b); > + if (b->ibb) > + intel_bb_destroy(b->ibb); > + > + b->ibb = bb_create(fd, 4096); > } > > static void buffers_reset(struct buffers *b) > { > b->bops = buf_ops_create(fd); > - b->ibb = intel_bb_create(fd, 4096); > + b->ibb = bb_create(fd, 4096); > +} > + > +static void __buffers_create(struct buffers *b) > +{ > + b->bops = buf_ops_create(fd); > + igt_assert(b->bops); > + igt_assert(b->num_buffers > 0); > + igt_assert(b->mode); > + igt_assert(b->mode->create_bo); > + > + b->count = 0; > + for (int i = 0; i < b->num_buffers; i++) { > + b->src[i] = b->mode->create_bo(b); > + b->dst[i] = b->mode->create_bo(b); > + } > + b->count = b->num_buffers; > + b->spare = b->mode->create_bo(b); > + b->snoop = snoop_create_bo(b); > + ahnd = alloc_open(); > + b->ibb = bb_create(fd, 4096); > } > > static void buffers_fini(struct buffers *b) > { > if (b->bops == NULL) > return; > - > buffers_destroy(b); > > free(b->tmp); > free(b->src); > - > - intel_bb_destroy(b->ibb); > - buf_ops_destroy(b->bops); > + if (b->ibb) > + intel_bb_destroy(b->ibb); > + if (b->bops) > + buf_ops_destroy(b->bops); > > memset(b, 0, sizeof(*b)); > } > @@ -1306,6 +1413,8 @@ static void run_single(struct buffers *buffers, > do_hang do_hang_func) > { > pass = 0; > + bb_destroy(buffers); > + buffers->ibb = bb_create(fd, 4096); > do_test_func(buffers, do_copy_func, do_hang_func); > igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); > } > @@ -1316,6 +1425,8 @@ static void run_interruptible(struct buffers *buffers, > do_hang do_hang_func) > { > pass = 0; > + bb_destroy(buffers); > + buffers->ibb = bb_create(fd, 4096); > igt_while_interruptible(true) > do_test_func(buffers, do_copy_func, do_hang_func); > igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); > @@ -1332,10 +1443,18 @@ static void run_child(struct buffers *buffers, > * leading to the child closing an object without the parent knowing. > */ > pass = 0; > - igt_fork(child, 1) > + __bufs_destroy(buffers); > + > + igt_fork(child, 1) { > + /* recreate process local variables */ > + intel_allocator_init(); > + __buffers_create(buffers); > do_test_func(buffers, do_copy_func, do_hang_func); > + } > igt_waitchildren(); > + > igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); > + buffers_reset(buffers); > } > > static void __run_forked(struct buffers *buffers, > @@ -1346,24 +1465,20 @@ static void __run_forked(struct buffers *buffers, > > { > /* purge the caches before cloing the process */ > - buffers_destroy(buffers); > - intel_bb_destroy(buffers->ibb); > - buf_ops_destroy(buffers->bops); > + __bufs_destroy(buffers); > > igt_fork(child, num_children) { > int num_buffers; > > /* recreate process local variables */ > fd = gem_reopen_driver(fd); > - > + intel_allocator_init(); /* detach from thread */ > num_buffers = buffers->num_buffers / num_children; > num_buffers += MIN_BUFFERS; > if (num_buffers < buffers->num_buffers) > buffers->num_buffers = num_buffers; > > - buffers_reset(buffers); > - buffers_create(buffers); > - > + __buffers_create(buffers); > igt_while_interruptible(interrupt) { > for (pass = 0; pass < loops; pass++) > do_test_func(buffers, > @@ -1773,6 +1888,7 @@ igt_main > { "16MiB", 2048, 2048 }, > { NULL} > }; > + > uint64_t pin_sz = 0; > void *pinned = NULL; > char name[80]; > @@ -1792,6 +1908,12 @@ igt_main > rendercopy = igt_get_render_copyfunc(devid); > > vgem_drv = __drm_open_driver(DRIVER_VGEM); > + > + ahnd = intel_allocator_open_full(fd, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE, > + ALLOC_STRATEGY_HIGH_TO_LOW, 0); > + put_ahnd(ahnd); > + if (ahnd) > + intel_bb_track(true); > } > > for (const struct create *c = create; c->name; c++) { > @@ -1864,7 +1986,6 @@ igt_main > igt_fixture > igt_stop_shrink_helper(); > } > - > /* Use the entire mappable aperture, force swapping */ > snprintf(name, sizeof(name), "%s%s-%s", > c->name, s->name, "swap"); > -- > 2.32.0 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_concurrent_all: Add no-reloc (rev3) 2022-03-28 8:31 [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc Kamil Konieczny 2022-03-28 8:31 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: add create without relocs Kamil Konieczny 2022-03-28 8:31 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_concurrent_all: Add no-reloc capability Kamil Konieczny @ 2022-03-28 11:00 ` Patchwork 2022-03-28 12:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2022-03-28 11:00 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 12413 bytes --] == Series Details == Series: i915/gem_concurrent_all: Add no-reloc (rev3) URL : https://patchwork.freedesktop.org/series/100688/ State : success == Summary == CI Bug Log - changes from CI_DRM_11409 -> IGTPW_6835 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/index.html Participating hosts (42 -> 33) ------------------------------ Additional (1): fi-kbl-soraka Missing (10): fi-bdw-samus bat-dg1-6 bat-dg2-9 fi-bsw-cyan bat-adlp-6 bat-adlp-4 bat-rpls-1 bat-rpls-2 bat-jsl-2 bat-jsl-1 Known issues ------------ Here are the changes found in IGTPW_6835 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_basic@cs-gfx: - fi-hsw-4770: NOTRUN -> [SKIP][1] ([fdo#109271] / [fdo#109315]) +17 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html * igt@amdgpu/amd_cs_nop@sync-gfx0: - fi-glk-j4005: NOTRUN -> [SKIP][2] ([fdo#109271]) +17 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-glk-j4005/igt@amdgpu/amd_cs_nop@sync-gfx0.html * igt@core_hotunplug@unbind-rebind: - fi-skl-6700k2: NOTRUN -> [INCOMPLETE][3] ([i915#1373] / [i915#5441]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-skl-6700k2/igt@core_hotunplug@unbind-rebind.html - fi-bsw-nick: NOTRUN -> [INCOMPLETE][4] ([i915#5441]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-bsw-nick/igt@core_hotunplug@unbind-rebind.html * igt@gem_exec_fence@basic-busy@bcs0: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#4613]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_render_linear_blits@basic: - fi-kbl-7567u: [PASS][8] -> [INCOMPLETE][9] ([i915#5441]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-kbl-7567u/igt@gem_render_linear_blits@basic.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-kbl-7567u/igt@gem_render_linear_blits@basic.html * igt@gem_render_tiled_blits@basic: - fi-kbl-soraka: NOTRUN -> [INCOMPLETE][10] ([i915#5441]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-kbl-soraka/igt@gem_render_tiled_blits@basic.html - fi-bsw-n3050: [PASS][11] -> [INCOMPLETE][12] ([i915#5441]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-bsw-n3050/igt@gem_render_tiled_blits@basic.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-bsw-n3050/igt@gem_render_tiled_blits@basic.html * igt@gem_softpin@allocator-basic: - fi-pnv-d510: NOTRUN -> [SKIP][13] ([fdo#109271]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-pnv-d510/igt@gem_softpin@allocator-basic.html - fi-snb-2520m: NOTRUN -> [SKIP][14] ([fdo#109271]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-snb-2520m/igt@gem_softpin@allocator-basic.html * igt@gem_tiled_blits@basic: - fi-ilk-650: [PASS][15] -> [INCOMPLETE][16] ([i915#5441]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-ilk-650/igt@gem_tiled_blits@basic.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-ilk-650/igt@gem_tiled_blits@basic.html - fi-pnv-d510: NOTRUN -> [INCOMPLETE][17] ([i915#5441]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-pnv-d510/igt@gem_tiled_blits@basic.html - fi-snb-2520m: NOTRUN -> [INCOMPLETE][18] ([i915#5441]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-snb-2520m/igt@gem_tiled_blits@basic.html - fi-cfl-8109u: NOTRUN -> [INCOMPLETE][19] ([i915#5441]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-cfl-8109u/igt@gem_tiled_blits@basic.html - fi-blb-e6850: [PASS][20] -> [INCOMPLETE][21] ([i915#5441]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-blb-e6850/igt@gem_tiled_blits@basic.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-blb-e6850/igt@gem_tiled_blits@basic.html * igt@kms_chamelium@dp-crc-fast: - fi-bsw-nick: NOTRUN -> [SKIP][22] ([fdo#109271] / [fdo#111827]) +8 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-bsw-nick/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-crc-fast: - fi-skl-6700k2: NOTRUN -> [SKIP][23] ([fdo#109271] / [fdo#111827]) +8 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-skl-6700k2/igt@kms_chamelium@hdmi-crc-fast.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c: - fi-bsw-nick: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#5341]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-bsw-nick/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-skl-6700k2: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#533]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-skl-6700k2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html * igt@kms_setmode@basic-clone-single-crtc: - fi-skl-6700k2: NOTRUN -> [SKIP][26] ([fdo#109271]) +9 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-skl-6700k2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - fi-bsw-nick: NOTRUN -> [SKIP][27] ([fdo#109271]) +37 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-bsw-nick/igt@prime_vgem@basic-fence-flip.html * igt@runner@aborted: - fi-kbl-soraka: NOTRUN -> [FAIL][28] ([i915#4312]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-kbl-soraka/igt@runner@aborted.html - fi-blb-e6850: NOTRUN -> [FAIL][29] ([i915#2403] / [i915#4312]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-blb-e6850/igt@runner@aborted.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-glk-j4005: [INCOMPLETE][30] ([i915#5441]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-glk-j4005/igt@core_hotunplug@unbind-rebind.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-glk-j4005/igt@core_hotunplug@unbind-rebind.html - {fi-hsw-g3258}: [INCOMPLETE][32] ([i915#5441]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-hsw-g3258/igt@core_hotunplug@unbind-rebind.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-hsw-g3258/igt@core_hotunplug@unbind-rebind.html * igt@gem_render_linear_blits@basic: - fi-bsw-nick: [INCOMPLETE][34] ([i915#5441]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-bsw-nick/igt@gem_render_linear_blits@basic.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-bsw-nick/igt@gem_render_linear_blits@basic.html - fi-pnv-d510: [INCOMPLETE][36] ([i915#5441]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-pnv-d510/igt@gem_render_linear_blits@basic.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-pnv-d510/igt@gem_render_linear_blits@basic.html - fi-snb-2520m: [INCOMPLETE][38] ([i915#5441]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-snb-2520m/igt@gem_render_linear_blits@basic.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-snb-2520m/igt@gem_render_linear_blits@basic.html * igt@gem_render_tiled_blits@basic: - fi-cfl-8109u: [INCOMPLETE][40] ([i915#5441]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-cfl-8109u/igt@gem_render_tiled_blits@basic.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-cfl-8109u/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - fi-skl-6700k2: [INCOMPLETE][42] ([i915#5441]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-skl-6700k2/igt@gem_tiled_blits@basic.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-skl-6700k2/igt@gem_tiled_blits@basic.html - {fi-adl-ddr5}: [INCOMPLETE][44] ([i915#5441]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-adl-ddr5/igt@gem_tiled_blits@basic.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-adl-ddr5/igt@gem_tiled_blits@basic.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [INCOMPLETE][46] ([i915#4785]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html #### Warnings #### * igt@core_hotunplug@unbind-rebind: - fi-cfl-8700k: [INCOMPLETE][48] ([i915#5441]) -> [INCOMPLETE][49] ([i915#1982] / [i915#5441]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html * igt@runner@aborted: - fi-bsw-n3050: [FAIL][50] ([i915#4312]) -> [FAIL][51] ([i915#3428] / [i915#4312]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/fi-bsw-n3050/igt@runner@aborted.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/fi-bsw-n3050/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155 [i915#1373]: https://gitlab.freedesktop.org/drm/intel/issues/1373 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#5127]: https://gitlab.freedesktop.org/drm/intel/issues/5127 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5341]: https://gitlab.freedesktop.org/drm/intel/issues/5341 [i915#5441]: https://gitlab.freedesktop.org/drm/intel/issues/5441 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6395 -> IGTPW_6835 CI-20190529: 20190529 CI_DRM_11409: 1445e850bf64ad27709fe64cde9e549149227534 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6835: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/index.html IGT_6395: 9cba01635ccbce91e9205f68b8d540805d45c11f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/index.html [-- Attachment #2: Type: text/html, Size: 15484 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915/gem_concurrent_all: Add no-reloc (rev3) 2022-03-28 8:31 [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc Kamil Konieczny ` (2 preceding siblings ...) 2022-03-28 11:00 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_concurrent_all: Add no-reloc (rev3) Patchwork @ 2022-03-28 12:58 ` Patchwork 3 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2022-03-28 12:58 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30263 bytes --] == Series Details == Series: i915/gem_concurrent_all: Add no-reloc (rev3) URL : https://patchwork.freedesktop.org/series/100688/ State : success == Summary == CI Bug Log - changes from CI_DRM_11409_full -> IGTPW_6835_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/index.html Participating hosts (12 -> 7) ------------------------------ Missing (5): shard-skl pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl Known issues ------------ Here are the changes found in IGTPW_6835_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-noreloc-purge-cache-random: - shard-glk: [PASS][1] -> [INCOMPLETE][2] ([i915#5441]) +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-glk2/igt@api_intel_bb@blit-noreloc-purge-cache-random.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk2/igt@api_intel_bb@blit-noreloc-purge-cache-random.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-apl: [PASS][3] -> [INCOMPLETE][4] ([i915#5441]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-apl4/igt@api_intel_bb@blit-reloc-purge-cache.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl7/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@core_hotunplug@unbind-rebind: - shard-snb: NOTRUN -> [INCOMPLETE][5] ([i915#5441]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-snb2/igt@core_hotunplug@unbind-rebind.html - shard-apl: NOTRUN -> [INCOMPLETE][6] ([i915#1373] / [i915#5441]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl3/igt@core_hotunplug@unbind-rebind.html * igt@gem_ccs@block-copy-inplace: - shard-tglb: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#5325]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb2/igt@gem_ccs@block-copy-inplace.html * igt@gem_create@create-massive: - shard-iclb: NOTRUN -> [DMESG-WARN][8] ([i915#4991]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb2/igt@gem_create@create-massive.html - shard-kbl: NOTRUN -> [DMESG-WARN][9] ([i915#4991]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl4/igt@gem_create@create-massive.html - shard-apl: NOTRUN -> [DMESG-WARN][10] ([i915#4991]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl4/igt@gem_create@create-massive.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-kbl: [PASS][11] -> [DMESG-WARN][12] ([i915#180]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_param@set-priority-not-supported: - shard-tglb: NOTRUN -> [SKIP][13] ([fdo#109314]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb6/igt@gem_ctx_param@set-priority-not-supported.html - shard-iclb: NOTRUN -> [SKIP][14] ([fdo#109314]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb7/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@legacy-engines-mixed: - shard-snb: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#1099]) +11 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-snb4/igt@gem_ctx_persistence@legacy-engines-mixed.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglb: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel-ordering: - shard-iclb: NOTRUN -> [SKIP][17] ([i915#4525]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb3/igt@gem_exec_balancer@parallel-ordering.html - shard-tglb: NOTRUN -> [DMESG-FAIL][18] ([i915#5076]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb6/igt@gem_exec_balancer@parallel-ordering.html - shard-kbl: NOTRUN -> [DMESG-FAIL][19] ([i915#5076]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl4/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][20] -> [FAIL][21] ([i915#2846]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-glk9/igt@gem_exec_fair@basic-deadline.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-iclb: NOTRUN -> [FAIL][22] ([i915#2842]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb4/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglb: NOTRUN -> [FAIL][23] ([i915#2842]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [PASS][24] -> [FAIL][25] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-kbl: [PASS][26] -> [FAIL][27] ([i915#2842]) +1 similar issue [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl1/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-glk: [PASS][28] -> [FAIL][29] ([i915#2842]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-glk2/igt@gem_exec_fair@basic-pace@vecs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk5/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-iclb: NOTRUN -> [SKIP][30] ([fdo#109313]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb8/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_params@rsvd2-dirt: - shard-tglb: NOTRUN -> [SKIP][31] ([fdo#109283]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb6/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-root: - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#112283]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb2/igt@gem_exec_params@secure-non-root.html * igt@gem_huc_copy@huc-copy: - shard-iclb: NOTRUN -> [SKIP][33] ([i915#2190]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb3/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - shard-iclb: NOTRUN -> [SKIP][34] ([i915#4613]) +4 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb2/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-multi: - shard-glk: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#4613]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk7/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@random: - shard-apl: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#4613]) +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl1/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-random: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#4613]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@gem_lmem_swapping@verify-random.html - shard-kbl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#4613]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl1/igt@gem_lmem_swapping@verify-random.html * igt@gem_ppgtt@blt-vs-render-ctxn: - shard-kbl: NOTRUN -> [DMESG-FAIL][39] ([i915#5441]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl1/igt@gem_ppgtt@blt-vs-render-ctxn.html * igt@gem_pread@exhaustion: - shard-tglb: NOTRUN -> [WARN][40] ([i915#2658]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb1/igt@gem_pread@exhaustion.html - shard-iclb: NOTRUN -> [WARN][41] ([i915#2658]) +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb1/igt@gem_pread@exhaustion.html - shard-snb: NOTRUN -> [WARN][42] ([i915#2658]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-snb7/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-kbl: NOTRUN -> [WARN][43] ([i915#2658]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl7/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglb: NOTRUN -> [SKIP][44] ([i915#4270]) +5 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-iclb: NOTRUN -> [SKIP][45] ([i915#4270]) +4 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb6/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-iclb: NOTRUN -> [SKIP][46] ([i915#768]) +7 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb6/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-glk: NOTRUN -> [SKIP][47] ([fdo#109271]) +230 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk4/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_softpin@evict-snoop: - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109312]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb4/igt@gem_softpin@evict-snoop.html - shard-tglb: NOTRUN -> [SKIP][49] ([fdo#109312]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb7/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-apl: NOTRUN -> [INCOMPLETE][50] ([i915#5441]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl8/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_userptr_blits@access-control: - shard-tglb: NOTRUN -> [SKIP][51] ([i915#3297]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb7/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-tglb: NOTRUN -> [SKIP][52] ([fdo#110542]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-kbl: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#3323]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl4/igt@gem_userptr_blits@dmabuf-sync.html - shard-tglb: NOTRUN -> [SKIP][54] ([i915#3323]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@input-checking: - shard-tglb: NOTRUN -> [DMESG-WARN][55] ([i915#4991]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb6/igt@gem_userptr_blits@input-checking.html - shard-glk: NOTRUN -> [DMESG-WARN][56] ([i915#4991]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk9/igt@gem_userptr_blits@input-checking.html - shard-snb: NOTRUN -> [DMESG-WARN][57] ([i915#4991]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-snb5/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-iclb: NOTRUN -> [SKIP][58] ([i915#3297]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-tglb: NOTRUN -> [FAIL][59] ([i915#3318]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb3/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledx_blits: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109289]) +6 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb6/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-tglb: NOTRUN -> [SKIP][61] ([fdo#109289]) +7 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@bb-chained: - shard-iclb: NOTRUN -> [SKIP][62] ([i915#2856]) +4 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb2/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@valid-registers: - shard-tglb: NOTRUN -> [SKIP][63] ([i915#2527] / [i915#2856]) +6 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb3/igt@gen9_exec_parse@valid-registers.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: NOTRUN -> [FAIL][64] ([i915#454]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb3/igt@i915_pm_dc@dc6-psr.html - shard-tglb: NOTRUN -> [FAIL][65] ([i915#454]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb6/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp: - shard-apl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#1937]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-glk: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#1937]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk3/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_lpsp@screens-disabled: - shard-tglb: NOTRUN -> [SKIP][68] ([i915#1902]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb3/igt@i915_pm_lpsp@screens-disabled.html - shard-iclb: NOTRUN -> [SKIP][69] ([i915#1902]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb5/igt@i915_pm_lpsp@screens-disabled.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-tglb: NOTRUN -> [SKIP][70] ([fdo#109506] / [i915#2411]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglb: NOTRUN -> [SKIP][71] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb3/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-iclb: NOTRUN -> [SKIP][72] ([fdo#110892]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglb: NOTRUN -> [SKIP][73] ([fdo#109303]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@i915_query@query-topology-known-pci-ids.html - shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109303]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb8/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@live@gt_lrc: - shard-tglb: NOTRUN -> [DMESG-FAIL][75] ([i915#2373]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@gt_pm: - shard-tglb: NOTRUN -> [DMESG-FAIL][76] ([i915#1759]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@forcewake: - shard-apl: NOTRUN -> [DMESG-WARN][77] ([i915#180]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl8/igt@i915_suspend@forcewake.html * igt@kms_atomic@atomic_plane_damage: - shard-iclb: NOTRUN -> [SKIP][78] ([i915#4765]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb1/igt@kms_atomic@atomic_plane_damage.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglb: NOTRUN -> [SKIP][79] ([i915#404]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-iclb: NOTRUN -> [SKIP][80] ([i915#1769]) +1 similar issue [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html - shard-tglb: NOTRUN -> [SKIP][81] ([i915#1769]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-iclb: NOTRUN -> [SKIP][82] ([i915#5286]) +4 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb5/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-kbl: NOTRUN -> [SKIP][83] ([fdo#109271]) +177 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglb: NOTRUN -> [SKIP][84] ([i915#5286]) +7 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][85] ([fdo#111614]) +5 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb2/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180: - shard-snb: [PASS][86] -> [INCOMPLETE][87] ([i915#5441]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-snb4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-snb7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-180: - shard-kbl: NOTRUN -> [INCOMPLETE][88] ([i915#1373] / [i915#5441]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl4/igt@kms_big_fb@x-tiled-16bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#110725] / [fdo#111614]) +6 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-0: - shard-iclb: NOTRUN -> [INCOMPLETE][90] ([i915#1373] / [i915#5441]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-glk: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#3777]) +2 similar issues [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-apl: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#3777]) +3 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-kbl: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#3777]) +3 similar issues [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-apl: [PASS][94] -> [INCOMPLETE][95] ([i915#1982] / [i915#5441]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-apl3/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl2/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-iclb: NOTRUN -> [INCOMPLETE][96] ([i915#5441]) +11 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb7/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-tglb: NOTRUN -> [INCOMPLETE][97] ([i915#5441]) +11 similar issues [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-90: - shard-iclb: [PASS][98] -> [INCOMPLETE][99] ([i915#5441]) +2 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-iclb8/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb5/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglb: [PASS][100] -> [INCOMPLETE][101] ([i915#5441]) +1 similar issue [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-tglb7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][102] ([fdo#111615]) +10 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-glk: NOTRUN -> [INCOMPLETE][103] ([i915#5441]) +2 similar issues [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-iclb: NOTRUN -> [SKIP][104] ([fdo#110723]) +4 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_joiner@basic: - shard-tglb: NOTRUN -> [SKIP][105] ([i915#2705]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb7/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][106] ([i915#3689]) +12 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][107] ([i915#3689] / [i915#3886]) +6 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb2/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#3886]) +8 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl3/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc: - shard-kbl: NOTRUN -> [SKIP][109] ([fdo#109271] / [i915#3886]) +3 similar issues [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl7/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#3886]) +14 similar issues [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk4/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-yf_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][111] ([fdo#111615] / [i915#3689]) +8 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb2/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][112] ([fdo#109278] / [i915#3886]) +14 similar issues [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb8/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_cdclk@mode-transition: - shard-tglb: NOTRUN -> [SKIP][113] ([i915#3742]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium@hdmi-mode-timings: - shard-snb: NOTRUN -> [SKIP][114] ([fdo#109271] / [fdo#111827]) +30 similar issues [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-snb2/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_chamelium@vga-hpd: - shard-tglb: NOTRUN -> [SKIP][115] ([fdo#109284] / [fdo#111827]) +32 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb2/igt@kms_chamelium@vga-hpd.html * igt@kms_chamelium@vga-hpd-with-enabled-mode: - shard-iclb: NOTRUN -> [SKIP][116] ([fdo#109284] / [fdo#111827]) +23 similar issues [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb4/igt@kms_chamelium@vga-hpd-with-enabled-mode.html * igt@kms_color_chamelium@pipe-a-ctm-limited-range: - shard-apl: NOTRUN -> [SKIP][117] ([fdo#109271] / [fdo#111827]) +19 similar issues [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl1/igt@kms_color_chamelium@pipe-a-ctm-limited-range.html * igt@kms_color_chamelium@pipe-a-degamma: - shard-kbl: NOTRUN -> [SKIP][118] ([fdo#109271] / [fdo#111827]) +15 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-kbl1/igt@kms_color_chamelium@pipe-a-degamma.html * igt@kms_color_chamelium@pipe-c-ctm-0-5: - shard-glk: NOTRUN -> [SKIP][119] ([fdo#109271] / [fdo#111827]) +15 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-glk3/igt@kms_color_chamelium@pipe-c-ctm-0-5.html * igt@kms_color_chamelium@pipe-d-ctm-negative: - shard-iclb: NOTRUN -> [SKIP][120] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-negative.html * igt@kms_content_protection@atomic-dpms: - shard-apl: NOTRUN -> [TIMEOUT][121] ([i915#1319]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglb: NOTRUN -> [SKIP][122] ([i915#3116] / [i915#3299]) +1 similar issue [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb6/igt@kms_content_protection@dp-mst-type-0.html - shard-iclb: NOTRUN -> [SKIP][123] ([i915#3116]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic: - shard-iclb: NOTRUN -> [SKIP][124] ([fdo#109300] / [fdo#111066]) +1 similar issue [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb8/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding: - shard-tglb: NOTRUN -> [SKIP][125] ([i915#3319]) +8 similar issues [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen: - shard-iclb: NOTRUN -> [SKIP][126] ([fdo#109278] / [fdo#109279]) +3 similar issues [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-iclb1/igt@kms_cursor_crc@pipe-b-cursor-512x512-onscreen.html * igt@kms_cursor_crc@pipe-b-cursor-suspend: - shard-apl: [PASS][127] -> [DMESG-WARN][128] ([i915#180]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11409/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-apl6/igt@kms_cursor_crc@pipe-b-cursor-suspend.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][129] ([i915#3359]) +15 similar issues [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb6/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen: - shard-tglb: NOTRUN -> [SKIP][130] ([fdo#109279] / [i915#3359]) +6 similar issues [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen.html * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge: - shard-snb: == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6835/index.html [-- Attachment #2: Type: text/html, Size: 34035 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc
@ 2022-03-31 16:34 Kamil Konieczny
0 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2022-03-31 16:34 UTC (permalink / raw)
To: igt-dev
Add noreloc mode for GPU gens without relocations. Also
while at this, add some caching for required properties.
Change also snoop function so it will work on DG1.
Fix swap subtest group and make unpinning without enclosing
fixture.
v7: corrected newline add/delete errors in gem_concurrent_all
add new patch with swap subtest fixes (Zbigniew)
v6: resended with corrected commit version desccription in
gem_concurrent_all
v5: move down after reloc functions, add description, use
get_simple_h2l_ahnd function in main() fixture (Zbigniew)
v4: rebase, simplify bit17_require (Zbigniew)
v3: address Zbigniew review: correcting comment style, changed
checks in bit17_require
v2: rebased, fix caching in bit17_require, addressed Zbigniew
review comments
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Kamil Konieczny (3):
lib/intel_batchbuffer: add create without relocs
tests/i915/gem_concurrent_all: Add no-reloc capability
i915/gem_concurrent_all: fix swap subtest group
lib/intel_batchbuffer.c | 21 ++++
lib/intel_batchbuffer.h | 1 +
tests/i915/gem_concurrent_all.c | 179 ++++++++++++++++++++++++++------
3 files changed, 169 insertions(+), 32 deletions(-)
--
2.32.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc
@ 2022-03-29 14:17 Kamil Konieczny
0 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2022-03-29 14:17 UTC (permalink / raw)
To: igt-dev
Add noreloc mode for GPU gens without relocations. Also
while at this, add some caching for required properties.
Change also snoop function so it will work on DG1.
v6: resended with corrected commit version desccription in
gem_concurrent_all
v5: move down after reloc functions, add description, use
get_simple_h2l_ahnd function in main() fixture (Zbigniew)
v4: rebase, simplify bit17_require (Zbigniew)
v3: address Zbigniew review: correcting comment style, changed
checks in bit17_require
v2: rebased, fix caching in bit17_require, addressed Zbigniew
review comments
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Kamil Konieczny (2):
lib/intel_batchbuffer: add create without relocs
tests/i915/gem_concurrent_all: Add no-reloc capability
lib/intel_batchbuffer.c | 21 ++++
lib/intel_batchbuffer.h | 1 +
tests/i915/gem_concurrent_all.c | 175 ++++++++++++++++++++++++++------
3 files changed, 166 insertions(+), 31 deletions(-)
--
2.32.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc
@ 2022-03-29 13:49 Kamil Konieczny
0 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2022-03-29 13:49 UTC (permalink / raw)
To: igt-dev
Add noreloc mode for GPU gens without relocations. Also
while at this, add some caching for required properties.
Change also snoop function so it will work on DG1.
v5: move down after reloc functions, add description, use
simpler function in main() fixture (Zbigniew)
v4: rebase, simplify bit17_require (Zbigniew)
v3: address Zbigniew review: correcting comment style, changed
checks in bit17_require
v2: rebased, fix caching in bit17_require, addressed Zbigniew
review comments
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Kamil Konieczny (2):
lib/intel_batchbuffer: add create without relocs
tests/i915/gem_concurrent_all: Add no-reloc capability
lib/intel_batchbuffer.c | 21 ++++
lib/intel_batchbuffer.h | 1 +
tests/i915/gem_concurrent_all.c | 175 ++++++++++++++++++++++++++------
3 files changed, 166 insertions(+), 31 deletions(-)
--
2.32.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc
@ 2022-03-28 16:55 Kamil Konieczny
0 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2022-03-28 16:55 UTC (permalink / raw)
To: igt-dev
Add noreloc mode for GPU gens without relocations. Also
while at this, add some caching for required properties.
Change also snoop function so it will work on DG1.
v4: rebase, simplify bit17_require (Zbigniew)
v3: address Zbigniew review: correcting comment style, changed
checks in bit17_require
v2: rebased, fix caching in bit17_require, addressed Zbigniew
review comments
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Kamil Konieczny (2):
lib/intel_batchbuffer: add create without relocs
tests/i915/gem_concurrent_all: Add no-reloc capability
lib/intel_batchbuffer.c | 7 ++
lib/intel_batchbuffer.h | 1 +
tests/i915/gem_concurrent_all.c | 176 ++++++++++++++++++++++++++------
3 files changed, 153 insertions(+), 31 deletions(-)
--
2.32.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc
@ 2022-03-24 14:19 Kamil Konieczny
0 siblings, 0 replies; 12+ messages in thread
From: Kamil Konieczny @ 2022-03-24 14:19 UTC (permalink / raw)
To: igt-dev
Add noreloc mode for GPU gens without relocations. Also
while at this, add some caching for required properties.
Change also snoop function so it will work on DG1.
v2: rebased, fix caching in bit17_require, addressed Zbigniew
review comments
Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
Kamil Konieczny (2):
lib/intel_batchbuffer: add create without relocs
tests/i915/gem_concurrent_all: Add no-reloc capability
lib/intel_batchbuffer.c | 7 ++
lib/intel_batchbuffer.h | 1 +
tests/i915/gem_concurrent_all.c | 165 +++++++++++++++++++++++++++-----
3 files changed, 150 insertions(+), 23 deletions(-)
--
2.32.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc @ 2022-02-24 13:04 Kamil Konieczny 0 siblings, 0 replies; 12+ messages in thread From: Kamil Konieczny @ 2022-02-24 13:04 UTC (permalink / raw) To: igt-dev Add noreloc mode for GPU gens without relocations. Also while at this, add some caching for required properties. Change also snoop function so it will work on DG1. Cc: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com> Kamil Konieczny (2): lib/intel_batchbuffer: add create without relocs tests/i915/gem_concurrent_all: Add no-reloc capability lib/intel_batchbuffer.c | 9 +- lib/intel_batchbuffer.h | 1 + tests/i915/gem_concurrent_all.c | 162 +++++++++++++++++++++++++++----- 3 files changed, 148 insertions(+), 24 deletions(-) -- 2.32.0 ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2022-03-31 16:34 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-03-28 8:31 [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc Kamil Konieczny 2022-03-28 8:31 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: add create without relocs Kamil Konieczny 2022-03-28 8:31 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915/gem_concurrent_all: Add no-reloc capability Kamil Konieczny 2022-03-28 12:33 ` Zbigniew Kempczyński 2022-03-28 11:00 ` [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_concurrent_all: Add no-reloc (rev3) Patchwork 2022-03-28 12:58 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2022-03-31 16:34 [igt-dev] [PATCH i-g-t 0/2] i915/gem_concurrent_all: Add no-reloc Kamil Konieczny 2022-03-29 14:17 Kamil Konieczny 2022-03-29 13:49 Kamil Konieczny 2022-03-28 16:55 Kamil Konieczny 2022-03-24 14:19 Kamil Konieczny 2022-02-24 13:04 Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox