1. 08 7月, 2014 1 次提交
    • L
      ACPICA: Utilities: Introduce acpi_log_error() to improve portability · 2e70da4c
      Lv Zheng 提交于
      Invocations like fprintf(stderr) and perror() are not portable, this patch
      introduces acpi_log_error() as a replacement, it is implemented using new
      portable API - acpi_ut_file_vprintf().
      
      Note that though acpi_os_initialize() need to be invoked prior than using
      this new API, since no users are introduced in this patch, such invocations
      are not added for applications that link utprint.c in this patch. Futher
      patches that introduce users of acpi_log_error() should take care of this.
      
      This patch is only useful for ACPICA applications, most of which are not
      shipped in the Linux kernel.
      
      Note that follow-up commits will update acpidump to use this new API to
      improve portability. Lv Zheng.
      Signed-off-by: NLv Zheng <lv.zheng@intel.com>
      Signed-off-by: NBob Moore <robert.moore@intel.com>
      Signed-off-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
      2e70da4c
  2. 11 2月, 2014 1 次提交
  3. 08 1月, 2014 1 次提交
  4. 21 11月, 2013 1 次提交
  5. 31 10月, 2013 1 次提交
  6. 24 9月, 2013 1 次提交
  7. 16 6月, 2013 1 次提交
  8. 25 1月, 2013 1 次提交
  9. 10 1月, 2013 1 次提交
  10. 15 11月, 2012 4 次提交
  11. 17 7月, 2012 1 次提交
  12. 17 1月, 2012 1 次提交
  13. 01 11月, 2011 1 次提交
  14. 19 1月, 2011 1 次提交
  15. 01 10月, 2010 1 次提交
  16. 23 1月, 2010 2 次提交
  17. 27 5月, 2009 1 次提交
  18. 09 1月, 2009 2 次提交
  19. 31 12月, 2008 1 次提交
  20. 17 7月, 2008 2 次提交
  21. 24 4月, 2008 1 次提交
  22. 23 4月, 2008 3 次提交
  23. 11 3月, 2008 1 次提交
  24. 10 5月, 2007 1 次提交
  25. 03 2月, 2007 3 次提交
  26. 21 10月, 2006 1 次提交
  27. 10 7月, 2006 1 次提交
  28. 14 6月, 2006 1 次提交
    • B
      ACPI: ACPICA 20060331 · 793c2388
      Bob Moore 提交于
      Implemented header file support for the following
      additional ACPI tables: ASF!, BOOT, CPEP, DBGP, MCFG, SPCR,
      SPMI, TCPA, and WDRT. With this support, all current and
      known ACPI tables are now defined in the ACPICA headers and
      are available for use by device drivers and other software.
      
      Implemented support to allow tables that contain ACPI
      names with invalid characters to be loaded. Previously,
      this would cause the table load to fail, but since
      there are several known cases of such tables on
      existing machines, this change was made to enable
      ACPI support for them. Also, this matches the
      behavior of the Microsoft ACPI implementation.
      https://bugzilla.novell.com/show_bug.cgi?id=147621
      
      Fixed a couple regressions introduced during the memory
      optimization in the 20060317 release. The namespace
      node definition required additional reorganization and
      an internal datatype that had been changed to 8-bit was
      restored to 32-bit. (Valery Podrezov)
      
      Fixed a problem where a null pointer passed to
      acpi_ut_delete_generic_state() could be passed through
      to acpi_os_release_object which is unexpected. Such
      null pointers are now trapped and ignored, matching
      the behavior of the previous implementation before the
      deployment of acpi_os_release_object().  (Valery Podrezov,
      Fiodor Suietov)
      
      Fixed a memory mapping leak during the deletion of
      a SystemMemory operation region where a cached memory
      mapping was not deleted. This became a noticeable problem
      for operation regions that are defined within frequently
      used control methods. (Dana Meyers)
      
      Reorganized the ACPI table header files into two main
      files: one for the ACPI tables consumed by the ACPICA core,
      and another for the miscellaneous ACPI tables that are
      consumed by the drivers and other software. The various
      FADT definitions were merged into one common section and
      three different tables (ACPI 1.0, 1.0+, and 2.0)
      Signed-off-by: NBob Moore <robert.moore@intel.com>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      793c2388
  29. 01 4月, 2006 1 次提交
    • B
      ACPI: ACPICA 20060310 · 8313524a
      Bob Moore 提交于
      Tagged all external interfaces to the subsystem with the
      new ACPI_EXPORT_SYMBOL macro. This macro can be defined
      as necessary to assist kernel integration. For Linux,
      the macro resolves to the EXPORT_SYMBOL macro. The default
      definition is NULL.
      
      Added the ACPI_THREAD_ID type for the return value from
      acpi_os_get_thread_id(). This allows the host to define this
      as necessary to simplify kernel integration. The default
      definition is ACPI_NATIVE_UINT.
      
      Valery Podrezov fixed two interpreter problems related
      to error processing, the deletion of objects, and placing
      invalid pointers onto the internal operator result stack.
      http://bugzilla.kernel.org/show_bug.cgi?id=6028
      http://bugzilla.kernel.org/show_bug.cgi?id=6151
      
      Increased the reference count threshold where a warning is
      emitted for large reference counts in order to eliminate
      unnecessary warnings on systems with large namespaces
      (especially 64-bit.) Increased the value from 0x400
      to 0x800.
      
      Due to universal disagreement as to the meaning of the
      'c' in the calloc() function, the ACPI_MEM_CALLOCATE
      macro has been renamed to ACPI_ALLOCATE_ZEROED so that the
      purpose of the interface is 'clear'. ACPI_MEM_ALLOCATE and
      ACPI_MEM_FREE are renamed to ACPI_ALLOCATE and ACPI_FREE.
      Signed-off-by: NBob Moore <robert.moore@intel.com>
      Signed-off-by: NLen Brown <len.brown@intel.com>
      8313524a
  30. 31 3月, 2006 1 次提交