git: ifnet: Remove unused functions

2017-06-22 Thread Sepherosa Ziehau
commit c807e2c7bb414ea5cf2bd398db33292f8a5887db Author: Sepherosa Ziehau Date: Thu Jun 22 07:21:30 2017 +0800 ifnet: Remove unused functions Summary of changes: sys/net/if.c | 15 --- sys/net/if_var.h | 6 ++ sys/net/ifq_var.h | 9 - 3 files changed, 2 ins

git: domain: Explicitly setup inet/inet6/route/local domain.

2017-06-22 Thread Sepherosa Ziehau
commit 51e5cc05948d2b3288870dc2a139ce2b5172e5eb Author: Sepherosa Ziehau Date: Thu Jun 22 09:48:08 2017 +0800 domain: Explicitly setup inet/inet6/route/local domain. Summary of changes: sys/kern/uipc_proto.c| 15 +-- sys/net/rtsock.c | 15 +-- sys/neti

git: Update the pciconf(8) database.

2017-06-22 Thread Sascha Wildner
commit 6e108fbbe79db76c390c7b835daf9cdec3427bc3 Author: Sascha Wildner Date: Thu Jun 22 21:49:55 2017 +0200 Update the pciconf(8) database. June 22, 2017 snapshot from http://pciids.sourceforge.net/ Summary of changes: share/misc/pci_vendors | 97

git: libc/gmon: Replace sbrk() with mmap()

2017-06-22 Thread Antonio Huete Jimenez
commit 39f02aea5ce534a709efd332f91005e707475436 Author: Antonio Huete Jimenez Date: Fri Jun 23 01:40:14 2017 +0200 libc/gmon: Replace sbrk() with mmap() - Fixes profiling for C++ programs compiled with lang/gcc5. Taken-from: FreeBSD (svn 288009) Summary of changes: lib/

git: tcp: Cache align ACK queue header.

2017-06-22 Thread Sepherosa Ziehau
commit 7814e3ee50bf27cf0572aa61c0295cccae7584a7 Author: Sepherosa Ziehau Date: Fri Jun 23 02:11:35 2017 +0800 tcp: Cache align ACK queue header. Summary of changes: sys/netinet/tcp_input.c | 2 +- sys/netinet/tcp_subr.c | 12 ++-- sys/netinet/tcp_var.h | 6 -- 3 files ch

git: mxge: Disable flow control by default.

2017-06-22 Thread Sepherosa Ziehau
commit 17039ae798d258295acb0e0b7a75a759d10393d0 Author: Sepherosa Ziehau Date: Fri Jun 23 02:55:49 2017 +0800 mxge: Disable flow control by default. Summary of changes: share/man/man4/mxge.4| 2 +- sys/dev/netif/mxge/if_mxge.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions

git: ix: Disable flow control by default.

2017-06-22 Thread Sepherosa Ziehau
commit c2c5f4f39231334fd886ac4519fe2c72b3904793 Author: Sepherosa Ziehau Date: Fri Jun 23 03:07:29 2017 +0800 ix: Disable flow control by default. Summary of changes: share/man/man4/ix.4 | 2 +- sys/dev/netif/ix/if_ix.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) http:

git: em/emx: Disable flow control by default.

2017-06-22 Thread Sepherosa Ziehau
commit fd291c1a553d0bf1f22be43928a0593cf3ddea00 Author: Sepherosa Ziehau Date: Fri Jun 23 03:11:45 2017 +0800 em/emx: Disable flow control by default. Summary of changes: share/man/man4/em.4| 2 +- sys/dev/netif/em/if_em.c | 2 +- sys/dev/netif/emx/if_emx.c | 2 +- 3 files chan

git: igb: Disable flow control by default.

2017-06-22 Thread Sepherosa Ziehau
commit 9aeb87bb6bc2a2161a1387bd017abf20f40a601d Author: Sepherosa Ziehau Date: Fri Jun 23 03:09:27 2017 +0800 igb: Disable flow control by default. Summary of changes: share/man/man4/igb.4 | 2 +- sys/dev/netif/igb/if_igb.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)

git: tcp: Don't depend on PR_FASTHZ.

2017-06-22 Thread Sepherosa Ziehau
commit dedd847711827936b689f240a2fb7541f6c79f0e Author: Sepherosa Ziehau Date: Fri Jun 23 04:25:58 2017 +0800 tcp: Don't depend on PR_FASTHZ. TCP timers are callout based for more than one decade. Summary of changes: sys/netinet/tcp_timer.h | 2 +- 1 file changed, 1 insertion(+)

git: tcp: Reduce minimum retransmit timeout to 190ms.

2017-06-22 Thread Sepherosa Ziehau
commit 2cd543d53375eb2f2f86d91dc695d4d83ef78625 Author: Sepherosa Ziehau Date: Fri Jun 23 06:06:31 2017 +0800 tcp: Reduce minimum retransmit timeout to 190ms. Increase retransmit timeout slop to ~160ms and reduce TCPTV_MIN to ~30ms. Bring in dillon's comment about TCPTV_MIN r