* [PATCH] lib/drmtest: Retire requests via drop caches after gem_quiescent_gpu @ 2013-11-05 14:15 oscar.mateo 2013-11-05 18:35 ` Daniel Vetter 0 siblings, 1 reply; 5+ messages in thread From: oscar.mateo @ 2013-11-05 14:15 UTC (permalink / raw) To: intel-gfx From: Oscar Mateo <oscar.mateo@intel.com> This helps make sure that the GPU is really quiescent by getting rid of any residual stuff. Signed-off-by: Oscar Mateo <oscar.mateo@intel.com> --- lib/drmtest.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/drmtest.c b/lib/drmtest.c index e3fc166..d8fc60f 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -47,6 +47,7 @@ #include "i915_drm.h" #include "intel_chipset.h" #include "intel_gpu_tools.h" +#include "igt_debugfs.h" /* This file contains a bunch of wrapper functions to directly use gem ioctls. * Mostly useful to write kernel tests. */ @@ -163,6 +164,7 @@ void gem_quiescent_gpu(int fd) } gem_sync(fd, handle); + igt_drop_caches_set(DROP_RETIRE); } /** -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] lib/drmtest: Retire requests via drop caches after gem_quiescent_gpu 2013-11-05 14:15 [PATCH] lib/drmtest: Retire requests via drop caches after gem_quiescent_gpu oscar.mateo @ 2013-11-05 18:35 ` Daniel Vetter 2013-11-11 0:30 ` Ben Widawsky 0 siblings, 1 reply; 5+ messages in thread From: Daniel Vetter @ 2013-11-05 18:35 UTC (permalink / raw) To: oscar.mateo; +Cc: intel-gfx On Tue, Nov 05, 2013 at 02:15:19PM +0000, oscar.mateo@intel.com wrote: > From: Oscar Mateo <oscar.mateo@intel.com> > > This helps make sure that the GPU is really quiescent by getting > rid of any residual stuff. > > Signed-off-by: Oscar Mateo <oscar.mateo@intel.com> Merged, thanks for the patch. -Daniel > --- > lib/drmtest.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/lib/drmtest.c b/lib/drmtest.c > index e3fc166..d8fc60f 100644 > --- a/lib/drmtest.c > +++ b/lib/drmtest.c > @@ -47,6 +47,7 @@ > #include "i915_drm.h" > #include "intel_chipset.h" > #include "intel_gpu_tools.h" > +#include "igt_debugfs.h" > > /* This file contains a bunch of wrapper functions to directly use gem ioctls. > * Mostly useful to write kernel tests. */ > @@ -163,6 +164,7 @@ void gem_quiescent_gpu(int fd) > } > > gem_sync(fd, handle); > + igt_drop_caches_set(DROP_RETIRE); > } > > /** > -- > 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] 5+ messages in thread
* Re: [PATCH] lib/drmtest: Retire requests via drop caches after gem_quiescent_gpu 2013-11-05 18:35 ` Daniel Vetter @ 2013-11-11 0:30 ` Ben Widawsky 2013-11-11 15:49 ` Mateo Lozano, Oscar 0 siblings, 1 reply; 5+ messages in thread From: Ben Widawsky @ 2013-11-11 0:30 UTC (permalink / raw) To: Daniel Vetter; +Cc: intel-gfx On Tue, Nov 05, 2013 at 07:35:16PM +0100, Daniel Vetter wrote: > On Tue, Nov 05, 2013 at 02:15:19PM +0000, oscar.mateo@intel.com wrote: > > From: Oscar Mateo <oscar.mateo@intel.com> > > > > This helps make sure that the GPU is really quiescent by getting > > rid of any residual stuff. > > > > Signed-off-by: Oscar Mateo <oscar.mateo@intel.com> > > Merged, thanks for the patch. > -Daniel I'm hitting what seems to be a race on gem_suspend. Please fix. Subtest debugfs-reader: SUCCESS Test assertion failure function igt_drop_caches_set, file igt_debugfs.c:336: > > > --- > > lib/drmtest.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/lib/drmtest.c b/lib/drmtest.c > > index e3fc166..d8fc60f 100644 > > --- a/lib/drmtest.c > > +++ b/lib/drmtest.c > > @@ -47,6 +47,7 @@ > > #include "i915_drm.h" > > #include "intel_chipset.h" > > #include "intel_gpu_tools.h" > > +#include "igt_debugfs.h" > > > > /* This file contains a bunch of wrapper functions to directly use gem ioctls. > > * Mostly useful to write kernel tests. */ > > @@ -163,6 +164,7 @@ void gem_quiescent_gpu(int fd) > > } > > > > gem_sync(fd, handle); > > + igt_drop_caches_set(DROP_RETIRE); > > } > > > > /** > > -- > > 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 > _______________________________________________ > Intel-gfx mailing list > Intel-gfx@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/intel-gfx -- Ben Widawsky, Intel Open Source Technology Center ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] lib/drmtest: Retire requests via drop caches after gem_quiescent_gpu 2013-11-11 0:30 ` Ben Widawsky @ 2013-11-11 15:49 ` Mateo Lozano, Oscar 2013-11-11 18:54 ` Ben Widawsky 0 siblings, 1 reply; 5+ messages in thread From: Mateo Lozano, Oscar @ 2013-11-11 15:49 UTC (permalink / raw) To: Ben Widawsky, Daniel Vetter; +Cc: intel-gfx@lists.freedesktop.org Hi Ben, I have drv_suspend running in a loop for a few hours now and I haven´t been able to hit that problem. Could you give some more info? were you using piglit? were you able to reproduce it systematically? I did have to fix the test for my system, thought (the output of the serial "cat" was going into std output instead of /dev/null and creating all kinds of craziness). I sent a patch to the mailing list. Cheers, Oscar > -----Original Message----- > From: Ben Widawsky [mailto:ben@bwidawsk.net] > Sent: Monday, November 11, 2013 12:30 AM > To: Daniel Vetter > Cc: Mateo Lozano, Oscar; intel-gfx@lists.freedesktop.org > Subject: Re: [Intel-gfx] [PATCH] lib/drmtest: Retire requests via drop caches > after gem_quiescent_gpu > > On Tue, Nov 05, 2013 at 07:35:16PM +0100, Daniel Vetter wrote: > > On Tue, Nov 05, 2013 at 02:15:19PM +0000, oscar.mateo@intel.com wrote: > > > From: Oscar Mateo <oscar.mateo@intel.com> > > > > > > This helps make sure that the GPU is really quiescent by getting rid > > > of any residual stuff. > > > > > > Signed-off-by: Oscar Mateo <oscar.mateo@intel.com> > > > > Merged, thanks for the patch. > > -Daniel > > I'm hitting what seems to be a race on gem_suspend. Please fix. > Subtest debugfs-reader: SUCCESS > Test assertion failure function igt_drop_caches_set, file igt_debugfs.c:336: > > > > > > > --- > > > lib/drmtest.c | 2 ++ > > > 1 file changed, 2 insertions(+) > > > > > > diff --git a/lib/drmtest.c b/lib/drmtest.c index e3fc166..d8fc60f > > > 100644 > > > --- a/lib/drmtest.c > > > +++ b/lib/drmtest.c > > > @@ -47,6 +47,7 @@ > > > #include "i915_drm.h" > > > #include "intel_chipset.h" > > > #include "intel_gpu_tools.h" > > > +#include "igt_debugfs.h" > > > > > > /* This file contains a bunch of wrapper functions to directly use gem > ioctls. > > > * Mostly useful to write kernel tests. */ @@ -163,6 +164,7 @@ void > > > gem_quiescent_gpu(int fd) > > > } > > > > > > gem_sync(fd, handle); > > > + igt_drop_caches_set(DROP_RETIRE); > > > } > > > > > > /** > > > -- > > > 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 > > _______________________________________________ > > Intel-gfx mailing list > > Intel-gfx@lists.freedesktop.org > > http://lists.freedesktop.org/mailman/listinfo/intel-gfx > > -- > Ben Widawsky, Intel Open Source Technology Center ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] lib/drmtest: Retire requests via drop caches after gem_quiescent_gpu 2013-11-11 15:49 ` Mateo Lozano, Oscar @ 2013-11-11 18:54 ` Ben Widawsky 0 siblings, 0 replies; 5+ messages in thread From: Ben Widawsky @ 2013-11-11 18:54 UTC (permalink / raw) To: Mateo Lozano, Oscar; +Cc: intel-gfx@lists.freedesktop.org On Mon, Nov 11, 2013 at 03:49:01PM +0000, Mateo Lozano, Oscar wrote: > Hi Ben, > > I have drv_suspend running in a loop for a few hours now and I haven´t been able to hit that problem. Could you give some more info? were you using piglit? were you able to reproduce it systematically? > > I did have to fix the test for my system, thought (the output of the serial "cat" was going into std output instead of /dev/null and creating all kinds of craziness). I sent a patch to the mailing list. > > Cheers, > Oscar I can get exactly what I was running when I get home. It was exactly something to the effect of: while [ 1 ] ; do drv_suspend --run-subtest debufs-reader ; done I may have put a few other tests before, be definitely none after. > > > > -----Original Message----- > > From: Ben Widawsky [mailto:ben@bwidawsk.net] > > Sent: Monday, November 11, 2013 12:30 AM > > To: Daniel Vetter > > Cc: Mateo Lozano, Oscar; intel-gfx@lists.freedesktop.org > > Subject: Re: [Intel-gfx] [PATCH] lib/drmtest: Retire requests via drop caches > > after gem_quiescent_gpu > > > > On Tue, Nov 05, 2013 at 07:35:16PM +0100, Daniel Vetter wrote: > > > On Tue, Nov 05, 2013 at 02:15:19PM +0000, oscar.mateo@intel.com wrote: > > > > From: Oscar Mateo <oscar.mateo@intel.com> > > > > > > > > This helps make sure that the GPU is really quiescent by getting rid > > > > of any residual stuff. > > > > > > > > Signed-off-by: Oscar Mateo <oscar.mateo@intel.com> > > > > > > Merged, thanks for the patch. > > > -Daniel > > > > I'm hitting what seems to be a race on gem_suspend. Please fix. > > Subtest debugfs-reader: SUCCESS > > Test assertion failure function igt_drop_caches_set, file igt_debugfs.c:336: > > > > > > > > > > > --- > > > > lib/drmtest.c | 2 ++ > > > > 1 file changed, 2 insertions(+) > > > > > > > > diff --git a/lib/drmtest.c b/lib/drmtest.c index e3fc166..d8fc60f > > > > 100644 > > > > --- a/lib/drmtest.c > > > > +++ b/lib/drmtest.c > > > > @@ -47,6 +47,7 @@ > > > > #include "i915_drm.h" > > > > #include "intel_chipset.h" > > > > #include "intel_gpu_tools.h" > > > > +#include "igt_debugfs.h" > > > > > > > > /* This file contains a bunch of wrapper functions to directly use gem > > ioctls. > > > > * Mostly useful to write kernel tests. */ @@ -163,6 +164,7 @@ void > > > > gem_quiescent_gpu(int fd) > > > > } > > > > > > > > gem_sync(fd, handle); > > > > + igt_drop_caches_set(DROP_RETIRE); > > > > } > > > > > > > > /** > > > > -- > > > > 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 > > > _______________________________________________ > > > Intel-gfx mailing list > > > Intel-gfx@lists.freedesktop.org > > > http://lists.freedesktop.org/mailman/listinfo/intel-gfx > > > > -- > > Ben Widawsky, Intel Open Source Technology Center -- Ben Widawsky, Intel Open Source Technology Center _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-11-11 18:54 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-11-05 14:15 [PATCH] lib/drmtest: Retire requests via drop caches after gem_quiescent_gpu oscar.mateo 2013-11-05 18:35 ` Daniel Vetter 2013-11-11 0:30 ` Ben Widawsky 2013-11-11 15:49 ` Mateo Lozano, Oscar 2013-11-11 18:54 ` Ben Widawsky
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox