1. 14 5月, 2018 1 次提交
  2. 12 5月, 2018 1 次提交
  3. 26 3月, 2018 1 次提交
  4. 15 3月, 2018 1 次提交
  5. 27 2月, 2018 1 次提交
  6. 27 11月, 2017 1 次提交
  7. 27 4月, 2017 1 次提交
  8. 10 4月, 2017 2 次提交
  9. 27 3月, 2017 1 次提交
  10. 23 3月, 2017 1 次提交
  11. 16 3月, 2017 1 次提交
  12. 01 9月, 2016 1 次提交
  13. 22 8月, 2016 1 次提交
  14. 10 8月, 2016 1 次提交
  15. 08 8月, 2016 4 次提交
  16. 25 6月, 2016 1 次提交
  17. 29 3月, 2016 1 次提交
  18. 11 2月, 2016 1 次提交
  19. 13 8月, 2015 1 次提交
  20. 31 5月, 2015 1 次提交
  21. 29 5月, 2015 1 次提交
  22. 28 5月, 2015 1 次提交
    • B
      EDAC: Cleanup atomic_scrub mess · b01aec9b
      Borislav Petkov 提交于
      So first of all, this atomic_scrub() function's naming is bad. It looks
      like an atomic_t helper. Change it to edac_atomic_scrub().
      
      The bigger problem is that this function is arch-specific and every new
      arch which doesn't necessarily need that functionality still needs to
      define it, otherwise EDAC doesn't compile.
      
      So instead of doing that and including arch-specific headers, have each
      arch define an EDAC_ATOMIC_SCRUB symbol which can be used in edac_mc.c
      for ifdeffery. Much cleaner.
      
      And we already are doing this with another symbol - EDAC_SUPPORT. This
      is also much cleaner than having CONFIG_EDAC enumerate all the arches
      which need/have EDAC support and drivers.
      
      This way I can kill the useless edac.h header in tile too.
      Acked-by: NRalf Baechle <ralf@linux-mips.org>
      Acked-by: NMichael Ellerman <mpe@ellerman.id.au>
      Acked-by: NChris Metcalf <cmetcalf@ezchip.com>
      Acked-by: NIngo Molnar <mingo@kernel.org>
      Acked-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Doug Thompson <dougthompson@xmission.com>
      Cc: linux-arm-kernel@lists.infradead.org
      Cc: linux-edac@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Cc: linux-mips@linux-mips.org
      Cc: linuxppc-dev@lists.ozlabs.org
      Cc: "Maciej W. Rozycki" <macro@codesourcery.com>
      Cc: Markos Chandras <markos.chandras@imgtec.com>
      Cc: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: "Steven J. Hill" <Steven.Hill@imgtec.com>
      Cc: x86@kernel.org
      Signed-off-by: NBorislav Petkov <bp@suse.de>
      b01aec9b
  23. 03 5月, 2015 1 次提交
  24. 07 1月, 2015 1 次提交
  25. 25 11月, 2014 1 次提交
  26. 05 11月, 2014 1 次提交
  27. 05 9月, 2014 1 次提交
  28. 04 7月, 2014 1 次提交
  29. 27 6月, 2014 2 次提交
  30. 24 6月, 2014 1 次提交
  31. 11 6月, 2013 1 次提交
  32. 04 6月, 2013 1 次提交
  33. 26 2月, 2013 1 次提交
    • M
      ghes_edac: Register at EDAC core the BIOS report · 77c5f5d2
      Mauro Carvalho Chehab 提交于
      Register GHES at EDAC MC core, in order to avoid other
      drivers to also handle errors and mangle with error data.
      
      The edac core will warrant that just one driver will be used,
      so the first one to register (BIOS first) will be the one that
      will be reporting the hardware errors.
      
      For now, the EDAC driver does nothing but to register at the
      EDAC core, preventing the hardware-driven mechanism to
      interfere with GHES.
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      77c5f5d2
  34. 18 1月, 2013 1 次提交
  35. 08 1月, 2013 1 次提交
    • B
      EDAC: Fix EDAC Kconfig menu · 54451663
      Borislav Petkov 提交于
      After f65aad41("MIPS: Cavium: Add EDAC support."), when entering
      the "Device Drivers" toplevel menu in menuconfig, the suboptions behind
      EDAC appeared merged with the rest of the device drivers types. This was
      because the menuconfig option EDAC is querying an EDAC_SUPPORT Kconfig
      bool which was defined after the menu definition.
      
      When pushing EDAC_SUPPORT up, before the menu definition, the variable
      is defined earlier and the above menuconfig artifact doesn't happen.
      
      Drop a useless menuconfig comment while at it.
      
      Cc: Ralf Baechle <ralf@linux-mips.org>
      Signed-off-by: NBorislav Petkov <bp@alien8.de>
      54451663