* [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() return @ 2009-11-17 22:27 akpm 2009-11-25 5:58 ` Len Brown 0 siblings, 1 reply; 5+ messages in thread From: akpm @ 2009-11-17 22:27 UTC (permalink / raw) To: lenb; +Cc: linux-acpi, akpm, roel.kluin, jwoithe From: Roel Kluin <roel.kluin@gmail.com> The wrong test was used acpi_status status is unsigned. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Acked-by: Jonathan Woithe <jwoithe@physics.adelaide.edu.au> Cc: Len Brown <lenb@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> --- drivers/platform/x86/fujitsu-laptop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/platform/x86/fujitsu-laptop.c~fujitsu-laptop-fix-tests-of-acpi_evaluate_integer-return drivers/platform/x86/fujitsu-laptop.c --- a/drivers/platform/x86/fujitsu-laptop.c~fujitsu-laptop-fix-tests-of-acpi_evaluate_integer-return +++ a/drivers/platform/x86/fujitsu-laptop.c @@ -376,7 +376,7 @@ static int get_lcd_level(void) status = acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state); - if (status < 0) + if (ACPI_FAILURE(status)) return status; fujitsu->brightness_level = state & 0x0fffffff; @@ -398,7 +398,7 @@ static int get_max_brightness(void) status = acpi_evaluate_integer(fujitsu->acpi_handle, "RBLL", NULL, &state); - if (status < 0) + if (ACPI_FAILURE(status)) return status; fujitsu->max_brightness = state; _ ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() return 2009-11-17 22:27 [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() return akpm @ 2009-11-25 5:58 ` Len Brown 2009-11-25 6:29 ` [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() Jonathan Woithe 0 siblings, 1 reply; 5+ messages in thread From: Len Brown @ 2009-11-25 5:58 UTC (permalink / raw) To: akpm; +Cc: linux-acpi, roel.kluin, jwoithe On Tue, 17 Nov 2009, akpm@linux-foundation.org wrote: > From: Roel Kluin <roel.kluin@gmail.com> > > The wrong test was used acpi_status status is unsigned. > > Signed-off-by: Roel Kluin <roel.kluin@gmail.com> > Acked-by: Jonathan Woithe <jwoithe@physics.adelaide.edu.au> > Cc: Len Brown <lenb@kernel.org> > Signed-off-by: Andrew Morton <akpm@linux-foundation.org> > --- > > drivers/platform/x86/fujitsu-laptop.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff -puN drivers/platform/x86/fujitsu-laptop.c~fujitsu-laptop-fix-tests-of-acpi_evaluate_integer-return drivers/platform/x86/fujitsu-laptop.c > --- a/drivers/platform/x86/fujitsu-laptop.c~fujitsu-laptop-fix-tests-of-acpi_evaluate_integer-return > +++ a/drivers/platform/x86/fujitsu-laptop.c > @@ -376,7 +376,7 @@ static int get_lcd_level(void) > > status = > acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state); > - if (status < 0) > + if (ACPI_FAILURE(status)) > return status; as status is a positive number, shouldn't we be returning something like -1 here on failure, rather than status? > > fujitsu->brightness_level = state & 0x0fffffff; > @@ -398,7 +398,7 @@ static int get_max_brightness(void) > > status = > acpi_evaluate_integer(fujitsu->acpi_handle, "RBLL", NULL, &state); > - if (status < 0) > + if (ACPI_FAILURE(status)) > return status; > > fujitsu->max_brightness = state; > _ > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() 2009-11-25 5:58 ` Len Brown @ 2009-11-25 6:29 ` Jonathan Woithe 2009-11-25 11:11 ` Roel Kluin 0 siblings, 1 reply; 5+ messages in thread From: Jonathan Woithe @ 2009-11-25 6:29 UTC (permalink / raw) To: Len Brown; +Cc: akpm, linux-acpi, roel.kluin, jwoithe > > From: Roel Kluin <roel.kluin@gmail.com> > > > > The wrong test was used acpi_status status is unsigned. > > > > Signed-off-by: Roel Kluin <roel.kluin@gmail.com> > > Acked-by: Jonathan Woithe <jwoithe@physics.adelaide.edu.au> > > Cc: Len Brown <lenb@kernel.org> > > Signed-off-by: Andrew Morton <akpm@linux-foundation.org> > > --- > > > > drivers/platform/x86/fujitsu-laptop.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff -puN drivers/platform/x86/fujitsu-laptop.c~fujitsu-laptop-fix-tests-of-acpi_evaluate_integer-return drivers/platform/x86/fujitsu-laptop.c > > --- a/drivers/platform/x86/fujitsu-laptop.c~fujitsu-laptop-fix-tests-of-acpi_evaluate_integer-return > > +++ a/drivers/platform/x86/fujitsu-laptop.c > > @@ -376,7 +376,7 @@ static int get_lcd_level(void) > > > > status = > > acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state); > > - if (status < 0) > > + if (ACPI_FAILURE(status)) > > return status; > > as status is a positive number, shouldn't we be returning something like > -1 here on failure, rather than status? These functions are called via the backlight_ops structure by the standard backlight class framework and it seems, from a real quick look, that the API treats numbers >=0 as valid data. So something like this (untested, off the top of my head) might be more appropriate: diff -puN drivers/platform/x86/fujitsu-laptop.c~fujitsu-laptop-fix-tests-of-acpi_evaluate_integer-return drivers/platform/x86/fujitsu-laptop.c --- a/drivers/platform/x86/fujitsu-laptop.c~fujitsu-laptop-fix-tests-of-acpi_evaluate_integer-return +++ a/drivers/platform/x86/fujitsu-laptop.c @@ -376,7 +376,7 @@ static int get_lcd_level(void) status = acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state); - if (status < 0) - return status; + if (ACPI_FAILURE(status)) + return -status; fujitsu->brightness_level = state & 0x0fffffff; @@ -398,7 +398,7 @@ static int get_max_brightness(void) status = acpi_evaluate_integer(fujitsu->acpi_handle, "RBLL", NULL, &state); - if (status < 0) - return status; + if (ACPI_FAILURE(status)) + return -status; fujitsu->max_brightness = state; Otherwise "return -1;" would be fine by me. My only reason for going with "-status" is that it might give some clue as to what went wrong. Thoughts? Signed-off-by: Jonathan Woithe <jwoithe@physics.adelaide.edu.au> Regards jonathan ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() 2009-11-25 6:29 ` [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() Jonathan Woithe @ 2009-11-25 11:11 ` Roel Kluin 2009-11-26 1:26 ` Jonathan Woithe 0 siblings, 1 reply; 5+ messages in thread From: Roel Kluin @ 2009-11-25 11:11 UTC (permalink / raw) To: Jonathan Woithe; +Cc: Len Brown, akpm, linux-acpi The wrong test was used, acpi_status status is unsigned. Callers expect an -errno on failure. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> --- >>> The wrong test was used acpi_status status is unsigned. >>> - if (status < 0) >>> + if (ACPI_FAILURE(status)) >>> return status; >> >> as status is a positive number, shouldn't we be returning something like >> -1 here on failure, rather than status? > > These functions are called via the backlight_ops structure by the standard > backlight class framework and it seems, from a real quick look, that the API > treats numbers >=0 as valid data. So something like this (untested, off the > top of my head) might be more appropriate: > status = > acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state); > - if (status < 0) > - return status; > + if (ACPI_FAILURE(status)) > + return -status; > Otherwise "return -1;" would be fine by me. My only reason for going with > "-status" is that it might give some clue as to what went wrong. Thoughts? The acpi errors have an entirely different range, won't that confuse the caller? Maybe it's better to return an -errno and display the acpi error in a warning message. Also, acpi_fujitsu_add() and acpi_fujitsu_notify() ignore a get_lcd_level() error return. Is that ok? e.g. something like: drivers/platform/x86/fujitsu-laptop.c | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/drivers/platform/x86/fujitsu-laptop.c b/drivers/platform/x86/fujitsu-laptop.c index bcd4ba8..714c472 100644 --- a/drivers/platform/x86/fujitsu-laptop.c +++ b/drivers/platform/x86/fujitsu-laptop.c @@ -376,8 +376,10 @@ static int get_lcd_level(void) status = acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state); - if (status < 0) - return status; + if (ACPI_FAILURE(status)) { + pr_warning("%s failed, acpi error: %u\n", __func__, status); + return -EINVAL; + } fujitsu->brightness_level = state & 0x0fffffff; @@ -398,8 +400,10 @@ static int get_max_brightness(void) status = acpi_evaluate_integer(fujitsu->acpi_handle, "RBLL", NULL, &state); - if (status < 0) - return status; + if (ACPI_FAILURE(status)) { + pr_warning("%s failed, acpi error: %u\n", __func__, status); + return -EINVAL; + } fujitsu->max_brightness = state; ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() 2009-11-25 11:11 ` Roel Kluin @ 2009-11-26 1:26 ` Jonathan Woithe 0 siblings, 0 replies; 5+ messages in thread From: Jonathan Woithe @ 2009-11-26 1:26 UTC (permalink / raw) To: Roel Kluin; +Cc: Jonathan Woithe, Len Brown, akpm, linux-acpi > The wrong test was used, acpi_status status is unsigned. Callers > expect an -errno on failure. Ah, ok - fair enough. The latter point wasn't clear to me. > Signed-off-by: Roel Kluin <roel.kluin@gmail.com> > --- > >>> The wrong test was used acpi_status status is unsigned. > > >>> - if (status < 0) > >>> + if (ACPI_FAILURE(status)) > >>> return status; > >> > >> as status is a positive number, shouldn't we be returning something like > >> -1 here on failure, rather than status? > > > > These functions are called via the backlight_ops structure by the standard > > backlight class framework and it seems, from a real quick look, that the API > > treats numbers >=0 as valid data. So something like this (untested, off the > > top of my head) might be more appropriate: > > > status = > > acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state); > > - if (status < 0) > > - return status; > > + if (ACPI_FAILURE(status)) > > + return -status; > > > Otherwise "return -1;" would be fine by me. My only reason for going with > > "-status" is that it might give some clue as to what went wrong. Thoughts? > > The acpi errors have an entirely different range, won't that confuse the > caller? Maybe it's better to return an -errno and display the acpi error in > a warning message. If an errno is expected by the caller then I agree completely with this suggestion; perhaps -EINVAL is the best choice? > Also, acpi_fujitsu_add() and acpi_fujitsu_notify() ignore a get_lcd_level() > error return. Is that ok? In practice I don't expect it to cause any issues, but thanks for flagging it - I'll look into it in more detail. If the functions get this far it means that the relevant ACPI object has been found in the hardware and that therefore these functions should not fail. In any case, a failure to control the brightness does not necessarily mean that other functions provided by that object are broken so it is arguably wrong to fail the add/notify simply on the basis of a failed brightness read. > e.g. something like: > > drivers/platform/x86/fujitsu-laptop.c | 12 ++++++++---- > 1 files changed, 8 insertions(+), 4 deletions(-) > > diff --git a/drivers/platform/x86/fujitsu-laptop.c b/drivers/platform/x86/fujitsu-laptop.c > index bcd4ba8..714c472 100644 > --- a/drivers/platform/x86/fujitsu-laptop.c > +++ b/drivers/platform/x86/fujitsu-laptop.c > @@ -376,8 +376,10 @@ static int get_lcd_level(void) > > status = > acpi_evaluate_integer(fujitsu->acpi_handle, "GBLL", NULL, &state); > - if (status < 0) > - return status; > + if (ACPI_FAILURE(status)) { > + pr_warning("%s failed, acpi error: %u\n", __func__, status); > + return -EINVAL; > + } > > fujitsu->brightness_level = state & 0x0fffffff; > > @@ -398,8 +400,10 @@ static int get_max_brightness(void) > > status = > acpi_evaluate_integer(fujitsu->acpi_handle, "RBLL", NULL, &state); > - if (status < 0) > - return status; > + if (ACPI_FAILURE(status)) { > + pr_warning("%s failed, acpi error: %u\n", __func__, status); > + return -EINVAL; > + } > > fujitsu->max_brightness = state; > > Yes, I'd be happy with that. It seems sensible to me given the circumstances. Acked-by: Jonathan Woithe <jwoithe@physics.adelaide.edu.au> Regards jonathan ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-11-26 1:27 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-11-17 22:27 [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() return akpm 2009-11-25 5:58 ` Len Brown 2009-11-25 6:29 ` [patch 05/12] fujitsu-laptop: fix tests of acpi_evaluate_integer() Jonathan Woithe 2009-11-25 11:11 ` Roel Kluin 2009-11-26 1:26 ` Jonathan Woithe
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox