All of lore.kernel.org
 help / color / mirror / Atom feed
From: Francisco Jerez <currojerez-sGOZH3hwPm2sTnJN9+BGXg@public.gmane.org>
To: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org,
	Ben Skeggs <bskeggs-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Subject: Re: [PATCH] drm/nouveau: fix __nouveau_fence_wait performance regression
Date: Tue, 08 Mar 2011 01:58:50 +0100	[thread overview]
Message-ID: <87lj0qzaut.fsf@riseup.net> (raw)
In-Reply-To: <20110307232256.GA2680-OI9uyE9O0yo@public.gmane.org> (Marcin Slusarz's message of "Tue, 8 Mar 2011 00:22:56 +0100")


[-- Attachment #1.1.1: Type: text/plain, Size: 6748 bytes --]

Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:

> On Tue, Mar 08, 2011 at 08:24:26AM +1000, Ben Skeggs wrote:
>> On Mon, 2011-03-07 at 18:18 +0000, Maarten Maathuis wrote:
>> > On Fri, Mar 4, 2011 at 4:49 PM, Marcin Slusarz <marcin.slusarz@gmail.com> wrote:
>> > > On Sun, Feb 13, 2011 at 09:38:04PM +0100, Marcin Slusarz wrote:
>> > >> Combination of locking and interchannel synchronization changes
>> > >> uncovered poor behaviour of nouveau_fence_wait, which on HZ=100
>> > >> configuration could waste up to 10 ms per call.
>> > >> Depending on application, it lead to 10-30% FPS regression.
>> > >> To fix it, shorten thread sleep time to 0.1 ms and ensure
>> > >> spinning happens for at least one *full* tick.
>> > >>
>> > >> Signed-off-by: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>> > >> ---
>> > >>  drivers/gpu/drm/nouveau/nouveau_fence.c |   10 ++++++++--
>> > >>  1 files changed, 8 insertions(+), 2 deletions(-)
>> > >>
>> > >> diff --git a/drivers/gpu/drm/nouveau/nouveau_fence.c b/drivers/gpu/drm/nouveau/nouveau_fence.c
>> > >> index 221b846..75ba5e2 100644
>> > >> --- a/drivers/gpu/drm/nouveau/nouveau_fence.c
>> > >> +++ b/drivers/gpu/drm/nouveau/nouveau_fence.c
>> > >> @@ -27,6 +27,9 @@
>> > >>  #include "drmP.h"
>> > >>  #include "drm.h"
>> > >>
>> > >> +#include <linux/ktime.h>
>> > >> +#include <linux/hrtimer.h>
>> > >> +
>> > >>  #include "nouveau_drv.h"
>> > >>  #include "nouveau_ramht.h"
>> > >>  #include "nouveau_dma.h"
>> > >> @@ -230,9 +233,12 @@ int
>> > >>  __nouveau_fence_wait(void *sync_obj, void *sync_arg, bool lazy, bool intr)
>> > >>  {
>> > >>       unsigned long timeout = jiffies + (3 * DRM_HZ);
>> > >> -     unsigned long sleep_time = jiffies + 1;
>> > >> +     unsigned long sleep_time = jiffies + 2;
>> > >> +     ktime_t t;
>> > >>       int ret = 0;
>> > >>
>> > >> +     t = ktime_set(0, NSEC_PER_MSEC / 10);
>> > >> +
>> > >>       while (1) {
>> > >>               if (__nouveau_fence_signalled(sync_obj, sync_arg))
>> > >>                       break;
>> > >> @@ -245,7 +251,7 @@ __nouveau_fence_wait(void *sync_obj, void *sync_arg, bool lazy, bool intr)
>> > >>               __set_current_state(intr ? TASK_INTERRUPTIBLE
>> > >>                       : TASK_UNINTERRUPTIBLE);
>> > >>               if (lazy && time_after_eq(jiffies, sleep_time))
>> > >> -                     schedule_timeout(1);
>> > >> +                     schedule_hrtimeout(&t, HRTIMER_MODE_REL);
>> > >>
>> > >>               if (intr && signal_pending(current)) {
>> > >>                       ret = -ERESTARTSYS;
>> > >> --
>> > >> 1.7.4.rc3
>> > >>
>> > >
>> > > ping again
>> > > _______________________________________________
>> > > Nouveau mailing list
>> > > Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
>> > > http://lists.freedesktop.org/mailman/listinfo/nouveau
>> > >
>> > 
>> > This looks ok to me, but I would like to get Ben Skeggs ok on this one
>> > as well. So i've CC'ed him, hopefully he'll notice :-)
>> Ah sorry, I have actually looked at this quite a while back but came to
>> no solid conclusion.
>> 
>> While yes, I did see some minor performance improvement from it, I also
>> notice that now we once again get 100% CPU usage while an app is waiting
>> for the GPU a lot..
>
> It's not "minor" performance improvement:
>
> without this patch (FPS):
> nexuiz:    53
> wop:       181
> tremulous: 157
> wsw0.5:    89
> glxgears:  730
>
> with:
> nexuiz:    63   (+18%)
> wop:       248  (+37%)
> tremulous: 156  (-0.6%)
> wsw0.5:    91   (+2%)
> glxgears:  1054 (+44%)
>
>
> Ok, so you are worried about CPU usage... Let's see what will happen if
> I remove spinning added by "drm/nouveau: Spin for a bit in 
> nouveau_fence_wait() before yielding the CPU".
>
> reduced version (attached):
> nexuiz:    62
> wop:       248
> trem:      157
> wsw0.5:    90
> glxgears:  1055
>
> Good enough?

Remember to exercise some software fallbacks as well (e.g. something
using core fonts), software fallbacks were the main users of the
spinning you've removed.

Anyway, software fallbacks and occlusion queries are the only two places
(that I can think of now) where we need the low latency your patch
gives, and, as Ben already pointed out, we probably want to keep CPU
usage at minimum in every other case.  As a middle ground, the "lazy"
flag (or rather, a "hog" flag?) could be exposed all the way up to
userspace, and those two cases fixed to set the flag differently.

What do you think?

>
> ---
> From: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Subject: [PATCH] drm/nouveau: fix __nouveau_fence_wait performance regression
>
> Combination of locking and interchannel synchronization changes
> uncovered poor behaviour of nouveau_fence_wait, which on HZ=100
> configuration could waste up to 10 ms per call.
> Depending on application, it lead to 10-30% FPS regression.
>
> To fix it, shorten thread sleep time to 0.1 ms.
>
> Additionally, remove spinning (added by "drm/nouveau: Spin for
> a bit in nouveau_fence_wait() before yielding the CPU"), because
> it's not needed anymore.
>
> Signed-off-by: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
>  drivers/gpu/drm/nouveau/nouveau_fence.c |   11 ++++++++---
>  1 files changed, 8 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/gpu/drm/nouveau/nouveau_fence.c b/drivers/gpu/drm/nouveau/nouveau_fence.c
> index a244702..010243b 100644
> --- a/drivers/gpu/drm/nouveau/nouveau_fence.c
> +++ b/drivers/gpu/drm/nouveau/nouveau_fence.c
> @@ -27,6 +27,9 @@
>  #include "drmP.h"
>  #include "drm.h"
>  
> +#include <linux/ktime.h>
> +#include <linux/hrtimer.h>
> +
>  #include "nouveau_drv.h"
>  #include "nouveau_ramht.h"
>  #include "nouveau_dma.h"
> @@ -229,9 +232,11 @@ int
>  __nouveau_fence_wait(void *sync_obj, void *sync_arg, bool lazy, bool intr)
>  {
>  	unsigned long timeout = jiffies + (3 * DRM_HZ);
> -	unsigned long sleep_time = jiffies + 1;
> +	ktime_t t;
>  	int ret = 0;
>  
> +	t = ktime_set(0, NSEC_PER_MSEC / 10);
> +
>  	while (1) {
>  		if (__nouveau_fence_signalled(sync_obj, sync_arg))
>  			break;
> @@ -243,8 +248,8 @@ __nouveau_fence_wait(void *sync_obj, void *sync_arg, bool lazy, bool intr)
>  
>  		__set_current_state(intr ? TASK_INTERRUPTIBLE
>  			: TASK_UNINTERRUPTIBLE);
> -		if (lazy && time_after_eq(jiffies, sleep_time))
> -			schedule_timeout(1);
> +		if (lazy)
> +			schedule_hrtimeout(&t, HRTIMER_MODE_REL);
>  
>  		if (intr && signal_pending(current)) {
>  			ret = -ERESTARTSYS;

[-- Attachment #1.2: Type: application/pgp-signature, Size: 229 bytes --]

[-- Attachment #2: Type: text/plain, Size: 181 bytes --]

_______________________________________________
Nouveau mailing list
Nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
http://lists.freedesktop.org/mailman/listinfo/nouveau

  parent reply	other threads:[~2011-03-08  0:58 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-13 20:38 [PATCH] drm/nouveau: fix __nouveau_fence_wait performance regression Marcin Slusarz
     [not found] ` <20110213203804.GA5395-OI9uyE9O0yo@public.gmane.org>
2011-02-21 12:40   ` Marcin Slusarz
2011-03-04 16:49   ` Marcin Slusarz
     [not found]     ` <20110304164905.GA2743-OI9uyE9O0yo@public.gmane.org>
2011-03-07 18:18       ` Maarten Maathuis
     [not found]         ` <AANLkTin_jouzPDGfNnYq_BRqPzbvOW+F6jFNuc7p=p5E-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-03-07 22:24           ` Ben Skeggs
2011-03-07 23:22             ` Marcin Slusarz
     [not found]               ` <20110307232256.GA2680-OI9uyE9O0yo@public.gmane.org>
2011-03-07 23:27                 ` Marcin Slusarz
     [not found]                   ` <20110307232719.GB2680-OI9uyE9O0yo@public.gmane.org>
2011-03-08  0:34                     ` Ben Skeggs
2011-03-08  0:58                 ` Francisco Jerez [this message]
     [not found]                   ` <87lj0qzaut.fsf-sGOZH3hwPm2sTnJN9+BGXg@public.gmane.org>
2011-03-08 12:16                     ` Marcin Slusarz
     [not found]                       ` <20110308121628.GA20238-OI9uyE9O0yo@public.gmane.org>
2011-03-08 16:22                         ` Francisco Jerez
     [not found]                           ` <871v2hzin7.fsf-sGOZH3hwPm2sTnJN9+BGXg@public.gmane.org>
2011-03-09  0:14                             ` Marcin Slusarz
     [not found]                               ` <20110309001404.GA22679-OI9uyE9O0yo@public.gmane.org>
2011-03-09 17:34                                 ` Francisco Jerez
     [not found]                                   ` <87fwqwb3kj.fsf-sGOZH3hwPm2sTnJN9+BGXg@public.gmane.org>
2011-03-09 18:04                                     ` Marcin Slusarz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87lj0qzaut.fsf@riseup.net \
    --to=currojerez-sgozh3hwpm2stnjn9+bgxg@public.gmane.org \
    --cc=bskeggs-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.