Author: kp
Date: Tue Jan 15 08:59:51 2019
New Revision: 343041
URL: https://svnweb.freebsd.org/changeset/base/343041
Log:
pf: silence a runtime warning
Sometimes, for negated tables, pf can log 'pfr_update_stats: assertion
failed'.
This warning does not clarify anything for users, so sil
Author: andrew
Date: Tue Jan 15 09:48:18 2019
New Revision: 343042
URL: https://svnweb.freebsd.org/changeset/base/343042
Log:
Ensure the I-Cache is correctly handled in arm64_icache_sync_range
The cache_handle_range macro to handle the arm64 instruction and data
cache operations would ret
Author: emaste
Date: Tue Jan 15 15:35:14 2019
New Revision: 343043
URL: https://svnweb.freebsd.org/changeset/base/343043
Log:
scp: disallow empty or current directory
Obtained from:OpenBSD scp.c 1.198
Security: CVE-2018-20685
Sponsored by: The FreeBSD Foundation
Modified:
On 1/14/19 8:02 PM, Gleb Smirnoff wrote:
Log:
Allocate pager bufs from UMA instead of 80-ish mutex protected linked list.
<...>
Together with: gallatin
Thank you so much for carrying this over the finish line!
Drew
___
svn-src-head@
On 1/15/19 11:07 AM, Andrew Gallatin wrote:
On 1/14/19 8:02 PM, Gleb Smirnoff wrote:
Log:
Allocate pager bufs from UMA instead of 80-ish mutex protected
linked list.
<...>
Together with: gallatin
Thank you so much for carrying this over the finish line!
Drew
It appears to b
> Author: emaste
> Date: Tue Jan 15 15:35:14 2019
> New Revision: 343043
> URL: https://svnweb.freebsd.org/changeset/base/343043
>
> Log:
> scp: disallow empty or current directory
>
> Obtained from: OpenBSD scp.c 1.198
> Security: CVE-2018-20685
> Sponsored by: The FreeBSD
Author: shurd
Date: Tue Jan 15 17:40:19 2019
New Revision: 343047
URL: https://svnweb.freebsd.org/changeset/base/343047
Log:
Fix window update issue when scaling disabled
When the TCP window scale option is not used, and the window
opens up enough in one soreceive, a window update will no
On Tue, Jan 15, 2019 at 11:13:18AM -0500, Pedro Giffuni wrote:
P> >> Allocate pager bufs from UMA instead of 80-ish mutex protected
P> >> linked list.
P> >
P> >> Together with: gallatin
P> >
P> > Thank you so much for carrying this over the finish line!
P> >
P> It appears to be very impre
Author: jhb
Date: Tue Jan 15 18:20:20 2019
New Revision: 343048
URL: https://svnweb.freebsd.org/changeset/base/343048
Log:
Update the note about the need for COMPAT_FREEBSD kernel options.
Rather than mentioning the requirement for 4.x binaries but not
explaining why (it was assuming an u
Author: glebius
Date: Tue Jan 15 18:24:34 2019
New Revision: 343051
URL: https://svnweb.freebsd.org/changeset/base/343051
Log:
Make uz_allocs, uz_frees and uz_fails counter(9). This removes some
atomic updates and reduces amount of data protected by zone lock.
During startup point these f
Author: glebius
Date: Tue Jan 15 18:32:26 2019
New Revision: 343052
URL: https://svnweb.freebsd.org/changeset/base/343052
Log:
Only do uz_items accounting for zones that have a limit set in uz_max_items.
This reduces amount of locking required for these zones.
Also, for cache only zones (
Author: glebius
Date: Tue Jan 15 18:47:19 2019
New Revision: 343053
URL: https://svnweb.freebsd.org/changeset/base/343053
Log:
This was missed in r343051: make uz_allocs, uz_frees and uz_fails counter(9).
Modified:
head/lib/libmemstat/memstat_uma.c
Modified: head/lib/libmemstat/memstat_uma.c
Author: glebius
Date: Tue Jan 15 18:49:31 2019
New Revision: 343054
URL: https://svnweb.freebsd.org/changeset/base/343054
Log:
Remove harmless leftover from code that cycles over zone's kegs. Just use +
instead of +=. There is no functional change.
Modified:
head/sys/vm/uma_core.c
Modified
Author: glebius
Date: Tue Jan 15 18:50:11 2019
New Revision: 343055
URL: https://svnweb.freebsd.org/changeset/base/343055
Log:
style(9): break long line.
Modified:
head/sys/vm/uma_core.c
Modified: head/sys/vm/uma_core.c
Author: jhb
Date: Tue Jan 15 18:53:45 2019
New Revision: 343056
URL: https://svnweb.freebsd.org/changeset/base/343056
Log:
Reject new sessions if the necessary queues aren't initialized.
ccr reuses the control queue and first rx queue from the first port on
each adapter. The driver canno
Author: glebius
Date: Tue Jan 15 19:33:47 2019
New Revision: 343058
URL: https://svnweb.freebsd.org/changeset/base/343058
Log:
Fix compilation failures on different arches that have vm_machdep.c not
aware of counter_u64_t by including counter.h into uma_int.h. I'm not
happy about this inclus
On Tue, 15 Jan 2019 19:33:47 + (UTC)
Gleb Smirnoff wrote:
> Author: glebius
> Date: Tue Jan 15 19:33:47 2019
> New Revision: 343058
> URL: https://svnweb.freebsd.org/changeset/base/343058
>
> Log:
> Fix compilation failures on different arches that have vm_machdep.c
> not aware of counter_
On Tue, Jan 15, 2019 at 01:46:23PM -0600, Justin Hibbits wrote:
J> Why not #include counter.h in the relevant vm_machdep.c files instead?
This also is ugly :( Not sure more or less. Probably less, but I
urged to plug all possible compilation failures at a time.
What is ugly is that most files jus
On Tue, 2019-01-15 at 12:06 -0800, Gleb Smirnoff wrote:
> On Tue, Jan 15, 2019 at 01:46:23PM -0600, Justin Hibbits wrote:
> J> Why not #include counter.h in the relevant vm_machdep.c files
> instead?
>
> This also is ugly :( Not sure more or less. Probably less, but I
> urged to plug all possible
On Tue, Jan 15, 2019 at 01:20:14PM -0700, Ian Lepore wrote:
I> On Tue, 2019-01-15 at 12:06 -0800, Gleb Smirnoff wrote:
I> > On Tue, Jan 15, 2019 at 01:46:23PM -0600, Justin Hibbits wrote:
I> > J> Why not #include counter.h in the relevant vm_machdep.c files
I> > instead?
I> >
I> > This also is ugl
On 1/15/19 12:33 PM, Gleb Smirnoff wrote:
> On Tue, Jan 15, 2019 at 01:20:14PM -0700, Ian Lepore wrote:
> I> On Tue, 2019-01-15 at 12:06 -0800, Gleb Smirnoff wrote:
> I> > On Tue, Jan 15, 2019 at 01:46:23PM -0600, Justin Hibbits wrote:
> I> > J> Why not #include counter.h in the relevant vm_machdep
Author: gonzo
Date: Tue Jan 15 21:06:58 2019
New Revision: 343060
URL: https://svnweb.freebsd.org/changeset/base/343060
Log:
[drm] Fix off-by-one error when accessing driver-specific ioctl handlers array
PR: 231513
Submitted by: Young_X
Approved by: imp
MFC after:1 wee
Author: bz
Date: Tue Jan 15 22:31:54 2019
New Revision: 343065
URL: https://svnweb.freebsd.org/changeset/base/343065
Log:
With the sync from Dragonfly BSD in r318216 a bug slipped in (also still
present
upstream it seems).
The tlv variable was changed to a pointer but the advancement of
Author: sjg
Date: Tue Jan 15 23:35:53 2019
New Revision: 343066
URL: https://svnweb.freebsd.org/changeset/base/343066
Log:
Use .undef per variable
Attempting to expand a variable to a list of vars to .undef
does not actually work.
Reviewed by: bdrewery
Differential Revision:
Author: sjg
Date: Tue Jan 15 23:37:49 2019
New Revision: 343067
URL: https://svnweb.freebsd.org/changeset/base/343067
Log:
Fix STAGE_DIR.* to handle indirect *DIR variables.
bsd.{files,conf}.mk recently changed to allow *DIR to name a variable
rather than a path.
STAGE_DIR.* need to ada
Author: araujo
Date: Wed Jan 16 00:39:23 2019
New Revision: 343068
URL: https://svnweb.freebsd.org/changeset/base/343068
Log:
Use capsicum_helpers(3) that allow us to simplify the code and its functions
will return success when the kernel is built without support of
the capability mode.
Author: gonzo
Date: Wed Jan 16 01:08:34 2019
New Revision: 343069
URL: https://svnweb.freebsd.org/changeset/base/343069
Log:
[rpi] Reorganize spigen(4) overlays for Raspberry Pi
- Remove CS=2 entry from spigen-rpi2 since it didn't work
- Add spigen-rpi3 overlay for Raspberry Pi 3
- Enab
Author: cy
Date: Wed Jan 16 02:05:42 2019
New Revision: 343073
URL: https://svnweb.freebsd.org/changeset/base/343073
Log:
Remove an IRIX-only source file.
MFC after:1 week
Deleted:
head/contrib/ipfilter/mli_ipl.c
___
svn-src-head@freebsd.or
Author: mw
Date: Wed Jan 16 02:13:21 2019
New Revision: 343074
URL: https://svnweb.freebsd.org/changeset/base/343074
Log:
Suppress excessive error prints in ENA TX hotpath
In FreeBSD, this is normal situation that the Tx ring is being full. In
hat case, the packet is put back into drbr an
Author: cem
Date: Wed Jan 16 02:19:04 2019
New Revision: 343075
URL: https://svnweb.freebsd.org/changeset/base/343075
Log:
vmm(4): Take steps towards multicore bhyve AMD support
vmm's CPUID emulation presented Intel topology information to the guest, but
disabled AMD topology information
Author: araujo
Date: Wed Jan 16 03:46:27 2019
New Revision: 343077
URL: https://svnweb.freebsd.org/changeset/base/343077
Log:
Fix broken uart on Win2016 guest.
Obtained from:Joyent (commit/2bf1a940afbd1382faff159e7c93c72779ca10f4)
MFC after:3 weeks.
Modified:
head/usr.sbin/
Author: jhibbits
Date: Wed Jan 16 03:52:43 2019
New Revision: 343078
URL: https://svnweb.freebsd.org/changeset/base/343078
Log:
powerpc: Fix FPU fsqrt emulation special case results
If fsqrts is emulated with +INF as its argument, the 0 return value causes a
NULL pointer dereference, pani
Author: glebius
Date: Wed Jan 16 04:02:08 2019
New Revision: 343080
URL: https://svnweb.freebsd.org/changeset/base/343080
Log:
Whitespace.
Modified:
head/sys/vm/uma_int.h
Modified: head/sys/vm/uma_int.h
==
--- head/s
Author: kib
Date: Wed Jan 16 05:09:29 2019
New Revision: 343081
URL: https://svnweb.freebsd.org/changeset/base/343081
Log:
Trim spaces at the end of lines.
Reviewed by: markj, ngie
Sponsored by: Mellanox Technologies
MFC after:1 week
Differential revision:https://reviews.
Author: kib
Date: Wed Jan 16 05:15:57 2019
New Revision: 343082
URL: https://svnweb.freebsd.org/changeset/base/343082
Log:
Implement shmat(2) flag SHM_REMAP.
Based on the description in Linux man page.
Reviewed by: markj, ngie (previous version)
Sponsored by: Mellanox Technologies
Author: kib
Date: Wed Jan 16 05:44:14 2019
New Revision: 343085
URL: https://svnweb.freebsd.org/changeset/base/343085
Log:
Improve iflib busdma(9) KPI use.
- Specify BUS_DMA_NOWAIT for bus_dmamap_load() on rx refill, since
callbacks are not supposed to be used.
- Match tso/non-tso tag
Author: kib
Date: Wed Jan 16 05:51:03 2019
New Revision: 343086
URL: https://svnweb.freebsd.org/changeset/base/343086
Log:
Remove unused prototype.
Sponsored by: The FreeBSD Foundation
MFC after:1 week
Modified:
head/sys/x86/x86/busdma_bounce.c
Modified: head/sys/x86/x86/busdma_bo
Author: kib
Date: Wed Jan 16 06:10:55 2019
New Revision: 343087
URL: https://svnweb.freebsd.org/changeset/base/343087
Log:
Style(9) fixes for x86/busdma_bounce.c.
Remove extra parentheses. Adjust indents and lines fill.
Sponsored by: The FreeBSD Foundation
MFC after:1 week
Modi
38 matches
Mail list logo