All of lore.kernel.org
 help / color / mirror / Atom feed
From: Len Brown <lenb@kernel.org>
To: trenn@suse.de, cpufreq@lists.linux.org.uk
Cc: akpm@linux-foundation.org, linux-acpi@vger.kernel.org
Subject: Re: [patch 04/13] Exit ACPI processor module gracefully if acpi is disabled
Date: Wed, 7 Mar 2007 03:00:55 -0500	[thread overview]
Message-ID: <200703070300.55821.lenb@kernel.org> (raw)
In-Reply-To: <1171010060.25027.616.camel@d36.suse.de>

On Friday 09 February 2007 03:34, Thomas Renninger wrote:
> On Fri, 2007-02-09 at 00:47 -0500, Len Brown wrote:
> > Why not simply check acpi_disabled, like other drivers do?
> > 
> See comment from Dominik when I sent something similar some time ago:
> http://marc.theaimsgroup.com/?l=linux-acpi&m=114563882012355&w=2

Dominik is right right driver registration should fail w/o
a check for acpi_disabled.  However, we use acpi_disabled all
over the place already when that is not sufficient, so if we
need it here, we can use it..

>> [Dominik wrote]
>> No. For example powernow-k8 and speedstep-centrino do have a dependency on a
>> function which is exported by processor_perflib.c. THis means you cannot
>> load these modules (which can run without ACPI support) if loading the
>> processor module fails. Therefore its init function must not fail.

Blech, so the drivers that can be either native or ACPI can't link
in native mode unless their ACPI processor driver symbols resolve?

Hmmm.  Perhaps we should delete the ACPI part of speedstep_centrino
now that it is deprecated by acpi-cpufreq?  That way it can be
just a native driver for folks who want to run
with hard-coded tables and no ACPI.
Or perhaps at this point we should delete speedstep_centrino entirely?

Looks like powernow-k7.c and powernow-k8.c have the same issue --
acpi_processor_register_performance() ain't gonna resolve if the acpi processor
driver isn't present.  Perhaps they can be split into native and ACPI drivers?

-Len


> > On Monday 05 February 2007 19:09, akpm@linux-foundation.org wrote:
> > > From: Thomas Renninger <trenn@suse.de>
> > > 
> > > Signed-off-by: Thomas Renninger <trenn@suse.de>
> > > Cc: Len Brown <lenb@kernel.org>
> > > Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> > > ---
> > > 
> > >  drivers/acpi/processor_core.c |   13 +++++++++----
> > >  1 file changed, 9 insertions(+), 4 deletions(-)
> > > 
> > > diff -puN drivers/acpi/processor_core.c~exit-acpi-processor-module-gracefully-if-acpi-is-disabled drivers/acpi/processor_core.c
> > > --- a/drivers/acpi/processor_core.c~exit-acpi-processor-module-gracefully-if-acpi-is-disabled
> > > +++ a/drivers/acpi/processor_core.c
> > > @@ -994,6 +994,8 @@ void acpi_processor_uninstall_hotplug_no
> > >   * ACPI, but needs symbols from this driver
> > >   */
> > >  
> > > +static int processor_driver_registered;
> > > +
> > >  static int __init acpi_processor_init(void)
> > >  {
> > >  	int result = 0;
> > > @@ -1019,6 +1021,8 @@ static int __init acpi_processor_init(vo
> > >  		return result;
> > >  	}
> > >  
> > > +	processor_driver_registered = 1;
> > > +
> > >  	acpi_processor_install_hotplug_notify();
> > >  
> > >  	acpi_thermal_cpufreq_init();
> > > @@ -1035,12 +1039,13 @@ static void __exit acpi_processor_exit(v
> > >  
> > >  	acpi_thermal_cpufreq_exit();
> > >  
> > > -	acpi_processor_uninstall_hotplug_notify();
> > > -
> > > -	acpi_bus_unregister_driver(&acpi_processor_driver);
> > > +	if (processor_driver_registered) {
> > > +		acpi_processor_uninstall_hotplug_notify();
> > >  
> > > -	remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
> > > +		acpi_bus_unregister_driver(&acpi_processor_driver);
> > >  
> > > +		remove_proc_entry(ACPI_PROCESSOR_CLASS, acpi_root_dir);
> > > +	}
> > >  	return;
> > >  }
> > >  
> > > _
> > > -
> > > To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> > > the body of a message to majordomo@vger.kernel.org
> > > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > > 
> 
> -
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

  reply	other threads:[~2007-03-07  8:03 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-02-06  0:09 [patch 04/13] Exit ACPI processor module gracefully if acpi is disabled akpm
2007-02-09  5:47 ` Len Brown
2007-02-09  8:34   ` Thomas Renninger
2007-03-07  8:00     ` Len Brown [this message]
2007-03-08 13:20       ` Thomas Renninger

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=200703070300.55821.lenb@kernel.org \
    --to=lenb@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=cpufreq@lists.linux.org.uk \
    --cc=linux-acpi@vger.kernel.org \
    --cc=trenn@suse.de \
    /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.