radeon: dpm - 3.11-rc1 positive report

2013-07-15 Thread Eldad Zack
Hi Alex, I just tested the new 3.11-rc1 and was very happy to find out that it reduces the idle temperature of my system by about 12 degrees (C). Thank you very much for this! Cheers, Eldad P.S. Just for reference, lspci output + dmesg below. 01:00.0 VGA compatible controller: Advanced Micro

[PATCH 1/2] kstrto*: add documentation

2012-07-12 Thread Eldad Zack
As J. Bruce Fields pointed out, kstrto* is currently lacking kerneldoc comments. This patch adds kerneldoc comments to common variants of kstrto*: kstrto(u)l, kstrto(u)ll and kstrto(u)int. Cc: J. Bruce Fields Signed-off-by: Eldad Zack --- include/linux/kernel.h | 36

[PATCH 2/2] simple_strto*: annotate function as obsolete

2012-07-12 Thread Eldad Zack
This patch update the documentation to simple_strto* to reflect that it has been obsoleted and advise the usage of kstrto*. Cc: J. Bruce Fields Signed-off-by: Eldad Zack --- lib/vsprintf.c |8 1 file changed, 8 insertions(+) diff --git a/lib/vsprintf.c b/lib/vsprintf.c index

Re: [PATCH 2/2,resend] sunrpc/cache.h: replace simple_strtoul

2012-07-12 Thread Eldad Zack
On Tue, 10 Jul 2012, J. Bruce Fields wrote: > > (By the way, one advantage which simple_str* does have is documentation. Not for long :) Eldad -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH 1/2] kstrto*: add documentation

2012-07-12 Thread Eldad Zack
On Thu, 12 Jul 2012, J. Bruce Fields wrote: > On Thu, Jul 12, 2012 at 10:53:13PM +0200, Eldad Zack wrote: > > +/** > > + * kstrtoul - convert a string to an unsigned long > > Also, is it worth mentioning that the number is required to be followed > by a string or newl

Re: [PATCH 1/2] kstrto*: add documentation

2012-07-12 Thread Eldad Zack
On Thu, 12 Jul 2012, J. Bruce Fields wrote: > On Fri, Jul 13, 2012 at 12:09:37AM +0200, Eldad Zack wrote: > > > > On Thu, 12 Jul 2012, J. Bruce Fields wrote: > > I am not sure if I understand _parse_integer correctly (which is called > > to do the actual parsing and

Re: Oops in sound/usb/pcm.c:match_endpoint_audioformats() in current -git

2013-01-10 Thread Eldad Zack
On Thu, 10 Jan 2013, Takashi Iwai wrote: > At Thu, 10 Jan 2013 13:49:22 +0100, > Jens Axboe wrote: > > > > Here it is, it's from the one introducing the audioformat lookup. > > Confirmed that 3.8-rc3 with this backed out works fine, too. So should > > be fairly confident in that result. > From:

Re: Regression: drm/radeon: brightness control hard system lockup

2013-01-13 Thread Eldad Zack
On Mon, 7 Jan 2013, Alex Deucher wrote: > On Mon, Jan 7, 2013 at 4:33 PM, Eldad Zack wrote: > > > > On Mon, 7 Jan 2013, Alex Deucher wrote: > >> On Sun, Jan 6, 2013 at 7:59 AM, Eldad Zack wrote: > >> > > >> > Hi Alex, > >> > > &

Re: Regression: drm/radeon: brightness control hard system lockup

2013-01-14 Thread Eldad Zack
On Mon, 14 Jan 2013, Alex Deucher wrote: > On Sun, Jan 13, 2013 at 4:00 PM, Eldad Zack wrote: > > > > On Mon, 7 Jan 2013, Alex Deucher wrote: > >> On Mon, Jan 7, 2013 at 4:33 PM, Eldad Zack wrote: > >> > > >> > On Mon, 7 Jan 2013, Alex Deuch

[PATCH 2/2] simple_strto*: annotate function as obsolete

2012-09-30 Thread Eldad Zack
This patch update the documentation to simple_strto* to reflect that it has been obsoleted and advise the usage of kstrto*. Cc: J. Bruce Fields Signed-off-by: Eldad Zack --- lib/vsprintf.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/lib/vsprintf.c b/lib

[PATCH 1/2] kstrto*: add documentation

2012-09-30 Thread Eldad Zack
As J. Bruce Fields pointed out, kstrto* is currently lacking kerneldoc comments. This patch adds kerneldoc comments to common variants of kstrto*: kstrto(u)l, kstrto(u)ll and kstrto(u)int. Cc: J. Bruce Fields Signed-off-by: Eldad Zack --- v2: includes typo fix from Joe Perches , added details

[PATCH 1/2, resend] sunrpc/cache.h: fix coding style

2012-07-06 Thread Eldad Zack
Neaten code style in get_int(). Also use sizeof() instead of hard coded number as suggested by Joe Perches . Cc: Joe Perches Signed-off-by: Eldad Zack --- Resent to include improvements from Joe Perches. include/linux/sunrpc/cache.h | 14 ++ 1 file changed, 10 insertions(+), 4

[PATCH 2/2,resend] sunrpc/cache.h: replace simple_strtoul

2012-07-06 Thread Eldad Zack
also removes the redundant temporary variable rv, since kstrtoint() will not write to anint unless it's successful. Cc: Joe Perches Signed-off-by: Eldad Zack --- Resent to include improvements from Joe Perches and proper changelog as J. Bruce Fields kindly pointed out. include/linux/sunr

Re: Regression: drm/radeon: brightness control hard system lockup

2013-01-07 Thread Eldad Zack
On Mon, 7 Jan 2013, Alex Deucher wrote: > On Sun, Jan 6, 2013 at 7:59 AM, Eldad Zack wrote: > > > > Hi Alex, > > > > Commit 0ecebb9e0d14e9948e0b1529883a776758117d6f "drm/radeon: switch to a > > finer grained reset for evergreen" introduced a hard syst