On 7/31/16 14:36, Pedro F. Giffuni wrote:
> Author: pfg
> Date: Sun Jul 31 21:36:40 2016
> New Revision: 303600
> URL: https://svnweb.freebsd.org/changeset/base/303600
>
> Log:
> indent(1): replace function call to bzero with memset.
>
> Reference:
>
> https://github.com/pstef/freebsd_
On Sun, 31 Jul 2016, Warner Losh wrote:
On Sun, Jul 31, 2016 at 2:16 PM, Jilles Tjoelker wrote:
On Sun, Jul 31, 2016 at 01:43:16PM +, Alexey Dokuchaev wrote:
On Sun, Jul 31, 2016 at 01:11:34PM +, Jilles Tjoelker wrote:
New Revision: 303586
URL: https://svnweb.freebsd.org/changeset/ba
On Sun, Jul 31, 2016 at 11:51 PM, Bruce Evans wrote:
> On Sun, 31 Jul 2016, Warner Losh wrote:
>
>> On Sun, Jul 31, 2016 at 2:16 PM, Jilles Tjoelker wrote:
>>>
>>> On Sun, Jul 31, 2016 at 01:43:16PM +, Alexey Dokuchaev wrote:
On Sun, Jul 31, 2016 at 01:11:34PM +, Jilles Tjoelker
On Sun, 31 Jul 2016, Xin Li wrote:
On 7/31/16 14:36, Pedro F. Giffuni wrote:
Log:
indent(1): replace function call to bzero with memset.
Reference:
https://github.com/pstef/freebsd_indent/commit/7422f42f80099c69d34833d7106035dc09230235
Differential Revision: https://reviews.freebsd.
Author: kib
Date: Mon Aug 1 06:35:35 2016
New Revision: 303607
URL: https://svnweb.freebsd.org/changeset/base/303607
Log:
MFC r302614:
Revive the check, disabled in r197963.
MFC r302999:
On first exec after vfork(), call signotify() to handle pending
reenabled signals.
Modified:
s
Author: kib
Date: Mon Aug 1 06:34:55 2016
New Revision: 303606
URL: https://svnweb.freebsd.org/changeset/base/303606
Log:
MFC r302614:
Revive the check, disabled in r197963.
MFC r302999:
On first exec after vfork(), call signotify() to handle pending
reenabled signals.
Approved
Author: ngie
Date: Mon Aug 1 06:59:35 2016
New Revision: 303609
URL: https://svnweb.freebsd.org/changeset/base/303609
Log:
MFC r288071:
- arm64 change was omitted due to lack of architecture support
- ia64 change was added as the architecture was removed from ^/head
Sponsored by: EM
Author: andrew
Date: Mon Aug 1 10:36:58 2016
New Revision: 303610
URL: https://svnweb.freebsd.org/changeset/base/303610
Log:
Add the fields for the PAR_EL1 register. This is used when performing an
address lookup with the AT instructions.
Obtained from:ABT Systems Ltd
MFC after
Author: julian
Date: Mon Aug 1 11:34:12 2016
New Revision: 303611
URL: https://svnweb.freebsd.org/changeset/base/303611
Log:
slite style changes. There is an incoming patch that rewrites a
lot of this module and I want to get the style and whitespace changes in
a separate commit (or maybe m
Author: julian
Date: Mon Aug 1 12:09:04 2016
New Revision: 303612
URL: https://svnweb.freebsd.org/changeset/base/303612
Log:
netgraph module for reconstructing checksums
PR: 206108
Submitted by: Dmitry Vagin daemon.ham...@ya.ru
MFC after:1 month
Added:
head/sys/module
Author: julian
Date: Mon Aug 1 12:14:21 2016
New Revision: 303613
URL: https://svnweb.freebsd.org/changeset/base/303613
Log:
Man page for the new checksum netgraph module.
PR: 206186
Submitted by: Dmitry Vagin
MFC after: 1 month
Added:
head/share/man/man4/ng_checksum.
Author: andrew
Date: Mon Aug 1 12:17:44 2016
New Revision: 303614
URL: https://svnweb.freebsd.org/changeset/base/303614
Log:
Add a kernel variable to let the user to select their preferred order
between ACPI and FDT. This will be needed on machines with both, e.g. the
SoftIron Overdrive 300
Author: ae
Date: Mon Aug 1 13:38:48 2016
New Revision: 303615
URL: https://svnweb.freebsd.org/changeset/base/303615
Log:
An old tables implementation had all tables preallocated,
so when user did `ipfw table N flush` it always worked, but now
when table N doesn't exist the kernel returns ES
On 2016-08-01 08:08, Bruce Evans wrote:
> On Sun, 31 Jul 2016, Xin Li wrote:
>
>> On 7/31/16 14:36, Pedro F. Giffuni wrote:
>>> -bzero(f, sizeof *f);
>>> +memset(f, 0, sizeof(struct fstate));
>>^ This is much more error-prone
>> than sizeof(*f) IMHO
On 08/01/16 00:28, Xin Li wrote:
On 7/31/16 14:36, Pedro F. Giffuni wrote:
Author: pfg
Date: Sun Jul 31 21:36:40 2016
New Revision: 303600
URL: https://svnweb.freebsd.org/changeset/base/303600
Log:
indent(1): replace function call to bzero with memset.
Reference:
https://github.com/
"Yes, I know it's not a typewriter. Why is this command not working?"
Perhaps this errno code should be aliased... and strerror() massaged in
places... assuming we strictly follow the POSIX.
___
svn-src-all@freebsd.org mailing list
https://lists.freeb
On 31/07/16 07:24, Adrian Chadd wrote:
[gpioled] add support for inverting the LED polarity.
No, this isn't a star trek science joke - sometimes LEDs are wired
up to be active low, so this is needed.
Actually, just about every bit of hardware I have interacted with on
that level recently
Author: emaste
Date: Mon Aug 1 15:49:50 2016
New Revision: 303616
URL: https://svnweb.freebsd.org/changeset/base/303616
Log:
MFC r303282: avoid building otusfw when WITHOUT_SOURCELESS_UCODE set
PR: 204748
Approved by: re (kib)
Modified:
stable/11/sys/modules/Makefile
Direct
On 08/01/16 10:24, Piotr Stefaniak wrote:
On 2016-08-01 08:08, Bruce Evans wrote:
On Sun, 31 Jul 2016, Xin Li wrote:
On 7/31/16 14:36, Pedro F. Giffuni wrote:
-bzero(f, sizeof *f);
+memset(f, 0, sizeof(struct fstate));
^ This is much more e
Author: emaste
Date: Mon Aug 1 16:03:20 2016
New Revision: 303617
URL: https://svnweb.freebsd.org/changeset/base/303617
Log:
MFC r303521: libunwind: correct return code in unwinding trace log message
Approved by: re (gjb)
Modified:
stable/11/contrib/llvm/projects/libunwind/src/Unwind-E
On 08/01/16 01:08, Bruce Evans wrote:
On Sun, 31 Jul 2016, Xin Li wrote:
On 7/31/16 14:36, Pedro F. Giffuni wrote:
Log:
indent(1): replace function call to bzero with memset.
Reference:
https://github.com/pstef/freebsd_indent/commit/7422f42f80099c69d34833d7106035dc09230235
Differe
Author: emaste
Date: Mon Aug 1 16:16:48 2016
New Revision: 303618
URL: https://svnweb.freebsd.org/changeset/base/303618
Log:
MFC r303400: libcxxrt: fix demangling of wchar_t
'wchar_t' is 7 characters long, not 6. r303297 fixed this (in head) in
libelftc, but not the second copy of this f
Author: emaste
Date: Mon Aug 1 16:18:01 2016
New Revision: 303619
URL: https://svnweb.freebsd.org/changeset/base/303619
Log:
iMFC r303400: libcxxrt: fix demangling of wchar_t
'wchar_t' is 7 characters long, not 6. r303297 (MFC'd in r303398) fixed
this in libelftc, but not the second copy
Author: vangyzen
Date: Mon Aug 1 16:24:46 2016
New Revision: 303620
URL: https://svnweb.freebsd.org/changeset/base/303620
Log:
MFC r303519
Fix two return types in the cpuset(9) and bitset(9) man pages
The *_FFS() and *_COUNT() functions return int, not size_t.
Approved by: re (g
Author: landonf
Date: Mon Aug 1 16:26:08 2016
New Revision: 303621
URL: https://svnweb.freebsd.org/changeset/base/303621
Log:
Sync CFE interface with upstream cfe-1.4.2 release.
Approved by: adrian (mentor)
Obtained from:
https://www.broadcom.com/support/communications-processor
Author: andrew
Date: Mon Aug 1 16:29:04 2016
New Revision: 303622
URL: https://svnweb.freebsd.org/changeset/base/303622
Log:
Split out the FDT parts of the GICv2 interrupt controller driver. This will
allow us to add an ACPI attachment for arm64.
Obtained from:ABT Systems Ltd
M
Author: landonf
Date: Mon Aug 1 16:29:32 2016
New Revision: 303623
URL: https://svnweb.freebsd.org/changeset/base/303623
Log:
[mips/broadcom] Fetch UART console configuration from CFE.
Relying on the boot loader console configuration allows us to use a
common set of device hints for all
Author: vangyzen
Date: Mon Aug 1 16:39:40 2016
New Revision: 303624
URL: https://svnweb.freebsd.org/changeset/base/303624
Log:
MFC r303520
Fix markup for -j in cpuset(1) synopsis
Approved by: re (kib)
Sponsored by: Dell Inc.
Modified:
stable/11/usr.bin/cpuset/cpuset.1
Directory
Author: pfg
Date: Mon Aug 1 16:40:42 2016
New Revision: 303625
URL: https://svnweb.freebsd.org/changeset/base/303625
Log:
indent(1): Use a dash in the license headers.
Use of the canonical dash avoids indent(1) from reformatting the
license headers.
Modified:
head/usr.bin/indent/args.
On Sun, 2016-07-31 at 13:43 +, Alexey Dokuchaev wrote:
> On Sun, Jul 31, 2016 at 01:11:34PM +, Jilles Tjoelker wrote:
> > New Revision: 303586
> > URL: https://svnweb.freebsd.org/changeset/base/303586
> >
> > Log:
> > sh: Fix a clang warning.
> >
> > Submitted by: bdrewery
> >
On Mon, 2016-08-01 at 16:38 +0100, Bruce Simpson wrote:
> "Yes, I know it's not a typewriter. Why is this command not working?"
>
> Perhaps this errno code should be aliased... and strerror() massaged
> in
> places... assuming we strictly follow the POSIX.
>
It's not clear just what point you'r
On 01/08/16 17:49, Ian Lepore wrote:
...
In addition, the strerror() output for ENOTTY says nothing about a
typewriter, the text is "Inappropriate ioctl for device."
If that semantic gap has already been plugged, ignore my message.
___
svn-src-all@fr
Author: gallatin
Date: Mon Aug 1 17:02:21 2016
New Revision: 303626
URL: https://svnweb.freebsd.org/changeset/base/303626
Log:
Rework IPV6 TCP path MTU discovery to match IPv4
- Re-write tcp_ctlinput6() to closely mimic the IPv4 tcp_ctlinput()
- Now that tcp_ctlinput6() updates t_maxs
Author: alc
Date: Mon Aug 1 17:25:07 2016
New Revision: 303627
URL: https://svnweb.freebsd.org/changeset/base/303627
Log:
Restore the historical behavior of "sysctl vm.swap_idle_enabled=1". Prior
to r254304, we had separate functions for reclamation and laundering
(vm_pageout_scan) versus
Author: sbruno
Date: Mon Aug 1 17:51:35 2016
New Revision: 303628
URL: https://svnweb.freebsd.org/changeset/base/303628
Log:
MFC r303322,303326,303327,303345,303413,303416,303418,303557
Update iwm(4) and iwmfw(4) to current in order to stabilize and improve
functionality.
Approved b
On Saturday, July 30, 2016 10:38:34 AM Bruce Evans wrote:
> On Fri, 29 Jul 2016, John Baldwin wrote:
>
> > Log:
> > Don't treat NOCPU as a valid CPU to CPU_ISSET.
> >
> > If a thread is created bound to a cpuset it might already be bound before
> > it's very first timeslice, and td_lastcpu will
Author: pfg
Date: Mon Aug 1 19:24:01 2016
New Revision: 303629
URL: https://svnweb.freebsd.org/changeset/base/303629
Log:
indent: Avoid using values of pointers that refer to deallocated space.
For now maintain the local style in this file.
Reviewed by: jilles
Reference:
http
Author: allanjude
Date: Mon Aug 1 19:37:43 2016
New Revision: 303630
URL: https://svnweb.freebsd.org/changeset/base/303630
Log:
Make boot code and loader check for unsupported ZFS feature flags
OpenZFS uses feature flags instead of a zpool version number to track
features since the split
Author: dim
Date: Mon Aug 1 19:49:42 2016
New Revision: 303631
URL: https://svnweb.freebsd.org/changeset/base/303631
Log:
Fix non-functional bsdinstall services dialog.
The most recent version of bsdinstall does not seem to respect any of
the checkboxes in the "Choose the services you wo
Author: emaste
Date: Mon Aug 1 19:50:28 2016
New Revision: 303632
URL: https://svnweb.freebsd.org/changeset/base/303632
Log:
MFC r303338: vt: lock Giant around kbd calls in CONS_GETINFO
Note that keyboards are stored in an array and are not freed (just
"unregistered" by clearing some f
Author: emaste
Date: Mon Aug 1 19:53:18 2016
New Revision: 303633
URL: https://svnweb.freebsd.org/changeset/base/303633
Log:
MFC r303338: vt: lock Giant around kbd calls in CONS_GETINFO
Note that keyboards are stored in an array and are not freed (just
"unregistered" by clearing some fie
Author: emaste
Date: Mon Aug 1 20:02:59 2016
New Revision: 303634
URL: https://svnweb.freebsd.org/changeset/base/303634
Log:
MFC r303396: rename ARM's libunwind.S to to avoid conflict with llvm libunwind
llvm libunwind includes a libunwind.cpp, but on ARM libunwind.S is found
first in .P
Author: markj
Date: Mon Aug 1 20:27:11 2016
New Revision: 303635
URL: https://svnweb.freebsd.org/changeset/base/303635
Log:
MFV 29f27e847: "IB/cma: Use cached gids"
This addresses a regression from an earlier upstream change which caused
cma_acquire_dev() to bypass the port GID cache and
Author: markj
Date: Mon Aug 1 20:29:09 2016
New Revision: 303636
URL: https://svnweb.freebsd.org/changeset/base/303636
Log:
MFV be9130cc9: "IB/cma: Check for GID on listening devices first"
This is an optimization that improves IB connection setup times.
Discussed with: hselasky
Author: ae
Date: Mon Aug 1 20:54:54 2016
New Revision: 303637
URL: https://svnweb.freebsd.org/changeset/base/303637
Log:
Do not invoke resize event if initial disk size is zero. Some disks
report the size only after first opening. And due to the events are
asynchronous, some consumers can
Author: sbruno
Date: Mon Aug 1 21:19:51 2016
New Revision: 303638
URL: https://svnweb.freebsd.org/changeset/base/303638
Log:
r293331 mistakingly failed to add an assignment of paddr to the rxbuf
but only in the NETMAP code. This lead to the NETMAP code paths
passing nothing up to userland.
Author: jkim
Date: Mon Aug 1 21:20:41 2016
New Revision: 303639
URL: https://svnweb.freebsd.org/changeset/base/303639
Log:
Import ACPICA 20160729.
Added:
vendor-sys/acpica/dist/source/compiler/aslhelpers.y (contents, props
changed)
vendor-sys/acpica/dist/source/compiler/aslkeywords.y
Author: jkim
Date: Mon Aug 1 21:21:21 2016
New Revision: 303640
URL: https://svnweb.freebsd.org/changeset/base/303640
Log:
Tag ACPICA 20160729.
Added:
vendor-sys/acpica/20160729/
- copied from r303639, vendor-sys/acpica/dist/
___
svn-src-all@f
Author: alc
Date: Mon Aug 1 21:21:26 2016
New Revision: 303641
URL: https://svnweb.freebsd.org/changeset/base/303641
Log:
MFC r303356 and r303465
Remove any mention of cache (PG_CACHE) pages from the comments in
vm_pageout_scan(). That function has not cached pages since r284376.
Author: mjg
Date: Mon Aug 1 21:48:37 2016
New Revision: 303643
URL: https://svnweb.freebsd.org/changeset/base/303643
Log:
Implement trivial backoff for locking primitives.
All current spinning loops retry an atomic op the first chance they get,
which leads to performance degradation unde
Author: jhb
Date: Mon Aug 1 22:19:23 2016
New Revision: 303645
URL: https://svnweb.freebsd.org/changeset/base/303645
Log:
Disable PCI hotplug support for slots with power controllers.
After further review of the spec, I do not think the current HotPlug
code handles slots with power contr
Author: markj
Date: Mon Aug 1 22:22:11 2016
New Revision: 303646
URL: https://svnweb.freebsd.org/changeset/base/303646
Log:
ipoib: Bound the number of egress mbufs buffered during pathrec lookups.
In pathological situations where the master subnet manager becomes
unresponsive for an exte
Author: jhb
Date: Mon Aug 1 22:39:51 2016
New Revision: 303647
URL: https://svnweb.freebsd.org/changeset/base/303647
Log:
Store the offset of the KDOORBELL and GTS registers in the softc.
VF devices use a different register layout than PF devices. Storing
the offset in a value in the so
Author: cem
Date: Mon Aug 1 22:41:50 2016
New Revision: 303648
URL: https://svnweb.freebsd.org/changeset/base/303648
Log:
Fix ddb "show proc" to show full arguments
PR: 200052
Submitted by: Chang-Hsien Tsai
Modified:
head/sys/ddb/db_ps.c
Modified: head/sys/ddb/db_ps.c
Author: cem
Date: Mon Aug 1 22:57:03 2016
New Revision: 303650
URL: https://svnweb.freebsd.org/changeset/base/303650
Log:
opencrypto AES-ICM: Fix heap corruption typo
This error looks like it was a simple copy-paste typo in the original commit
for this code (r275732).
PR:
On Mon, Aug 01, 2016 at 09:48:37PM +, Mateusz Guzik wrote:
> Implement trivial backoff for locking primitives.
>
[..]
> For simplicity, this first thouch implementation only modifies spinning
> loops where the lock owner is running. spin mutexes and thread lock were
> not modified.
>
Author: cem
Date: Mon Aug 1 23:07:31 2016
New Revision: 303651
URL: https://svnweb.freebsd.org/changeset/base/303651
Log:
rtentry: Initialize rt_mtx with MTX_NEW
The "rtentry" zone does not use UMA_ZONE_ZINIT, so it is invalid to assume the
mutex's memory will be zero. Without MTX_NEW,
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512
On August 1, 2016 6:57:03 PM EDT, "Conrad E. Meyer" wrote:
>Author: cem
>Date: Mon Aug 1 22:57:03 2016
>New Revision: 303650
>URL: https://svnweb.freebsd.org/changeset/base/303650
>
>Log:
> opencrypto AES-ICM: Fix heap corruption typo
>
>This er
Adding CTurt to see if he wants to take a stab at writing a PoC exploit.
It'd be cool for an offensive researcher to determine if it's simply a
DoS. But regardless, a security fix is a security fix. All
currently-supported branches really should be updated.
Thanks,
Shawn
On Mon, Aug 01, 2016 at
Hey Shawn,
I don't think this is security-related despite being a bug in
crypto-adjacent code. At best it's a DoS, I think.
Cheers,
Conrad
On Mon, Aug 1, 2016 at 4:15 PM, Shawn Webb wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA512
>
>
>
> On August 1, 2016 6:57:03 PM EDT, "Conrad E.
Author: mjg
Date: Tue Aug 2 00:15:08 2016
New Revision: 303652
URL: https://svnweb.freebsd.org/changeset/base/303652
Log:
locks: fix up ifdef guards introduced in r303643
Both sx and rwlocks had copy-pasted ADAPTIVE_MUTEXES instead of the correct
define.
MFC after:1 week
Modifi
That would be difficult, as this is completely dead code in base. It
could be accessed through the /dev/crypto device by a port, however.
You haven't convinced me there is a security issue.
Cheers,
Conrad
On Mon, Aug 1, 2016 at 4:58 PM, Shawn Webb wrote:
> Adding CTurt to see if he wants to tak
Author: mjg
Date: Tue Aug 2 03:05:59 2016
New Revision: 303655
URL: https://svnweb.freebsd.org/changeset/base/303655
Log:
locks: fix compilation for KDTRACE_HOOKS && !ADAPTIVE_* case
Reported by: Michael Butler
Modified:
head/sys/kern/kern_mutex.c
head/sys/kern/kern_rwlock.c
head/
Author: sephe
Date: Tue Aug 2 06:36:47 2016
New Revision: 303656
URL: https://svnweb.freebsd.org/changeset/base/303656
Log:
tcp/lro: Implement hash table for LRO entries.
This significantly improves HTTP workload performance and reduces
HTTP workload latency.
Reviewed by: rrs, gall
64 matches
Mail list logo