Kconfig.buf 761 B

1234567891011121314151617181920212223242526272829
  1. # Kconfig - net stack configuration options
  2. #
  3. # Copyright (c) 2015 Intel Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. if ACTS_NET_BUF
  8. config NET_BUF_USER_DATA_SIZE
  9. int "Size of user_data available in every network buffer"
  10. default 8 if (BT || NET_TCP2) && 64BIT
  11. default 4
  12. range 4 65535 if BT || NET_TCP2
  13. range 0 65535
  14. help
  15. Amount of memory reserved in each network buffer for user data. In
  16. most cases this can be left as the default value.
  17. config NET_BUF_POOL_USAGE
  18. bool "Network buffer pool usage tracking"
  19. help
  20. Enable network buffer pool tracking. This means that:
  21. * amount of free buffers in the pool is remembered
  22. * total size of the pool is calculated
  23. * pool name is stored and can be shown in debugging prints
  24. endif