Author: trasz
Date: Tue Apr 17 09:05:46 2018
New Revision: 332642
URL: https://svnweb.freebsd.org/changeset/base/332642
Log:
Don't put multiple names on a single .Nm line. This fixes apropos(1)
output, from this:
strnlen, strlen, strlen,(3) - find length of string
On Tue, Apr 17, 2018 at 12:02:04AM +, Rick Macklem wrote:
> I wrote:
> >Julian Elischer wrote:
> >>On 16/4/18 6:56 pm, Konstantin Belousov wrote:
> >[stuff snipped]
> +ngroups =3D XU_NGROUPS + 1;
> >>> Why XU_NGROUPS and not the value of sysctl("kern.ngroups") ?
> >>val
Author: gallatin
Date: Tue Apr 17 12:54:58 2018
New Revision: 332645
URL: https://svnweb.freebsd.org/changeset/base/332645
Log:
Make lagg creation more fault tolerant
- Warn, don't exit, when SIOCSLAGGPORT returns an error.
When we exit with an error during lagg creation, a single
fa
On 17/04/2018 10:54 pm, Andrew Gallatin wrote:
> Author: gallatin
> Date: Tue Apr 17 12:54:58 2018
> New Revision: 332645
> URL: https://svnweb.freebsd.org/changeset/base/332645
>
> Log:
> Make lagg creation more fault tolerant
>
> - Warn, don't exit, when SIOCSLAGGPORT returns an error.
>
Author: ram
Date: Tue Apr 17 15:29:32 2018
New Revision: 332646
URL: https://svnweb.freebsd.org/changeset/base/332646
Log:
Moved opts-stack.h include before all other includes.
PR: 227446
Approved by: ken
MFC after: 3 days
Modified:
head/sys/dev/ocs_fc/ocs_os.c
head/sys/dev/ocs_fc/
Thanks Oliver, For pointing the issue. Checked in the change.
-Ram
On Sat, Apr 14, 2018 at 3:32 AM, Oliver Pinter <
oliver.pin...@hardenedbsd.org> wrote:
>
>
> On Friday, April 13, 2018, Ram Kishore Vegesna wrote:
>
>> Author: ram
>> Date: Fri Apr 13 13:31:20 2018
>> New Revision: 332471
>> URL
Author: imp
Date: Tue Apr 17 15:44:05 2018
New Revision: 332648
URL: https://svnweb.freebsd.org/changeset/base/332648
Log:
Restore db_radix on parse error, otherwise we'll silently change it to
10 on a botched trace command.
Modified:
head/sys/ddb/db_command.c
Modified: head/sys/ddb/db_com
On 04/17/18 09:47, Kubilay Kocak wrote:
Log:
Make lagg creation more fault tolerant
<...>
MFC please?
<..>
Hmm.. I intentionally did not mark it for MFC, for 2 reasons. I don't
run -stable, and I hate to MFC something when I haven't run it. And
I'm also worried because it changes
Author: emaste
Date: Tue Apr 17 16:21:23 2018
New Revision: 332649
URL: https://svnweb.freebsd.org/changeset/base/332649
Log:
lld: add a __FreeBSD_version-style identifier to version
This will faciliate a WITH_SYSTEM_LINKER option.
Reviewed by: dim
MFC after:1 week
Sponsored b
Author: brooks
Date: Tue Apr 17 16:36:53 2018
New Revision: 332650
URL: https://svnweb.freebsd.org/changeset/base/332650
Log:
Stop using fuswintr() and suswintr() in the profiler.
Always take the AST path rather than calling MD functions which are
often implemented as always failing. The
Author: imp
Date: Tue Apr 17 16:46:01 2018
New Revision: 332651
URL: https://svnweb.freebsd.org/changeset/base/332651
Log:
Add PNP info to the bce driver.
Submitted by: Lakhan Shiva Kamireddy
Pull Request: https://github.com/freebsd/freebsd/pull/136
Modified:
head/sys/dev/bce/if_bce.c
Author: imp
Date: Tue Apr 17 16:46:08 2018
New Revision: 332652
URL: https://svnweb.freebsd.org/changeset/base/332652
Log:
Add PNP info to the PCI attahement of the puc driver.
Adjust sys/conf/files and sys/modules/puc/Makefile to omit
pucdata.c now tht it's included by puc_pci.c.
Su
Author: gallatin
Date: Tue Apr 17 16:51:27 2018
New Revision: 332653
URL: https://svnweb.freebsd.org/changeset/base/332653
Log:
Restore SIOCGI2C functionality to ixgbe
When ixgbe was converted to iflib, it lost the SIOCGI2C support
that allows ifconfig to print SFP state, optical light le
Author: brooks
Date: Tue Apr 17 17:20:04 2018
New Revision: 332654
URL: https://svnweb.freebsd.org/changeset/base/332654
Log:
Remove unused implementations of copyoutstr().
Also remove the commented out documentation. The documentation arrived
with the import of the copy.9 manpage. I su
Author: cem
Date: Tue Apr 17 17:23:47 2018
New Revision: 332655
URL: https://svnweb.freebsd.org/changeset/base/332655
Log:
libmd: Remove trailing whitespace from mdXhl.c
No functional change.
Reported by: me, in a CR from three years ago today
Sponsored by: Dell EMC Isilon
Modified
:47 2018(r332655)
+++ head/ObsoleteFiles.inc Tue Apr 17 18:04:28 2018(r332656)
@@ -38,6 +38,9 @@
# xargs -n1 | sort | uniq -d;
# done
+# 20180417: remove fuswintr and suswintr
+OLD_FILES+=usr/share/man/man9/fuswintr.9.gz
+OLD_FILES+=usr/share/man/man9/suswintr.9.gz
Author: jhb
Date: Tue Apr 17 18:07:40 2018
New Revision: 332657
URL: https://svnweb.freebsd.org/changeset/base/332657
Log:
Properly do a deep copy of the ioctls capability array for fget_cap().
fget_cap() tries to do a cheaper snapshot of a file descriptor without
holding the file descrip
On Tuesday, April 17, 2018 04:46:09 PM Warner Losh wrote:
> Author: imp
> Date: Tue Apr 17 16:46:08 2018
> New Revision: 332652
> URL: https://svnweb.freebsd.org/changeset/base/332652
>
> Log:
> Add PNP info to the PCI attahement of the puc driver.
>
> Adjust sys/conf/files and sys/modules/
On Tue, Apr 17, 2018 at 11:20 AM, John Baldwin wrote:
> On Tuesday, April 17, 2018 04:46:09 PM Warner Losh wrote:
> > Author: imp
> > Date: Tue Apr 17 16:46:08 2018
> > New Revision: 332652
> > URL: https://svnweb.freebsd.org/changeset/base/332652
> >
> > Log:
> > Add PNP info to the PCI attahe
Author: markj
Date: Tue Apr 17 18:49:17 2018
New Revision: 332658
URL: https://svnweb.freebsd.org/changeset/base/332658
Log:
Ensure that m and skip_m belong to the same object.
Pages allocated from a given reservation may belong to different
objects. It is therefore possible for vm_page_p
Author: trasz
Date: Tue Apr 17 19:39:47 2018
New Revision: 332659
URL: https://svnweb.freebsd.org/changeset/base/332659
Log:
Make it possible to pass the ugenX.Y to usbconfig(8) without using "-d",
eg "usbconfig ugen1.2 dump_all_desc".
Reviewed by: hselasky@
MFC after:2 weeks
Spo
Author: brooks
Date: Tue Apr 17 22:30:00 2018
New Revision: 332660
URL: https://svnweb.freebsd.org/changeset/base/332660
Log:
Remove references to fs_nofault_intr_begin/end.
These should have removed in r332656.
Reported by: mjg, lidl
Modified:
head/sys/sparc64/sparc64/trap.c
Modi
Author: benno
Date: Tue Apr 17 22:33:41 2018
New Revision: 332661
URL: https://svnweb.freebsd.org/changeset/base/332661
Log:
Generate hybrid ISO images for amd64.
This keeps the existing El Torito entries for BIOS and UEFI boot code and
adds a GPT in the ISO image's System Area containing
Author: allanjude
Date: Wed Apr 18 02:25:03 2018
New Revision: 332662
URL: https://svnweb.freebsd.org/changeset/base/332662
Log:
Make `iostat -xC` print CPU information on its own line
Requested by: mahrens
Reviewed by: kenm (maintainer), mahrens
MFC after:1 week
Relnotes: ye
On 17/4/18 8:32 pm, Konstantin Belousov wrote:
On Tue, Apr 17, 2018 at 12:02:04AM +, Rick Macklem wrote:
I wrote:
Julian Elischer wrote:
On 16/4/18 6:56 pm, Konstantin Belousov wrote:
[stuff snipped]
+ngroups =3D XU_NGROUPS + 1;
Why XU_NGROUPS and not the value of sy
Author: cperciva
Date: Wed Apr 18 05:58:27 2018
New Revision: 332663
URL: https://svnweb.freebsd.org/changeset/base/332663
Log:
Move debug.{trace,debugger}_on_panic and kern.panic_reboot_wait_time in
EC2 instances from sysctl.conf to loader.conf; these can all be set as
loader tunables, and
26 matches
Mail list logo