All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nouveau reclocking on nv40 not working since 77145f1cbdf8d28b46ff8070ca749bad821e0774
@ 2013-08-13  9:28 Pali Rohár
  2013-08-15 17:46 ` Pali Rohár
  0 siblings, 1 reply; 10+ messages in thread
From: Pali Rohár @ 2013-08-13  9:28 UTC (permalink / raw)
  To: David Airlie, dri-devel, linux-kernel, Ben Skeggs

[-- Attachment #1: Type: text/plain, Size: 975 bytes --]

Hello,

in commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was introduced
error which cause that on my Nvidia 6600GT card reclocking not working
anymore. There is missing assigment of return value from pll_calc to ret.

After this patch reclocking on my card working fine again. Above broken
commit was introduced in kernel 3.7, so consider backporting this patch
to older kernels too.

Signed-off-by: Pali Rohár <pali.rohar@gmail.com>

diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c b/drivers/gpu/drm/nouveau/nv40_pm.c
index 3af5bcd..625f80d 100644
--- a/drivers/gpu/drm/nouveau/nv40_pm.c
+++ b/drivers/gpu/drm/nouveau/nv40_pm.c
@@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev, u32 reg, struct nvbios_pll *pll,
 	if (clk < pll->vco1.max_freq)
 		pll->vco2.max_freq = 0;
 
-	pclk->pll_calc(pclk, pll, clk, &coef);
+	ret = pclk->pll_calc(pclk, pll, clk, &coef);
 	if (ret == 0)
 		return -ERANGE;
 

-- 
Pali Rohár
pali.rohar@gmail.com


[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] nouveau reclocking on nv40 not working since 77145f1cbdf8d28b46ff8070ca749bad821e0774
  2013-08-13  9:28 [PATCH] nouveau reclocking on nv40 not working since 77145f1cbdf8d28b46ff8070ca749bad821e0774 Pali Rohár
@ 2013-08-15 17:46 ` Pali Rohár
  2013-08-15 22:23   ` Martin Peres
  0 siblings, 1 reply; 10+ messages in thread
From: Pali Rohár @ 2013-08-15 17:46 UTC (permalink / raw)
  To: Martin Peres; +Cc: David Airlie, dri-devel, linux-kernel, Ben Skeggs

[-- Attachment #1: Type: Text/Plain, Size: 1144 bytes --]

On Tuesday 13 August 2013 11:28:01 Pali Rohár wrote:
> Hello,
> 
> in commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was
> introduced error which cause that on my Nvidia 6600GT card
> reclocking not working anymore. There is missing assigment of
> return value from pll_calc to ret.
> 
> After this patch reclocking on my card working fine again.
> Above broken commit was introduced in kernel 3.7, so consider
> backporting this patch to older kernels too.
> 
> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
> 
> diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c
> b/drivers/gpu/drm/nouveau/nv40_pm.c index 3af5bcd..625f80d
> 100644
> --- a/drivers/gpu/drm/nouveau/nv40_pm.c
> +++ b/drivers/gpu/drm/nouveau/nv40_pm.c
> @@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev, u32
> reg, struct nvbios_pll *pll, if (clk < pll->vco1.max_freq)
>  		pll->vco2.max_freq = 0;
> 
> -	pclk->pll_calc(pclk, pll, clk, &coef);
> +	ret = pclk->pll_calc(pclk, pll, clk, &coef);
>  	if (ret == 0)
>  		return -ERANGE;

Martin, can you look at another problem with my graphics card?

-- 
Pali Rohár
pali.rohar@gmail.com

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] nouveau reclocking on nv40 not working since 77145f1cbdf8d28b46ff8070ca749bad821e0774
  2013-08-15 17:46 ` Pali Rohár
@ 2013-08-15 22:23   ` Martin Peres
  2013-08-16  7:16     ` Pali Rohár
  0 siblings, 1 reply; 10+ messages in thread
From: Martin Peres @ 2013-08-15 22:23 UTC (permalink / raw)
  To: Pali Rohár; +Cc: David Airlie, dri-devel, linux-kernel, Ben Skeggs

On 15/08/2013 13:46, Pali Rohár wrote:
> On Tuesday 13 August 2013 11:28:01 Pali Rohár wrote:
>> Hello,
>>
>> in commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was
>> introduced error which cause that on my Nvidia 6600GT card
>> reclocking not working anymore. There is missing assigment of
>> return value from pll_calc to ret.
>>
>> After this patch reclocking on my card working fine again.
>> Above broken commit was introduced in kernel 3.7, so consider
>> backporting this patch to older kernels too.
>>
>> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
>>
>> diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c
>> b/drivers/gpu/drm/nouveau/nv40_pm.c index 3af5bcd..625f80d
>> 100644
>> --- a/drivers/gpu/drm/nouveau/nv40_pm.c
>> +++ b/drivers/gpu/drm/nouveau/nv40_pm.c
>> @@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev, u32
>> reg, struct nvbios_pll *pll, if (clk < pll->vco1.max_freq)
>>   		pll->vco2.max_freq = 0;
>>
>> -	pclk->pll_calc(pclk, pll, clk, &coef);
>> +	ret = pclk->pll_calc(pclk, pll, clk, &coef);
>>   	if (ret == 0)
>>   		return -ERANGE;
> Martin, can you look at another problem with my graphics card?
As I told you before, I'm away from my computers, so I cannot test the 
patch. However,
this one seems quite obvious and should be pushed. Thanks.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] nouveau reclocking on nv40 not working since 77145f1cbdf8d28b46ff8070ca749bad821e0774
  2013-08-15 22:23   ` Martin Peres
@ 2013-08-16  7:16     ` Pali Rohár
  2013-08-16 10:23       ` Martin Peres
  0 siblings, 1 reply; 10+ messages in thread
From: Pali Rohár @ 2013-08-16  7:16 UTC (permalink / raw)
  To: Martin Peres; +Cc: David Airlie, dri-devel, linux-kernel, Ben Skeggs

[-- Attachment #1: Type: text/plain, Size: 1659 bytes --]

On Thursday 15 August 2013 18:23:06 Martin Peres wrote:
> On 15/08/2013 13:46, Pali Rohár wrote:
> > On Tuesday 13 August 2013 11:28:01 Pali Rohár wrote:
> >> Hello,
> >> 
> >> in commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was
> >> introduced error which cause that on my Nvidia 6600GT card
> >> reclocking not working anymore. There is missing assigment of
> >> return value from pll_calc to ret.
> >> 
> >> After this patch reclocking on my card working fine again.
> >> Above broken commit was introduced in kernel 3.7, so consider
> >> backporting this patch to older kernels too.
> >> 
> >> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
> >> 
> >> diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c
> >> b/drivers/gpu/drm/nouveau/nv40_pm.c index 3af5bcd..625f80d
> >> 100644
> >> --- a/drivers/gpu/drm/nouveau/nv40_pm.c
> >> +++ b/drivers/gpu/drm/nouveau/nv40_pm.c
> >> @@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev, u32
> >> reg, struct nvbios_pll *pll, if (clk < pll->vco1.max_freq)
> >> 
> >>   		pll->vco2.max_freq = 0;
> >> 
> >> -	pclk->pll_calc(pclk, pll, clk, &coef);
> >> +	ret = pclk->pll_calc(pclk, pll, clk, &coef);
> >> 
> >>   	if (ret == 0)
> >>   	
> >>   		return -ERANGE;
> > 
> > Martin, can you look at another problem with my graphics card?
> 
> As I told you before, I'm away from my computers, so I cannot test the
> patch. However,
> this one seems quite obvious and should be pushed. Thanks.

Yes, look at that diff of that problematic commit and you will see that ret 
here is missing. It is possible to push this patch to 3.11?

-- 
Pali Rohár
pali.rohar@gmail.com


[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] nouveau reclocking on nv40 not working since 77145f1cbdf8d28b46ff8070ca749bad821e0774
  2013-08-16  7:16     ` Pali Rohár
@ 2013-08-16 10:23       ` Martin Peres
  2013-08-16 12:57         ` [PATCH] nouveau: fix reclocking on nv40 Pali Rohár
  0 siblings, 1 reply; 10+ messages in thread
From: Martin Peres @ 2013-08-16 10:23 UTC (permalink / raw)
  To: Pali Rohár; +Cc: David Airlie, dri-devel, linux-kernel, Ben Skeggs

On 16/08/2013 03:16, Pali Rohár wrote:
> On Thursday 15 August 2013 18:23:06 Martin Peres wrote:
>> On 15/08/2013 13:46, Pali Rohár wrote:
>>> On Tuesday 13 August 2013 11:28:01 Pali Rohár wrote:
>>>> Hello,
>>>>
>>>> in commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was
>>>> introduced error which cause that on my Nvidia 6600GT card
>>>> reclocking not working anymore. There is missing assigment of
>>>> return value from pll_calc to ret.
>>>>
>>>> After this patch reclocking on my card working fine again.
>>>> Above broken commit was introduced in kernel 3.7, so consider
>>>> backporting this patch to older kernels too.
>>>>
>>>> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
>>>>
>>>> diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c
>>>> b/drivers/gpu/drm/nouveau/nv40_pm.c index 3af5bcd..625f80d
>>>> 100644
>>>> --- a/drivers/gpu/drm/nouveau/nv40_pm.c
>>>> +++ b/drivers/gpu/drm/nouveau/nv40_pm.c
>>>> @@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev, u32
>>>> reg, struct nvbios_pll *pll, if (clk < pll->vco1.max_freq)
>>>>
>>>>    		pll->vco2.max_freq = 0;
>>>>
>>>> -	pclk->pll_calc(pclk, pll, clk, &coef);
>>>> +	ret = pclk->pll_calc(pclk, pll, clk, &coef);
>>>>
>>>>    	if (ret == 0)
>>>>    	
>>>>    		return -ERANGE;
>>> Martin, can you look at another problem with my graphics card?
>> As I told you before, I'm away from my computers, so I cannot test the
>> patch. However,
>> this one seems quite obvious and should be pushed. Thanks.
> Yes, look at that diff of that problematic commit and you will see that ret
> here is missing. It is possible to push this patch to 3.11?
Please make a proper patch (generated by git format-patch or git 
send-email) and
Ben will push it.

You add my Signed-off-by: Martin Peres <martin.peres@labri.fr>

Cheers

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [PATCH] nouveau: fix reclocking on nv40
  2013-08-16 10:23       ` Martin Peres
@ 2013-08-16 12:57         ` Pali Rohár
  2013-08-19  6:59           ` Pali Rohár
  0 siblings, 1 reply; 10+ messages in thread
From: Pali Rohár @ 2013-08-16 12:57 UTC (permalink / raw)
  To: Ben Skeggs, linux-kernel, dri-devel, David Airlie
  Cc: Pali Rohár, Martin Peres

In commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was introduced
error which cause that reclocking on nv40 not working anymore.
There is missing assigment of return value from pll_calc to ret.

Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
Signed-off-by: Martin Peres <martin.peres@labri.fr>
---
 drivers/gpu/drm/nouveau/nv40_pm.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c b/drivers/gpu/drm/nouveau/nv40_pm.c
index 3af5bcd..625f80d 100644
--- a/drivers/gpu/drm/nouveau/nv40_pm.c
+++ b/drivers/gpu/drm/nouveau/nv40_pm.c
@@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev, u32 reg, struct nvbios_pll *pll,
 	if (clk < pll->vco1.max_freq)
 		pll->vco2.max_freq = 0;
 
-	pclk->pll_calc(pclk, pll, clk, &coef);
+	ret = pclk->pll_calc(pclk, pll, clk, &coef);
 	if (ret == 0)
 		return -ERANGE;
 
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH] nouveau: fix reclocking on nv40
  2013-08-16 12:57         ` [PATCH] nouveau: fix reclocking on nv40 Pali Rohár
@ 2013-08-19  6:59           ` Pali Rohár
  2013-08-21  0:24             ` Ben Skeggs
  0 siblings, 1 reply; 10+ messages in thread
From: Pali Rohár @ 2013-08-19  6:59 UTC (permalink / raw)
  To: Ben Skeggs; +Cc: linux-kernel, dri-devel, David Airlie, Martin Peres

[-- Attachment #1: Type: Text/Plain, Size: 1133 bytes --]

On Friday 16 August 2013 14:57:07 Pali Rohár wrote:
> In commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was
> introduced error which cause that reclocking on nv40 not
> working anymore. There is missing assigment of return value
> from pll_calc to ret.
> 
> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
> Signed-off-by: Martin Peres <martin.peres@labri.fr>
> ---
>  drivers/gpu/drm/nouveau/nv40_pm.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c
> b/drivers/gpu/drm/nouveau/nv40_pm.c index 3af5bcd..625f80d
> 100644
> --- a/drivers/gpu/drm/nouveau/nv40_pm.c
> +++ b/drivers/gpu/drm/nouveau/nv40_pm.c
> @@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev, u32
> reg, struct nvbios_pll *pll, if (clk < pll->vco1.max_freq)
>  		pll->vco2.max_freq = 0;
> 
> -	pclk->pll_calc(pclk, pll, clk, &coef);
> +	ret = pclk->pll_calc(pclk, pll, clk, &coef);
>  	if (ret == 0)
>  		return -ERANGE;

Hello, it is possible to include this patch in 3.11?
Or it is too late now and need to wait for 3.12?

-- 
Pali Rohár
pali.rohar@gmail.com

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] nouveau: fix reclocking on nv40
  2013-08-19  6:59           ` Pali Rohár
@ 2013-08-21  0:24             ` Ben Skeggs
  2013-09-08 11:25               ` Pali Rohár
  0 siblings, 1 reply; 10+ messages in thread
From: Ben Skeggs @ 2013-08-21  0:24 UTC (permalink / raw)
  To: Pali Rohár; +Cc: Ben Skeggs, Martin Peres, linux-kernel, dri-devel

On Mon, Aug 19, 2013 at 4:59 PM, Pali Rohár <pali.rohar@gmail.com> wrote:
> On Friday 16 August 2013 14:57:07 Pali Rohár wrote:
>> In commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was
>> introduced error which cause that reclocking on nv40 not
>> working anymore. There is missing assigment of return value
>> from pll_calc to ret.
>>
>> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
>> Signed-off-by: Martin Peres <martin.peres@labri.fr>
>> ---
>>  drivers/gpu/drm/nouveau/nv40_pm.c |    2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c
>> b/drivers/gpu/drm/nouveau/nv40_pm.c index 3af5bcd..625f80d
>> 100644
>> --- a/drivers/gpu/drm/nouveau/nv40_pm.c
>> +++ b/drivers/gpu/drm/nouveau/nv40_pm.c
>> @@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev, u32
>> reg, struct nvbios_pll *pll, if (clk < pll->vco1.max_freq)
>>               pll->vco2.max_freq = 0;
>>
>> -     pclk->pll_calc(pclk, pll, clk, &coef);
>> +     ret = pclk->pll_calc(pclk, pll, clk, &coef);
>>       if (ret == 0)
>>               return -ERANGE;
>
> Hello, it is possible to include this patch in 3.11?
> Or it is too late now and need to wait for 3.12?
I've picked up the patch and will submit it in my next 3.11-fixes pull request.

Thanks,
Ben.

>
> --
> Pali Rohár
> pali.rohar@gmail.com
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] nouveau: fix reclocking on nv40
  2013-08-21  0:24             ` Ben Skeggs
@ 2013-09-08 11:25               ` Pali Rohár
  2013-09-09  4:28                 ` Ben Skeggs
  0 siblings, 1 reply; 10+ messages in thread
From: Pali Rohár @ 2013-09-08 11:25 UTC (permalink / raw)
  To: Ben Skeggs; +Cc: Ben Skeggs, Martin Peres, linux-kernel, dri-devel

[-- Attachment #1: Type: Text/Plain, Size: 1672 bytes --]

On Wednesday 21 August 2013 02:24:01 Ben Skeggs wrote:
> On Mon, Aug 19, 2013 at 4:59 PM, Pali Rohár 
<pali.rohar@gmail.com> wrote:
> > On Friday 16 August 2013 14:57:07 Pali Rohár wrote:
> >> In commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was
> >> introduced error which cause that reclocking on nv40 not
> >> working anymore. There is missing assigment of return value
> >> from pll_calc to ret.
> >> 
> >> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
> >> Signed-off-by: Martin Peres <martin.peres@labri.fr>
> >> ---
> >> 
> >>  drivers/gpu/drm/nouveau/nv40_pm.c |    2 +-
> >>  1 file changed, 1 insertion(+), 1 deletion(-)
> >> 
> >> diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c
> >> b/drivers/gpu/drm/nouveau/nv40_pm.c index 3af5bcd..625f80d
> >> 100644
> >> --- a/drivers/gpu/drm/nouveau/nv40_pm.c
> >> +++ b/drivers/gpu/drm/nouveau/nv40_pm.c
> >> @@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev,
> >> u32 reg, struct nvbios_pll *pll, if (clk <
> >> pll->vco1.max_freq)
> >> 
> >>               pll->vco2.max_freq = 0;
> >> 
> >> -     pclk->pll_calc(pclk, pll, clk, &coef);
> >> +     ret = pclk->pll_calc(pclk, pll, clk, &coef);
> >> 
> >>       if (ret == 0)
> >>       
> >>               return -ERANGE;
> > 
> > Hello, it is possible to include this patch in 3.11?
> > Or it is too late now and need to wait for 3.12?
> 
> I've picked up the patch and will submit it in my next
> 3.11-fixes pull request.
> 
> Thanks,
> Ben.
> 

Hello, now I see that patch is in 3.11, thanks! Ben, what do you 
think, can be this patch backported to older kernels?

-- 
Pali Rohár
pali.rohar@gmail.com

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] nouveau: fix reclocking on nv40
  2013-09-08 11:25               ` Pali Rohár
@ 2013-09-09  4:28                 ` Ben Skeggs
  0 siblings, 0 replies; 10+ messages in thread
From: Ben Skeggs @ 2013-09-09  4:28 UTC (permalink / raw)
  To: Pali Rohár; +Cc: Ben Skeggs, Martin Peres, linux-kernel, dri-devel

On Sun, Sep 8, 2013 at 9:25 PM, Pali Rohár <pali.rohar@gmail.com> wrote:
> On Wednesday 21 August 2013 02:24:01 Ben Skeggs wrote:
>> On Mon, Aug 19, 2013 at 4:59 PM, Pali Rohár
> <pali.rohar@gmail.com> wrote:
>> > On Friday 16 August 2013 14:57:07 Pali Rohár wrote:
>> >> In commit 77145f1cbdf8d28b46ff8070ca749bad821e0774 was
>> >> introduced error which cause that reclocking on nv40 not
>> >> working anymore. There is missing assigment of return value
>> >> from pll_calc to ret.
>> >>
>> >> Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
>> >> Signed-off-by: Martin Peres <martin.peres@labri.fr>
>> >> ---
>> >>
>> >>  drivers/gpu/drm/nouveau/nv40_pm.c |    2 +-
>> >>  1 file changed, 1 insertion(+), 1 deletion(-)
>> >>
>> >> diff --git a/drivers/gpu/drm/nouveau/nv40_pm.c
>> >> b/drivers/gpu/drm/nouveau/nv40_pm.c index 3af5bcd..625f80d
>> >> 100644
>> >> --- a/drivers/gpu/drm/nouveau/nv40_pm.c
>> >> +++ b/drivers/gpu/drm/nouveau/nv40_pm.c
>> >> @@ -131,7 +131,7 @@ nv40_calc_pll(struct drm_device *dev,
>> >> u32 reg, struct nvbios_pll *pll, if (clk <
>> >> pll->vco1.max_freq)
>> >>
>> >>               pll->vco2.max_freq = 0;
>> >>
>> >> -     pclk->pll_calc(pclk, pll, clk, &coef);
>> >> +     ret = pclk->pll_calc(pclk, pll, clk, &coef);
>> >>
>> >>       if (ret == 0)
>> >>
>> >>               return -ERANGE;
>> >
>> > Hello, it is possible to include this patch in 3.11?
>> > Or it is too late now and need to wait for 3.12?
>>
>> I've picked up the patch and will submit it in my next
>> 3.11-fixes pull request.
>>
>> Thanks,
>> Ben.
>>
>
> Hello, now I see that patch is in 3.11, thanks! Ben, what do you
> think, can be this patch backported to older kernels?
Personally, I don't care at all.  The current PM code is a dead end,
and completely not "supported" (hence why it's hidden behind a magic
parameter).  If I had my way it'd have been completely ripped out
already.

If someone wants to backport and test it on earlier kernels though, by
all means, go ahead :)

Thanks,
Ben.

>
> --
> Pali Rohár
> pali.rohar@gmail.com

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-09-09  4:28 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-13  9:28 [PATCH] nouveau reclocking on nv40 not working since 77145f1cbdf8d28b46ff8070ca749bad821e0774 Pali Rohár
2013-08-15 17:46 ` Pali Rohár
2013-08-15 22:23   ` Martin Peres
2013-08-16  7:16     ` Pali Rohár
2013-08-16 10:23       ` Martin Peres
2013-08-16 12:57         ` [PATCH] nouveau: fix reclocking on nv40 Pali Rohár
2013-08-19  6:59           ` Pali Rohár
2013-08-21  0:24             ` Ben Skeggs
2013-09-08 11:25               ` Pali Rohár
2013-09-09  4:28                 ` Ben Skeggs

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.