Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menuconfig RAS
  3. bool "Reliability, Availability and Serviceability (RAS) features"
  4. help
  5. Reliability, availability and serviceability (RAS) is a computer
  6. hardware engineering term. Computers designed with higher levels
  7. of RAS have a multitude of features that protect data integrity
  8. and help them stay available for long periods of time without
  9. failure.
  10. Reliability can be defined as the probability that the system will
  11. produce correct outputs up to some given time. Reliability is
  12. enhanced by features that help to avoid, detect and repair hardware
  13. faults.
  14. Availability is the probability a system is operational at a given
  15. time, i.e. the amount of time a device is actually operating as the
  16. percentage of total time it should be operating.
  17. Serviceability or maintainability is the simplicity and speed with
  18. which a system can be repaired or maintained; if the time to repair
  19. a failed system increases, then availability will decrease.
  20. Note that Reliability and Availability are distinct concepts:
  21. Reliability is a measure of the ability of a system to function
  22. correctly, including avoiding data corruption, whereas Availability
  23. measures how often it is available for use, even though it may not
  24. be functioning correctly. For example, a server may run forever and
  25. so have ideal availability, but may be unreliable, with frequent
  26. data corruption.
  27. if RAS
  28. source "arch/x86/ras/Kconfig"
  29. endif