Kconfig.debug 581 B

12345678910111213141516171819202122
  1. menu "Kernel hacking"
  2. config TRACE_IRQFLAGS_SUPPORT
  3. bool
  4. default y
  5. source "lib/Kconfig.debug"
  6. config DEBUG_STRICT_USER_COPY_CHECKS
  7. bool "Strict user copy size checks"
  8. ---help---
  9. Enabling this option turns a certain set of sanity checks for user
  10. copy operations into compile time warnings.
  11. The copy_from_user() etc checks are there to help test if there
  12. are sufficient security checks on the length argument of
  13. the copy operation, by having gcc prove that the argument is
  14. within bounds.
  15. If unsure, or if you run an older (pre 4.4) gcc, say N.
  16. endmenu