* [PATCH] ACPI video: Ignore AE_AML_PACKAGE_LIMIT errors after _DOD evaluation.
@ 2012-10-09 22:19 Igor Murzov
2012-10-09 22:58 ` Rafael J. Wysocki
0 siblings, 1 reply; 4+ messages in thread
From: Igor Murzov @ 2012-10-09 22:19 UTC (permalink / raw)
To: linux-acpi; +Cc: Zhang Rui, Len Brown, Sergey V, linux-kernel, Igor Murzov
This should fix brightness controls on some laptops.
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=47861
Signed-off-by: Igor Murzov <e-mail@date.by>
---
drivers/acpi/video.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
index 1e0a9e1..01bb58d 100644
--- a/drivers/acpi/video.c
+++ b/drivers/acpi/video.c
@@ -1349,8 +1349,12 @@ acpi_video_bus_get_devices(struct acpi_video_bus *video,
struct acpi_device *dev;
status = acpi_video_device_enumerate(video);
- if (status)
- return status;
+ if (status) {
+ if (status == AE_AML_PACKAGE_LIMIT)
+ status = 0; /* Ignore this error */
+ else
+ return status;
+ }
list_for_each_entry(dev, &device->children, node) {
--
1.7.12
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ACPI video: Ignore AE_AML_PACKAGE_LIMIT errors after _DOD evaluation.
2012-10-09 22:19 [PATCH] ACPI video: Ignore AE_AML_PACKAGE_LIMIT errors after _DOD evaluation Igor Murzov
@ 2012-10-09 22:58 ` Rafael J. Wysocki
2012-10-10 0:43 ` Igor Murzov
0 siblings, 1 reply; 4+ messages in thread
From: Rafael J. Wysocki @ 2012-10-09 22:58 UTC (permalink / raw)
To: Igor Murzov; +Cc: linux-acpi, Zhang Rui, Len Brown, Sergey V, linux-kernel
On Wednesday 10 of October 2012 02:19:06 Igor Murzov wrote:
> This should fix brightness controls on some laptops.
> Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=47861
>
> Signed-off-by: Igor Murzov <e-mail@date.by>
Put more detials into the changelog, please. The BZ entry linked above
may or may not be accessible when the changelog is read by someone.
> ---
> drivers/acpi/video.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
> index 1e0a9e1..01bb58d 100644
> --- a/drivers/acpi/video.c
> +++ b/drivers/acpi/video.c
> @@ -1349,8 +1349,12 @@ acpi_video_bus_get_devices(struct acpi_video_bus *video,
> struct acpi_device *dev;
>
> status = acpi_video_device_enumerate(video);
> - if (status)
> - return status;
> + if (status) {
> + if (status == AE_AML_PACKAGE_LIMIT)
> + status = 0; /* Ignore this error */
> + else
> + return status;
> + }
First off, please add a comment explaining _why_ we're ignoring the error.
Second, what about adding just:
if (status == AE_AML_PACKAGE_LIMIT)
status = 0;
before the "if (status)" check?
>
> list_for_each_entry(dev, &device->children, node) {
Thanks,
Rafael
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ACPI video: Ignore AE_AML_PACKAGE_LIMIT errors after _DOD evaluation.
2012-10-09 22:58 ` Rafael J. Wysocki
@ 2012-10-10 0:43 ` Igor Murzov
2012-10-10 22:47 ` Rafael J. Wysocki
0 siblings, 1 reply; 4+ messages in thread
From: Igor Murzov @ 2012-10-10 0:43 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: linux-acpi, Zhang Rui, Len Brown, Sergey V, linux-kernel
On Wed, 10 Oct 2012 00:58:10 +0200
"Rafael J. Wysocki" <rjw@sisk.pl> wrote:
> On Wednesday 10 of October 2012 02:19:06 Igor Murzov wrote:
> > This should fix brightness controls on some laptops.
> > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=47861
> >
> > Signed-off-by: Igor Murzov <e-mail@date.by>
>
> Put more detials into the changelog, please. The BZ entry linked above
> may or may not be accessible when the changelog is read by someone.
>
> > ---
> > drivers/acpi/video.c | 8 ++++++--
> > 1 file changed, 6 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
> > index 1e0a9e1..01bb58d 100644
> > --- a/drivers/acpi/video.c
> > +++ b/drivers/acpi/video.c
> > @@ -1349,8 +1349,12 @@ acpi_video_bus_get_devices(struct acpi_video_bus *video,
> > struct acpi_device *dev;
> >
> > status = acpi_video_device_enumerate(video);
> > - if (status)
> > - return status;
> > + if (status) {
> > + if (status == AE_AML_PACKAGE_LIMIT)
> > + status = 0; /* Ignore this error */
> > + else
> > + return status;
> > + }
>
> First off, please add a comment explaining _why_ we're ignoring the error.
The problem is that i'm not sure if it's ok to ignore
AE_AML_PACKAGE_LIMIT here. Stefan Wilkens in bugzilla
claims that video module works fine on his Compaq 6720s
in spite of the fact that acpi_video_device_enumerate()
is not able to find any video device on his laptop.
This fix is just the most obvious one, not necessarily
the proper one.
> Second, what about adding just:
>
> if (status == AE_AML_PACKAGE_LIMIT)
> status = 0;
>
> before the "if (status)" check?
Ok
-- Igor
> >
> > list_for_each_entry(dev, &device->children, node) {
>
> Thanks,
> Rafael
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ACPI video: Ignore AE_AML_PACKAGE_LIMIT errors after _DOD evaluation.
2012-10-10 0:43 ` Igor Murzov
@ 2012-10-10 22:47 ` Rafael J. Wysocki
0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2012-10-10 22:47 UTC (permalink / raw)
To: Igor Murzov; +Cc: linux-acpi, Zhang Rui, Len Brown, Sergey V, linux-kernel
On Wednesday 10 of October 2012 04:43:40 Igor Murzov wrote:
> On Wed, 10 Oct 2012 00:58:10 +0200
> "Rafael J. Wysocki" <rjw@sisk.pl> wrote:
>
> > On Wednesday 10 of October 2012 02:19:06 Igor Murzov wrote:
> > > This should fix brightness controls on some laptops.
> > > Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=47861
> > >
> > > Signed-off-by: Igor Murzov <e-mail@date.by>
> >
> > Put more detials into the changelog, please. The BZ entry linked above
> > may or may not be accessible when the changelog is read by someone.
> >
> > > ---
> > > drivers/acpi/video.c | 8 ++++++--
> > > 1 file changed, 6 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
> > > index 1e0a9e1..01bb58d 100644
> > > --- a/drivers/acpi/video.c
> > > +++ b/drivers/acpi/video.c
> > > @@ -1349,8 +1349,12 @@ acpi_video_bus_get_devices(struct acpi_video_bus *video,
> > > struct acpi_device *dev;
> > >
> > > status = acpi_video_device_enumerate(video);
> > > - if (status)
> > > - return status;
> > > + if (status) {
> > > + if (status == AE_AML_PACKAGE_LIMIT)
> > > + status = 0; /* Ignore this error */
> > > + else
> > > + return status;
> > > + }
> >
> > First off, please add a comment explaining _why_ we're ignoring the error.
>
> The problem is that i'm not sure if it's ok to ignore
> AE_AML_PACKAGE_LIMIT here.
This should be written in a comment, then. :-)
> Stefan Wilkens in bugzilla
> claims that video module works fine on his Compaq 6720s
> in spite of the fact that acpi_video_device_enumerate()
> is not able to find any video device on his laptop.
> This fix is just the most obvious one, not necessarily
> the proper one.
So say something like "there are systems known to return AE_AML_PACKAGE_LIMIT
here, apparently for no valid reason" in a comment. And give a reference to
the BZ entry in the changelog.
There are too many places where we have put workarounds like this without
documenting them properly and now we have problems when we need to change
something.
Thanks,
Rafael
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-10-10 22:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-09 22:19 [PATCH] ACPI video: Ignore AE_AML_PACKAGE_LIMIT errors after _DOD evaluation Igor Murzov
2012-10-09 22:58 ` Rafael J. Wysocki
2012-10-10 0:43 ` Igor Murzov
2012-10-10 22:47 ` Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox