svn commit: r329998 - stable/11/sbin/savecore

2018-02-25 Thread Mike Silbersack
Author: silby Date: Mon Feb 26 02:12:09 2018 New Revision: 329998 URL: https://svnweb.freebsd.org/changeset/base/329998 Log: MFC r329362: Prevent savecore from reading bounds from the current directory. Modified: stable/11/sbin/savecore/savecore.c Directory Properties: stable/11/ (props

svn commit: r329362 - head/sbin/savecore

2018-02-15 Thread Mike Silbersack
Author: silby Date: Fri Feb 16 06:51:39 2018 New Revision: 329362 URL: https://svnweb.freebsd.org/changeset/base/329362 Log: Prevent savecore from reading bounds from the current directory. Rev 244218 removed the requirement that you provide a dump directory when checking if there is a co

svn commit: r266205 - head/sys/netinet

2014-05-15 Thread Mike Silbersack
Author: silby Date: Fri May 16 01:38:38 2014 New Revision: 266205 URL: http://svnweb.freebsd.org/changeset/base/266205 Log: Remove the function tcp_twrecycleable; it has been #if 0'd for eight years. The original concept was to improve the corner case where you run out of ephemeral ports, b

svn commit: r240128 - head/sys/dev/bxe

2012-09-04 Thread Mike Silbersack
Author: silby Date: Wed Sep 5 06:51:28 2012 New Revision: 240128 URL: http://svn.freebsd.org/changeset/base/240128 Log: Only stop the BXE controller if it was first started. Stopping an uninitialized controller can cause IPMI bus errors on some systems. Reviewed by: yongari Obtaine

svn commit: r225069 - head/sys/x86/x86

2011-08-21 Thread Mike Silbersack
Author: silby Date: Mon Aug 22 03:10:29 2011 New Revision: 225069 URL: http://svn.freebsd.org/changeset/base/225069 Log: Disable TSC usage inside SMP VM environments. On my VMware ESXi 4.1 environment with a core i5-2500K, operation in this mode causes timeouts from the mpt driver. Switchi

Re: svn commit: r221346 - head/sys/netinet

2011-06-11 Thread Mike Silbersack
On Fri, 3 Jun 2011, John Baldwin wrote: On Saturday, May 14, 2011 1:07:18 pm Mikolaj Golub wrote: On Sat, 14 May 2011 10:37:51 -0400 John Baldwin wrote: JB> Can you capture a tcpdump (probably easiest to do from the other host)? I replaced the asserts with log statements to make the host n

Re: svn commit: r221346 - head/sys/netinet

2011-06-03 Thread Mike Silbersack
I'm heading out of town this weekend. I can try to look at this on Tuesday, if nobody beats me to it. -Mike On Fri, 3 Jun 2011, John Baldwin wrote: On Saturday, May 14, 2011 1:07:18 pm Mikolaj Golub wrote: On Sat, 14 May 2011 10:37:51 -0400 John Baldwin wrote: JB> Can you capture a tcp

svn commit: r213244 - stable/7/sys/dev/sym

2010-09-27 Thread Mike Silbersack
Author: silby Date: Tue Sep 28 06:08:43 2010 New Revision: 213244 URL: http://svn.freebsd.org/changeset/base/213244 Log: MFC rev 198719: Fix sym driver for 64-bit platforms with > 4GB of ram. Modified: stable/7/sys/dev/sym/sym_hipd.c Directory Properties: stable/7/sys/ (props changed)

svn commit: r197425 - head/usr.bin/netstat

2009-09-22 Thread Mike Silbersack
Author: silby Date: Wed Sep 23 05:32:33 2009 New Revision: 197425 URL: http://svn.freebsd.org/changeset/base/197425 Log: In netstat -x, do not try to print out tcp timer status for udp sockets. Modified: head/usr.bin/netstat/inet.c Modified: head/usr.bin/netstat/inet.c ==

svn commit: r197244 - in head: sys/netinet usr.bin/netstat

2009-09-15 Thread Mike Silbersack
Author: silby Date: Wed Sep 16 05:33:15 2009 New Revision: 197244 URL: http://svn.freebsd.org/changeset/base/197244 Log: Add the ability to see TCP timers via netstat -x. This can be a useful feature when you have a seemingly stuck socket and want to figure out why it has not been closed ye

svn commit: r195430 - head/sys/kern

2009-07-07 Thread Mike Silbersack
Author: silby Date: Wed Jul 8 01:09:12 2009 New Revision: 195430 URL: http://svn.freebsd.org/changeset/base/195430 Log: Increase HZ_VM from 10 to 100. While 10 hz saves cpu time under VM environments, it's too slow for FreeBSD to work properly. For example, ping at 10hz pings about every

Re: svn commit: r190872 - head/sys/dev/e1000

2009-04-13 Thread Mike Silbersack
On Sun, 12 Apr 2009, Jack Vogel wrote: There is quite a bit of shared code changes to support alternate mac addressing, if you look at the diffs you'll notice in attach I inserted a reset, and then also moved where hardware init is called, this is because the shared code now requires RAR(0) to

Re: svn commit: r190872 - head/sys/dev/e1000

2009-04-12 Thread Mike Silbersack
To followup, I csup'd to this date: date=2009.04.08.00.00.00 and the resulting kernel works perfectly with the ESX virtual e1000. What can I do to help debug this problem? Mike "Silby" Silbersack On Mon, 13 Apr 2009, Mike Silbersack wrote: Jack, either this or some other r

Re: svn commit: r190872 - head/sys/dev/e1000

2009-04-12 Thread Mike Silbersack
Jack, either this or some other recent change to the em driver caused it to stop working correctly on the e1000 virtual device inside VMware ESX. Unfortunately, I have not updated my 8.x VMs recently, so I don't know when this broke. I got the message about an invalid MAC address. I modifie

Re: svn commit: r190299 - stable/7/sys/kern

2009-03-22 Thread Mike Silbersack
On Sun, 22 Mar 2009, Robert Watson wrote: On Sun, 22 Mar 2009, Mike Silbersack wrote: Fix unp_gc so that it recognizes file descriptors that are currently in the process of being passed between processes as alive and does not try to garbage collect them. The full description of the

svn commit: r190299 - stable/7/sys/kern

2009-03-22 Thread Mike Silbersack
different way. The test program in the PR passes on 8-current with flying colors. PR: 112554 Submitted by: Spencer Minear Reviewed by: Mike Silbersack Obtained from:Secure Computing Corp MFC after:4 weeks Modified: stable/7/sys/kern/uipc_usrreq.c Modified

svn commit: r187356 - in stable/7/sys: . contrib/pf dev/acpica dev/ath/ath_hal dev/cxgb

2009-01-16 Thread Mike Silbersack
Author: silby Date: Sat Jan 17 06:55:28 2009 New Revision: 187356 URL: http://svn.freebsd.org/changeset/base/187356 Log: Merge r186031 - quick change to r186026 Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/acpica/acpi_smbat.c stab

svn commit: r187355 - in stable/7/sys: . contrib/pf dev/acpica dev/ath/ath_hal dev/cxgb

2009-01-16 Thread Mike Silbersack
Author: silby Date: Sat Jan 17 06:53:57 2009 New Revision: 187355 URL: http://svn.freebsd.org/changeset/base/187355 Log: Merge r186026 - add the debug.batt.batt_sleep_ms sysctl. Modified: stable/7/sys/ (props changed) stable/7/sys/contrib/pf/ (props changed) stable/7/sys/dev/acpica/ac

svn commit: r186031 - head/sys/dev/acpica

2008-12-12 Thread Mike Silbersack
Author: silby Date: Sat Dec 13 07:45:48 2008 New Revision: 186031 URL: http://svn.freebsd.org/changeset/base/186031 Log: Quick change to r186026. One of the conditionals was: if (batt_sleep_ms) AcpiOsSleep(1); where the rest are all: if (batt_sleep_ms) AcpiOsSleep

svn commit: r186026 - head/sys/dev/acpica

2008-12-12 Thread Mike Silbersack
Author: silby Date: Sat Dec 13 06:04:34 2008 New Revision: 186026 URL: http://svn.freebsd.org/changeset/base/186026 Log: Add the sysctl debug.acpi.batt.batt_sleep_ms. On some laptops with smart batteries, enabling battery monitoring software causes keystrokes from atkbd to be lost. This