Kconfig 584 B

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