1621688081.aoetools-36-12-gc80b1be.aoe-sancheck-raise-the-number-of-interfaces-to-probe-to-32-and-document-the-limit.patch 1.2 KB

12345678910111213141516171819202122232425262728
  1. Subject: Aoe-sancheck: Raise the number of interfaces to probe to 32, and document the limit
  2. Origin: aoetools-36-12-gc80b1be <https://github.com/OpenAoE/aoetools/commit/aoetools-36-12-gc80b1be>
  3. Upstream-Author: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  4. Date: Sat May 22 14:54:41 2021 +0200
  5. Forwarded: not-needed (cherry-picked)
  6. --- a/aoe-sancheck.8
  7. +++ b/aoe-sancheck.8
  8. @@ -53,6 +53,8 @@
  9. This check detects the situation where a local interface is configured for jumbo frames and the AoE device is capable of jumbo frames, but some aspect of the network is incapable of passing frames that size, for example, a misconfigured switch. \fIAoe-sancheck\fP reports the maximum payload size the path is capable of if less than the configured payload size.
  10. .SH BUGS
  11. The program may sometimes display inconsistent results between runs showing that a path is capable of a smaller frame size than it actually is. If you see this behavior, please email one of the authors with your verbose output.
  12. +.PP
  13. +The program probes only the first 32 ethernet interfaces found in the system.
  14. .SH "SEE ALSO"
  15. .IR aoeping (8),
  16. .IR aoetools (8)
  17. --- a/aoe-sancheck.c
  18. +++ b/aoe-sancheck.c
  19. @@ -103,7 +103,7 @@
  20. };
  21. enum {
  22. - Neth= 16,
  23. + Neth= 32,
  24. Nstack= 16*1024,
  25. Nws= 5,