Re: svn commit: r290482 - head/sys/arm64/conf

2015-11-06 Thread NGie Cooper
On Fri, Nov 6, 2015 at 8:46 PM, Ed Maste wrote: > Author: emaste > Date: Sat Nov 7 04:46:34 2015 > New Revision: 290482 > URL: https://svnweb.freebsd.org/changeset/base/290482 > > Log: > arm64: add igb(4) to GENERIC > > We have em(4) in GENERIC already and so also supporting the related > i

svn commit: r290483 - head/sys/modules

2015-11-06 Thread Ed Maste
Author: emaste Date: Sat Nov 7 04:49:39 2015 New Revision: 290483 URL: https://svnweb.freebsd.org/changeset/base/290483 Log: arm64: build em(4) and igb(4) modules Sponsored by: The FreeBSD Foundation Modified: head/sys/modules/Makefile Modified: head/sys/modules/Makefile ==

svn commit: r290482 - head/sys/arm64/conf

2015-11-06 Thread Ed Maste
Author: emaste Date: Sat Nov 7 04:46:34 2015 New Revision: 290482 URL: https://svnweb.freebsd.org/changeset/base/290482 Log: arm64: add igb(4) to GENERIC We have em(4) in GENERIC already and so also supporting the related igb(4) makes sense. Sponsored by: The FreeBSD Foundation Mod

svn commit: r290481 - head/sys/kern

2015-11-06 Thread Adrian Chadd
Author: adrian Date: Sat Nov 7 04:04:00 2015 New Revision: 290481 URL: https://svnweb.freebsd.org/changeset/base/290481 Log: Add a sched_yield() to work around low memory conditions in the current code. Things seem to get stuck in low memory conditions where no bufs are available, the re

Re: svn commit: r289279 - in head/sys: kern vm

2015-11-06 Thread Adrian Chadd
hiya, Just bringing this to peoples attention again - the same issue (buf exhaustion, stuck in a loop trying to wake things up) exists. I'm going to commit the sched_yield() change with a big comment about why it's here and that it needs further investigation. That way things are stable again en

svn commit: r290480 - head/bin/rm

2015-11-06 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 02:18:19 2015 New Revision: 290480 URL: https://svnweb.freebsd.org/changeset/base/290480 Log: Protecting against rm -rf / is now POSIXLY_CORRECT per posix 1003.1 edition 2013. No need anymore to disable the protection if one set the POXILY_CORRECT environment va

svn commit: r290479 - head/sys/sys

2015-11-06 Thread Conrad E. Meyer
Author: cem Date: Sat Nov 7 02:03:06 2015 New Revision: 290479 URL: https://svnweb.freebsd.org/changeset/base/290479 Log: Final follow-up to r290475: Bump __FreeBSD_version Because we changed sysctl_add_oid(9) ABI, which surely breaks ABI compatibility for out-of-tree modules. Spons

svn commit: r290478 - head/usr.bin/soelim

2015-11-06 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 01:58:23 2015 New Revision: 290478 URL: https://svnweb.freebsd.org/changeset/base/290478 Log: Improve soelim(1) manpages Submitted by: Sascha Wildner Modified: head/usr.bin/soelim/soelim.1 Modified: head/usr.bin/soelim/soelim.1

svn commit: r290477 - head/share/man/man9

2015-11-06 Thread Conrad E. Meyer
Author: cem Date: Sat Nov 7 01:58:17 2015 New Revision: 290477 URL: https://svnweb.freebsd.org/changeset/base/290477 Log: Another follow-up to r290475: Bump .Dd in sysctl_add_oid.9 Sponsored by: EMC / Isilon Storage Division Modified: head/share/man/man9/sysctl_add_oid.9 Modified: head

svn commit: r290476 - head/sbin/sysctl

2015-11-06 Thread Conrad E. Meyer
Author: cem Date: Sat Nov 7 01:56:32 2015 New Revision: 290476 URL: https://svnweb.freebsd.org/changeset/base/290476 Log: Follow-up to r290475: Add sysctl(8) support for added types Sponsored by: EMC / Isilon Storage Division Modified: head/sbin/sysctl/sysctl.c Modified: head/sbin/sysc

svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys

2015-11-06 Thread Conrad E. Meyer
Author: cem Date: Sat Nov 7 01:43:01 2015 New Revision: 290475 URL: https://svnweb.freebsd.org/changeset/base/290475 Log: Round out SYSCTL macros to the full set of fixed-width types Add S8, S16, S32, and U32 types; add SYSCTL*() macros for them, as well as for the existing 64-bit types

Re: svn commit: r290417 - head

2015-11-06 Thread Bryan Drewery
On 11/6/2015 4:56 PM, Bryan Drewery wrote: > On 11/5/2015 1:48 PM, Warner Losh wrote: >> -.include "share/mk/src.opts.mk" >> -.include >> -.include > > Fun fact, src.opts.mk is already including bsd.compiler.mk so it being > here is redundant (since r263953 removed direct checks in > COMPILER_TY

Re: svn commit: r290417 - head

2015-11-06 Thread Bryan Drewery
On 11/5/2015 1:48 PM, Warner Losh wrote: > -.include "share/mk/src.opts.mk" > -.include > -.include Fun fact, src.opts.mk is already including bsd.compiler.mk so it being here is redundant (since r263953 removed direct checks in COMPILER_TYPE/VERSION). > +# Cross toolchain changes must be in ef

svn commit: r290474 - head/sys/dev/ath

2015-11-06 Thread Adrian Chadd
Author: adrian Date: Sat Nov 7 00:51:51 2015 New Revision: 290474 URL: https://svnweb.freebsd.org/changeset/base/290474 Log: ath(4) - reflect whether this is a full or fast channel change. It's no longer "outdoor." Modified: head/sys/dev/ath/if_athvar.h Modified: head/sys/dev/ath/if_at

svn commit: r290473 - in head/sys: kern sys

2015-11-06 Thread Mateusz Guzik
Author: mjg Date: Sat Nov 7 00:18:14 2015 New Revision: 290473 URL: https://svnweb.freebsd.org/changeset/base/290473 Log: fd: implement kern.proc.nfds sysctl Intended purpose is to provide an equivalent of OpenBSD's getdtablecount syscall for the compat library.. Modified: head/sys/ke

svn commit: r290472 - head/sys/arm/arm

2015-11-06 Thread Svatopluk Kraus
Author: skra Date: Fri Nov 6 23:17:00 2015 New Revision: 290472 URL: https://svnweb.freebsd.org/changeset/base/290472 Log: Set correct code for signal in abort_align() routine. Remove superfluous printf() and both unnecessary and obsolete comments. Approved by: kib (mentor) Modified:

svn commit: r290471 - head/sys/netinet6

2015-11-06 Thread Adrian Chadd
Author: adrian Date: Fri Nov 6 23:07:43 2015 New Revision: 290471 URL: https://svnweb.freebsd.org/changeset/base/290471 Log: [netinet6]: Create a new IPv6 netisr which expects the frames to have been verified. This is required for fragments and encapsulated data (eg tunneling) to be redi

svn commit: r290470 - head

2015-11-06 Thread Dimitry Andric
Author: dim Date: Fri Nov 6 22:24:41 2015 New Revision: 290470 URL: https://svnweb.freebsd.org/changeset/base/290470 Log: Add maintainer entries for llvm, lldb, compiler-rt, libc++ and libcxxrt. Modified: head/MAINTAINERS Modified: head/MAINTAINERS ==

svn commit: r290468 - head/sys/netinet

2015-11-06 Thread Michael Tuexen
Author: tuexen Date: Fri Nov 6 22:08:05 2015 New Revision: 290468 URL: https://svnweb.freebsd.org/changeset/base/290468 Log: Use the correct length. The wrong one was too large. MFC after: 3 days Modified: head/sys/netinet/sctp_indata.c Modified: head/sys/netinet/sctp_indata.c

Re: svn commit: r290423 - head

2015-11-06 Thread Bryan Drewery
On 11/5/2015 2:09 PM, Bryan Drewery wrote: > Author: bdrewery > Date: Thu Nov 5 22:09:00 2015 > New Revision: 290423 > URL: https://svnweb.freebsd.org/changeset/base/290423 > > Log: > Allow 'make buildenv' to default to the caller's shell by using SHELL. Sigh. ZSH does really stupid things. Al

svn commit: r290467 - head/share/mk

2015-11-06 Thread Bryan Drewery
Author: bdrewery Date: Fri Nov 6 21:49:17 2015 New Revision: 290467 URL: https://svnweb.freebsd.org/changeset/base/290467 Log: The 'buildenv' target can safely be ran with '+'. Modified: head/share/mk/src.init.mk Modified: head/share/mk/src.init.mk ==

Re: svn commit: r290437 - head/usr.bin/netstat

2015-11-06 Thread Bryan Drewery
On 11/6/2015 12:43 AM, Garrett Cooper wrote: > Author: ngie > Date: Fri Nov 6 08:43:12 2015 > New Revision: 290437 > URL: https://svnweb.freebsd.org/changeset/base/290437 > > Log: > Fix compiling netstat after r290367 by substituting sys/types.h for > sys/param.h, as sys/param.h defines the M

Re: svn commit: r290417 - head

2015-11-06 Thread Bryan Drewery
On 11/5/2015 1:48 PM, Warner Losh wrote: > Author: imp > Date: Thu Nov 5 21:48:12 2015 > New Revision: 290417 > URL: https://svnweb.freebsd.org/changeset/base/290417 > > Log: > Fix CC being wrong during install* targets. > This most likely fixes the "installworld fails with ccache, mk/bsd.c

svn commit: r290466 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2015-11-06 Thread Steven Hartland
Author: smh Date: Fri Nov 6 20:45:19 2015 New Revision: 290466 URL: https://svnweb.freebsd.org/changeset/base/290466 Log: Switch zfs_panic_recover to panic for bad DVA As reported by Coverity a null pointer de-reference panic would be triggered when zfs_recover was set so switch to strai

svn commit: r290465 - head/sys/arm/ti

2015-11-06 Thread Olivier Houchard
Author: cognet Date: Fri Nov 6 20:12:31 2015 New Revision: 290465 URL: https://svnweb.freebsd.org/changeset/base/290465 Log: Include opt_platform.h to get FDT defined. Modified: head/sys/arm/ti/ti_common.c Modified: head/sys/arm/ti/ti_common.c ===

svn commit: r290464 - in stable: 10/lib/libc/sys 10/sys/kern 10/sys/sys 9/lib/libc/sys 9/sys/kern 9/sys/sys

2015-11-06 Thread John Baldwin
Author: jhb Date: Fri Nov 6 20:10:54 2015 New Revision: 290464 URL: https://svnweb.freebsd.org/changeset/base/290464 Log: MFC 289636: Switch pl_child_pid from int to pid_t. Modified: stable/9/lib/libc/sys/ptrace.2 stable/9/sys/kern/sys_process.c stable/9/sys/sys/ptrace.h Directory Prop

svn commit: r290464 - in stable: 10/lib/libc/sys 10/sys/kern 10/sys/sys 9/lib/libc/sys 9/sys/kern 9/sys/sys

2015-11-06 Thread John Baldwin
Author: jhb Date: Fri Nov 6 20:10:54 2015 New Revision: 290464 URL: https://svnweb.freebsd.org/changeset/base/290464 Log: MFC 289636: Switch pl_child_pid from int to pid_t. Modified: stable/10/lib/libc/sys/ptrace.2 stable/10/sys/kern/sys_process.c stable/10/sys/sys/ptrace.h Directory P

svn commit: r290463 - head/sbin/savecore

2015-11-06 Thread Alan Somers
Author: asomers Date: Fri Nov 6 19:18:20 2015 New Revision: 290463 URL: https://svnweb.freebsd.org/changeset/base/290463 Log: Always check the return value of lseek. This is a follow-up to r289845, which only fixed one occurence of CID 1009429. Coverity CID: 1009429 Reviewed by:

Re: svn commit: r290445 - head/contrib/libxo/libxo

2015-11-06 Thread Phil Shafer
Garrett Cooper writes: >> The field modifier for trimming whitespace >> is not `q' but `t'. > >Could you please submit this change upstream to the libxo github project? Got it (d907e99..e263360 in 'develop' branch). Thanks, Phil ___ svn-src-all@freeb

svn commit: r290462 - head/sys/cam/ata

2015-11-06 Thread Alexander Motin
Author: mav Date: Fri Nov 6 18:50:01 2015 New Revision: 290462 URL: https://svnweb.freebsd.org/changeset/base/290462 Log: Removed unused malloc types. Submitted by: Dmitry Luhtionov MFC after:1 week Modified: head/sys/cam/ata/ata_da.c head/sys/cam/ata/ata_pmp.c Modified: head/

svn commit: r290461 - head/secure/lib/libcrypto

2015-11-06 Thread Jung-uk Kim
Author: jkim Date: Fri Nov 6 18:24:49 2015 New Revision: 290461 URL: https://svnweb.freebsd.org/changeset/base/290461 Log: Fix a typo. I did not mean it, really. Modified: head/secure/lib/libcrypto/Makefile Modified: head/secure/lib/libcrypto/Makefile ==

svn commit: r290460 - in head/secure: lib/libcrypto lib/libssl usr.bin/openssl

2015-11-06 Thread Jung-uk Kim
Author: jkim Date: Fri Nov 6 17:39:17 2015 New Revision: 290460 URL: https://svnweb.freebsd.org/changeset/base/290460 Log: Clean up OpenSSL makefiles. Modified: head/secure/lib/libcrypto/Makefile head/secure/lib/libcrypto/Makefile.inc head/secure/lib/libssl/Makefile head/secure/usr.bin

svn commit: r290459 - head

2015-11-06 Thread Dag-Erling Smørgrav
Author: des Date: Fri Nov 6 17:29:51 2015 New Revision: 290459 URL: https://svnweb.freebsd.org/changeset/base/290459 Log: Refresh my entries Modified: head/MAINTAINERS Modified: head/MAINTAINERS == --- head/MAINTAIN

svn commit: r290458 - head/sys/cam/ctl

2015-11-06 Thread Alexander Motin
Author: mav Date: Fri Nov 6 17:29:21 2015 New Revision: 290458 URL: https://svnweb.freebsd.org/changeset/base/290458 Log: Add two more KASSERTs. Modified: head/sys/cam/ctl/ctl.c Modified: head/sys/cam/ctl/ctl.c == -

svn commit: r290457 - head/sys/arm/broadcom/bcm2835

2015-11-06 Thread Svatopluk Kraus
Author: skra Date: Fri Nov 6 17:12:33 2015 New Revision: 290457 URL: https://svnweb.freebsd.org/changeset/base/290457 Log: Make interrupt dispatching MP safe. Use GPU interrupt bit in per-core interrupt status register to process shared interrupts only if the bit is active and only on core

svn commit: r290456 - in stable: 10/sys/kern 9/sys/kern

2015-11-06 Thread John Baldwin
Author: jhb Date: Fri Nov 6 16:57:23 2015 New Revision: 290456 URL: https://svnweb.freebsd.org/changeset/base/290456 Log: MFC 288902: Include additional info in ptrace(2) KTR traces: - The new PC value and signal passed to PT_CONTINUE, PT_DETACH, PT_SYSCALL, and PT_TO_SC[EX]. - The sy

svn commit: r290456 - in stable: 10/sys/kern 9/sys/kern

2015-11-06 Thread John Baldwin
Author: jhb Date: Fri Nov 6 16:57:23 2015 New Revision: 290456 URL: https://svnweb.freebsd.org/changeset/base/290456 Log: MFC 288902: Include additional info in ptrace(2) KTR traces: - The new PC value and signal passed to PT_CONTINUE, PT_DETACH, PT_SYSCALL, and PT_TO_SC[EX]. - The sy

Re: svn commit: r290433 - in head: share/mk sys/conf tools/build/options

2015-11-06 Thread Bryan Drewery
On 11/6/15 7:48 AM, Garrett Cooper wrote: > >> On Nov 5, 2015, at 20:45, Bryan Drewery wrote: >> >> Author: bdrewery >> Date: Fri Nov 6 04:45:29 2015 >> New Revision: 290433 >> URL: https://svnweb.freebsd.org/changeset/base/290433 > > Should this be announced on current? > I am going to send

svn commit: r290455 - head

2015-11-06 Thread Jim Harris
Author: jimharris Date: Fri Nov 6 16:54:17 2015 New Revision: 290455 URL: https://svnweb.freebsd.org/changeset/base/290455 Log: I am still maintaining iscsi, nvme, nvd and nvmecontrol. Modified: head/MAINTAINERS Modified: head/MAINTAINERS

svn commit: r290454 - in stable: 10/sys/dev/drm2/i915 9/sys/dev/drm2/i915

2015-11-06 Thread John Baldwin
Author: jhb Date: Fri Nov 6 16:48:33 2015 New Revision: 290454 URL: https://svnweb.freebsd.org/changeset/base/290454 Log: MFC 288452,289719: 288452: Most error cases in i915_gem_do_execbuffer() jump to one of two labels to release resources (such as unholding pages) when errors occur.

svn commit: r290454 - in stable: 10/sys/dev/drm2/i915 9/sys/dev/drm2/i915

2015-11-06 Thread John Baldwin
Author: jhb Date: Fri Nov 6 16:48:33 2015 New Revision: 290454 URL: https://svnweb.freebsd.org/changeset/base/290454 Log: MFC 288452,289719: 288452: Most error cases in i915_gem_do_execbuffer() jump to one of two labels to release resources (such as unholding pages) when errors occur.

svn commit: r290453 - head

2015-11-06 Thread Jilles Tjoelker
Author: jilles Date: Fri Nov 6 16:43:22 2015 New Revision: 290453 URL: https://svnweb.freebsd.org/changeset/base/290453 Log: I still maintain sh(1). Modified: head/MAINTAINERS Modified: head/MAINTAINERS == --- head/

svn commit: r290452 - head/tools/tools/zfsboottest

2015-11-06 Thread Andriy Gapon
Author: avg Date: Fri Nov 6 16:27:22 2015 New Revision: 290452 URL: https://svnweb.freebsd.org/changeset/base/290452 Log: zfsboottest: catch up with r241289, call zfs_spa_init() for all found pools MFC after:8 days Modified: head/tools/tools/zfsboottest/zfsboottest.c Modified: head

svn commit: r290451 - head/tools/tools/zfsboottest

2015-11-06 Thread Andriy Gapon
Author: avg Date: Fri Nov 6 16:26:09 2015 New Revision: 290451 URL: https://svnweb.freebsd.org/changeset/base/290451 Log: zfsboottest: build as a 32 bit application For better emulation of the actual zfs boot code. MFC after:8 days Modified: head/tools/tools/zfsboottest/Makefil

Re: svn commit: r290433 - in head: share/mk sys/conf tools/build/options

2015-11-06 Thread Garrett Cooper
> On Nov 5, 2015, at 20:45, Bryan Drewery wrote: > > Author: bdrewery > Date: Fri Nov 6 04:45:29 2015 > New Revision: 290433 > URL: https://svnweb.freebsd.org/changeset/base/290433 Should this be announced on current? ___ svn-src-all@freebsd.org mail

Re: svn commit: r290433 - in head: share/mk sys/conf tools/build/options

2015-11-06 Thread Garrett Cooper
> On Nov 6, 2015, at 02:25, Kubilay Kocak wrote: > >> On 6/11/2015 4:52 PM, Dmitry Sivachenko wrote: >> >> 6 нояб. 2015 г., в 8:00, Bryan Drewery написал(а): > On 11/5/15 8:59 PM, Dmitry Sivachenko wrote: > > On 06 Nov 2015, at 07:45, Bryan Drewery wrote: > >

Re: svn commit: r290445 - head/contrib/libxo/libxo

2015-11-06 Thread Garrett Cooper
Hi Umemoto-san, > On Nov 6, 2015, at 06:29, Hajimu UMEMOTO wrote: > > Author: ume > Date: Fri Nov 6 14:29:25 2015 > New Revision: 290445 > URL: https://svnweb.freebsd.org/changeset/base/290445 > > Log: > The field modifier for trimming whitespace > is not `q' but `t'. Could you please submi

svn commit: r290450 - in head: sbin/ifconfig share/man/man4 sys/net

2015-11-06 Thread Steven Hartland
Author: smh Date: Fri Nov 6 15:33:27 2015 New Revision: 290450 URL: https://svnweb.freebsd.org/changeset/base/290450 Log: Add sysctl to control LACP strict compliance default Add net.link.lagg.lacp.default_strict_mode which defines the default value for LACP strict compliance for created

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

2015-11-06 Thread Hajimu UMEMOTO
Author: ume Date: Fri Nov 6 14:50:23 2015 New Revision: 290449 URL: https://svnweb.freebsd.org/changeset/base/290449 Log: Do not truncate addresses when printing in encoded format. Modified: head/usr.bin/netstat/if.c Modified: head/usr.bin/netstat/if.c ==

svn commit: r290448 - head/sys/dev/vnic

2015-11-06 Thread Andrew Turner
Author: andrew Date: Fri Nov 6 14:40:51 2015 New Revision: 290448 URL: https://svnweb.freebsd.org/changeset/base/290448 Log: Mark the thunder_mdio_fdt driver as early, the bgx needs it to exist so it can find the network phy. Sponsored by: ABT Systems Ltd Modified: head/sys/dev/vnic/t

svn commit: r290447 - head/sys/arm64/arm64

2015-11-06 Thread Andrew Turner
Author: andrew Date: Fri Nov 6 14:36:21 2015 New Revision: 290447 URL: https://svnweb.freebsd.org/changeset/base/290447 Log: Mark the arm64 nexus devices to be attached early. This allows multipass to work correctly. Without it the pass quickly moves to the final pass before the nexus devic

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

2015-11-06 Thread Hajimu UMEMOTO
Author: ume Date: Fri Nov 6 14:35:22 2015 New Revision: 290446 URL: https://svnweb.freebsd.org/changeset/base/290446 Log: - Fix alignment for padding link address. - Trim whitespace of link address. Modified: head/usr.bin/netstat/if.c Modified: head/usr.bin/netstat/if.c ==

svn commit: r290445 - head/contrib/libxo/libxo

2015-11-06 Thread Hajimu UMEMOTO
Author: ume Date: Fri Nov 6 14:29:25 2015 New Revision: 290445 URL: https://svnweb.freebsd.org/changeset/base/290445 Log: The field modifier for trimming whitespace is not `q' but `t'. Modified: head/contrib/libxo/libxo/xo_format.5 Modified: head/contrib/libxo/libxo/xo_format.5 ==

svn commit: r290444 - head/sys/netinet

2015-11-06 Thread Michael Tuexen
Author: tuexen Date: Fri Nov 6 14:00:26 2015 New Revision: 290444 URL: https://svnweb.freebsd.org/changeset/base/290444 Log: The field sinfo_timetolive should have been sinfo_pr_value. Thanks to Jens Hoelscher for making me aware of the bug. MFC after: 1 week Modified: head/sys/netine

svn commit: r290443 - stable/10/sys/dev/usb/controller

2015-11-06 Thread Hans Petter Selasky
Author: hselasky Date: Fri Nov 6 13:34:55 2015 New Revision: 290443 URL: https://svnweb.freebsd.org/changeset/base/290443 Log: MFC r290195: Reduce the DWC OTG interrupt load by not reading all the host channel status registers for every interrupt. Check a common host channel status interr

svn commit: r290442 - head/sys/netinet

2015-11-06 Thread Michael Tuexen
Author: tuexen Date: Fri Nov 6 13:08:16 2015 New Revision: 290442 URL: https://svnweb.freebsd.org/changeset/base/290442 Log: Fix typos in field names of struct sctp_extrcvinfo. Provide defines to allow applications to compile. Thanks to Jens Hoelscher for making me aware of the typos.

svn commit: r290441 - head/sys/dev/usb/net

2015-11-06 Thread Hans Petter Selasky
Author: hselasky Date: Fri Nov 6 12:54:27 2015 New Revision: 290441 URL: https://svnweb.freebsd.org/changeset/base/290441 Log: Fix for unaligned IP-header. The mbuf length fields must be set before m_adj() is called else m_adj() will not always adjust the mbuf and an unaligned read exc

svn commit: r290440 - head/lib/libutil

2015-11-06 Thread Steven Hartland
Author: smh Date: Fri Nov 6 12:02:24 2015 New Revision: 290440 URL: https://svnweb.freebsd.org/changeset/base/290440 Log: Correct posix_openpt reference in pty(3) MFC after:1 week Sponsored by: Multiplay Modified: head/lib/libutil/pty.3 Modified: head/lib/libutil/pty.3 ==

svn commit: r290439 - head/sys/dev/usb/wlan

2015-11-06 Thread Andriy Voskoboinyk
Author: avos Date: Fri Nov 6 11:29:24 2015 New Revision: 290439 URL: https://svnweb.freebsd.org/changeset/base/290439 Log: urtwn(4): simplify urtwn_tsf_sync_enable(). - Drop TSF initialization; device can discover it without our help. - Do not touch R92C_BCN_CTRL_EN_BCN bit in STA mode.

svn commit: r290438 - head/sbin/ifconfig

2015-11-06 Thread Andriy Voskoboinyk
Author: avos Date: Fri Nov 6 11:17:23 2015 New Revision: 290438 URL: https://svnweb.freebsd.org/changeset/base/290438 Log: ifconfig: fix padding for ' scan' command output (S:N and beacon interval fields). Approved by: adrian (mentor) Differential Revision:https://reviews.free

Re: svn commit: r290433 - in head: share/mk sys/conf tools/build/options

2015-11-06 Thread Kubilay Kocak
On 6/11/2015 4:52 PM, Dmitry Sivachenko wrote: > > >> 6 нояб. 2015 г., в 8:00, Bryan Drewery написал(а): >> >>> On 11/5/15 8:59 PM, Dmitry Sivachenko wrote: >>> On 06 Nov 2015, at 07:45, Bryan Drewery wrote: Author: bdrewery Date: Fri Nov 6 04:45:29 2015 New Revision:

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

2015-11-06 Thread Garrett Cooper
Author: ngie Date: Fri Nov 6 08:43:12 2015 New Revision: 290437 URL: https://svnweb.freebsd.org/changeset/base/290437 Log: Fix compiling netstat after r290367 by substituting sys/types.h for sys/param.h, as sys/param.h defines the MAX(..) macro Reported by: O. Hartmann Pointyhat to: u