From: Jeffrey Altman Date: Tue, 2 Sep 2008 22:09:13 +0000 (+0000) Subject: DEVEL15-windows-afsd-init-20080902 X-Git-Tag: openafs-devel-1_5_53~59 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=21e93f71f57a2a2a1a71165a69ed6e6f61c2c8a4;p=packages%2Fo%2Fopenafs.git DEVEL15-windows-afsd-init-20080902 LICENSE MIT report state of "Rx Jumbo" and "RxExtraPackets" more often (cherry picked from commit 21abc0e0b51cd3fd014b06b187d497996058ffe4) --- diff --git a/src/WINNT/afsd/afsd_init.c b/src/WINNT/afsd/afsd_init.c index 7ac330e31..8afab3dd6 100644 --- a/src/WINNT/afsd/afsd_init.c +++ b/src/WINNT/afsd/afsd_init.c @@ -1067,6 +1067,8 @@ int afsd_InitCM(char **reasonP) } if (rx_nojumbo) afsi_log("RX Jumbograms are disabled"); + else + afsi_log("RX Jumbograms are enabled"); dummyLen = sizeof(rx_extraPackets); code = RegQueryValueEx(parmKey, "RxExtraPackets", NULL, NULL, @@ -1083,7 +1085,7 @@ int afsd_InitCM(char **reasonP) if (code != ERROR_SUCCESS) { rx_udpbufsize = 256*1024; } - if (rx_udpbufsize) + if (rx_udpbufsize != -1) afsi_log("RX udpbufsize is %d", rx_udpbufsize); dummyLen = sizeof(rx_mtu);