Kconfig 580 B

123456789101112131415161718192021222324252627
  1. # SPDX-License-Identifier: GPL-2.0
  2. config HAVE_GENERIC_VDSO
  3. bool
  4. if HAVE_GENERIC_VDSO
  5. config GENERIC_GETTIMEOFDAY
  6. bool
  7. help
  8. This is a generic implementation of gettimeofday vdso.
  9. Each architecture that enables this feature has to
  10. provide the fallback implementation.
  11. config GENERIC_VDSO_OVERFLOW_PROTECT
  12. bool
  13. help
  14. Select to add multiplication overflow protection to the VDSO
  15. time getter functions for the price of an extra conditional
  16. in the hotpath.
  17. config VDSO_GETRANDOM
  18. bool
  19. help
  20. Selected by architectures that support vDSO getrandom().
  21. endif