1. 30 3月, 2012 2 次提交
  2. 29 3月, 2012 1 次提交
  3. 20 3月, 2012 1 次提交
  4. 17 3月, 2012 1 次提交
  5. 03 2月, 2012 1 次提交
  6. 20 1月, 2012 1 次提交
  7. 16 1月, 2012 1 次提交
  8. 07 1月, 2012 1 次提交
  9. 06 1月, 2012 4 次提交
  10. 27 12月, 2011 1 次提交
  11. 12 12月, 2011 1 次提交
  12. 10 12月, 2011 1 次提交
  13. 08 12月, 2011 1 次提交
  14. 03 11月, 2011 1 次提交
  15. 04 10月, 2011 1 次提交
  16. 24 9月, 2011 1 次提交
  17. 25 8月, 2011 1 次提交
  18. 06 8月, 2011 1 次提交
    • L
      acer-wmi: schedule threeg and interface sysfs for feature removal · 7b8aca65
      Lee, Chun-Yi 提交于
      we can now autodetect internal 3G device and already have the threeg
      rfkill device. So, we plan to remove threeg sysfs support for it's no
      longer necessary.
      
      We also plan to remove interface sysfs file that exposed which ACPI-WMI
      interface that was used by acer-wmi driver. It will replaced by information
      log when acer-wmi initial.
      
      We keep it around for userspace compatibility reasons, schedule removal
      in 2012.
      
      Cc: Carlos Corbacho <carlos@strangeworlds.co.uk>
      Cc: Matthew Garrett <mjg@redhat.com>
      Cc: Dmitry Torokhov <dtor@mail.ru>
      Cc: Corentin Chary <corentincj@iksaif.net>
      Acked-by: NThomas Renninger <trenn@suse.de>
      Signed-off-by: NLee, Chun-Yi <jlee@novell.com>
      Signed-off-by: NMatthew Garrett <mjg@redhat.com>
      7b8aca65
  19. 03 8月, 2011 1 次提交
  20. 28 7月, 2011 1 次提交
  21. 27 7月, 2011 1 次提交
  22. 26 7月, 2011 2 次提交
  23. 16 7月, 2011 1 次提交
    • N
      nfsd: Remove deprecated nfsctl system call and related code. · 49b28684
      NeilBrown 提交于
      As promised in feature-removal-schedule.txt it is time to
      remove the nfsctl system call.
      
      Userspace has perferred to not use this call throughout 2.6 and it has been
      excluded in the default configuration since 2.6.36 (9 months ago).
      
      So this patch removes all the code that was being compiled out.
      
      There are still references to sys_nfsctl in various arch systemcall tables
      and related code.  These should be cleaned out too, probably in the next
      merge window.
      Signed-off-by: NNeilBrown <neilb@suse.de>
      Signed-off-by: NJ. Bruce Fields <bfields@redhat.com>
      49b28684
  24. 08 7月, 2011 1 次提交
  25. 07 7月, 2011 1 次提交
  26. 29 6月, 2011 1 次提交
  27. 27 6月, 2011 1 次提交
  28. 16 6月, 2011 2 次提交
  29. 29 5月, 2011 4 次提交
    • L
      x86 idle: deprecate mwait_idle() and "idle=mwait" cmdline param · 5d4c47e0
      Len Brown 提交于
      mwait_idle() is a C1-only idle loop intended to be more efficient
      than HLT on SMP hardware that supports it.
      
      But mwait_idle() has been replaced by the more general
      mwait_idle_with_hints(), which handles both C1 and deeper C-states.
      ACPI uses only mwait_idle_with_hints(), and never uses mwait_idle().
      
      Deprecate mwait_idle() and the "idle=mwait" cmdline param
      to simplify the x86 idle code.
      
      After this change, kernels configured with
      (!CONFIG_ACPI=n && !CONFIG_INTEL_IDLE=n) when run on hardware
      that support MWAIT will simply use HLT.  If MWAIT is desired
      on those systems, cpuidle and the cpuidle drivers above
      can be used.
      
      cc: x86@kernel.org
      cc: stable@kernel.org # .39.x
      Signed-off-by: NLen Brown <len.brown@intel.com>
      5d4c47e0
    • L
      x86 idle: deprecate "no-hlt" cmdline param · cdaab4a0
      Len Brown 提交于
      We'd rather that modern machines not check if HLT works on
      every entry into idle, for the benefit of machines that had
      marginal electricals 15-years ago.  If those machines are still running
      the upstream kernel, they can use "idle=poll".  The only difference
      will be that they'll now invoke HLT in machine_hlt().
      
      cc: x86@kernel.org # .39.x
      Signed-off-by: NLen Brown <len.brown@intel.com>
      cdaab4a0
    • L
      x86 idle APM: deprecate CONFIG_APM_CPU_IDLE · 99c63221
      Len Brown 提交于
      We don't want to export the pm_idle function pointer to modules.
      Currently CONFIG_APM_CPU_IDLE w/ CONFIG_APM_MODULE forces us to.
      
      CONFIG_APM_CPU_IDLE is of dubious value, it runs only on 32-bit
      uniprocessor laptops that are over 10 years old.  It calls into
      the BIOS during idle, and is known to cause a number of machines
      to fail.
      
      Removing CONFIG_APM_CPU_IDLE and will allow us to stop exporting
      pm_idle.  Any systems that were calling into the APM BIOS
      at run-time will simply use HLT instead.
      
      cc: x86@kernel.org
      cc: Jiri Kosina <jkosina@suse.cz>
      cc: stable@kernel.org # .39.x
      Signed-off-by: NLen Brown <len.brown@intel.com>
      99c63221
    • L
      x86 idle floppy: deprecate disable_hlt() · 3b70b2e5
      Len Brown 提交于
      Plan to remove floppy_disable_hlt in 2012, an ancient
      workaround with comments that it should be removed.
      
      This allows us to remove clutter and a run-time branch
      from the idle code.
      
      WARN_ONCE() on invocation until it is removed.
      
      cc: x86@kernel.org
      cc: stable@kernel.org # .39.x
      Signed-off-by: NLen Brown <len.brown@intel.com>
      3b70b2e5
  30. 24 5月, 2011 1 次提交
  31. 20 5月, 2011 1 次提交