1
0

0002-aoe-sancheck-Raise-the-number-of-interfaces-to-probe.patch 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. From c80b1bedbbcb068aab8fe66d68be433dc3a6c333 Mon Sep 17 00:00:00 2001
  2. From: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  3. Date: Sat, 22 May 2021 14:54:41 +0200
  4. Subject: [PATCH 2/2] aoe-sancheck: Raise the number of interfaces to probe to
  5. 32, and document the limit
  6. ---
  7. aoe-sancheck.8 | 2 ++
  8. aoe-sancheck.c | 2 +-
  9. 2 files changed, 3 insertions(+), 1 deletion(-)
  10. --- a/aoe-sancheck.8
  11. +++ b/aoe-sancheck.8
  12. @@ -53,6 +53,8 @@
  13. 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.
  14. .SH BUGS
  15. 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.
  16. +.PP
  17. +The program probes only the first 32 ethernet interfaces found in the system.
  18. .SH "SEE ALSO"
  19. .IR aoeping (8),
  20. .IR aoetools (8)
  21. --- a/aoe-sancheck.c
  22. +++ b/aoe-sancheck.c
  23. @@ -103,7 +103,7 @@
  24. };
  25. enum {
  26. - Neth= 16,
  27. + Neth= 32,
  28. Nstack= 16*1024,
  29. Nws= 5,