1. 26 8月, 2005 4 次提交
  2. 25 8月, 2005 3 次提交
  3. 16 8月, 2005 1 次提交
  4. 15 8月, 2005 1 次提交
  5. 12 8月, 2005 3 次提交
  6. 05 8月, 2005 6 次提交
  7. 04 8月, 2005 5 次提交
  8. 03 8月, 2005 3 次提交
  9. 02 8月, 2005 1 次提交
    • L
      Revert ACPI interrupt resume changes · 697a2d63
      Linus Torvalds 提交于
      If there are devices that use interrupts over a suspend event, ACPI must
      restore the PCI interrupt links on resume.  Anything else breaks any
      device that hasn't been converted to the new (dubious) PM rules.
      
      Drivers that need the irq free/re-aquire sequence can be done one by one
      independently of this one.
      697a2d63
  10. 30 7月, 2005 7 次提交
  11. 29 7月, 2005 2 次提交
  12. 27 7月, 2005 2 次提交
    • E
      [PATCH] acpi: Don't call acpi_sleep_prepare from acpi_power_off · b35c67a4
      Eric W. Biederman 提交于
      Now that all of the code paths that call acpi_power_off
      have been modified to call either call kernel_power_off
      (which calls apci_sleep_prepare by way of acpi_shutdown)
      or to call acpi_sleep_prepare directly it is redundant to call
      acpi_sleep_prepare from acpi_power_off.
      
      So simplify the code and simply don't call acpi_sleep_prepare.
      
      In addition there is a little error handling done so if we
      can't register the acpi class we don't hook pm_power_off.
      
      I think I have done the right thing with the CONFIG_PM define
      but I'm not certain.  Can this code even be compiled if
      CONFIG_PM is false?
      Signed-off-by: NEric W. Biederman <ebiederm@xmission.com>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      b35c67a4
    • E
      [PATCH] acpi_power_off: Don't switch to the boot cpu · 6660316c
      Eric W. Biederman 提交于
      machine_power_off on i386 and x86_64 now switch to the
      boot cpu out of paranoia and because the MP Specification indicates it
      is a good idea on reboot, so for those architectures it is a noop.
      I can't see anything in the acpi spec that requires you to be on
      the boot cpu to power off the system, so this should not be an issue
      for ia64.  In addition ia64 has the altix a massive multi-node
      system where switching to the boot cpu sounds insane as we may
      hot removed the boot cpu.
      Signed-off-by: NEric W. Biederman <ebiederm@xmission.com>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      6660316c
  13. 23 7月, 2005 1 次提交
  14. 14 7月, 2005 1 次提交
    • R
      ACPICA 20050708 from Bob Moore <robert.moore@intel.com> · f9f4601f
      Robert Moore 提交于
      The use of the CPU stack in the debug version of the
      subsystem has been considerably reduced.  Previously, a
      debug structure was declared in every function that used
      the debug macros.  This structure has been removed in
      favor of declaring the individual elements as parameters
      to the debug functions.  This reduces the cumulative stack
      use during nested execution of ACPI function calls at the
      cost of a small increase in the code size of the debug
      version of the subsystem.  With assistance from Alexey
      Starikovskiy and Len Brown.
      
      Added the ACPI_GET_FUNCTION_NAME macro to enable the
      compiler-dependent headers to define a macro that will
      return the current function name at runtime (such as
      __FUNCTION__ or _func_, etc.) The function name is used
      by the debug trace output.  If ACPI_GET_FUNCTION_NAME
      is not defined in the compiler-dependent header, the
      function name is saved on the CPU stack (one pointer per
      function.) This mechanism is used because apparently there
      exists no standard ANSI-C defined macro that that returns
      the function name.
      
      Alexey Starikovskiy redesigned and reimplemented the
      "Owner ID" mechanism used to track namespace objects
      created/deleted by ACPI tables and control method
      execution.  A bitmap is now used to allocate and free the
      IDs, thus solving the wraparound problem present in the
      previous implementation.  The size of the namespace node
      descriptor was reduced by 2 bytes as a result.
      
      Removed the UINT32_BIT and UINT16_BIT types that were used
      for the bitfield flag definitions within the headers for
      the predefined ACPI tables.  These have been replaced by
      UINT8_BIT in order to increase the code portability of
      the subsystem.  If the use of UINT8 remains a problem,
      we may be forced to eliminate bitfields entirely because
      of a lack of portability.
      
      Alexey Starikovksiy enhanced the performance of
      acpi_ut_update_object_reference.  This is a frequently used
      function and this improvement increases the performance
      of the entire subsystem.
      
      Alexey Starikovskiy fixed several possible memory leaks
      and the inverse - premature object deletion.
      Signed-off-by: NLen Brown <len.brown@intel.com>
      f9f4601f