Kconfig 584 B

12345678910111213141516171819202122232425262728
  1. menu "AMD Library routines"
  2. #
  3. # Closed hash table
  4. #
  5. config CHASH
  6. tristate
  7. default DRM_AMDGPU
  8. help
  9. Statically sized closed hash table implementation with low
  10. memory and CPU overhead.
  11. config CHASH_STATS
  12. bool "Closed hash table performance statistics"
  13. depends on CHASH
  14. default n
  15. help
  16. Enable collection of performance statistics for closed hash tables.
  17. config CHASH_SELFTEST
  18. bool "Closed hash table self test"
  19. depends on CHASH
  20. default n
  21. help
  22. Runs a selftest during module load. Several module parameters
  23. are available to modify the behaviour of the test.
  24. endmenu