From f18aa4e42332c1103914c79b343f6899462087a9 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 21 Aug 2019 13:17:01 -0700 Subject: [PATCH] Tuning net.inet.udp.maxdgram on mac OS is no longer required (#5585) --- scripts/tune-system.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/tune-system.sh b/scripts/tune-system.sh index df9ff7d005..3c12883533 100644 --- a/scripts/tune-system.sh +++ b/scripts/tune-system.sh @@ -40,11 +40,6 @@ Linux) sysctl_write net.core.wmem_max 161061273 sysctl_write net.core.wmem_default 161061273 ;; - -Darwin) - # Adjusting maxdgram to allow for large UDP packets, see BLOB_SIZE in core/src/packet.rs - sysctl_write net.inet.udp.maxdgram 65535 - ;; *) ;; esac