Author: kevans
Date: Sat Feb 22 04:02:07 2020
New Revision: 358237
URL: https://svnweb.freebsd.org/changeset/base/358237
Log:
bsdbox: fix build
We've grown to also require libthr and libprivatestd to be explicitly linked
in here, so do this now to fix freebsd-wifi-build.
Submitted by
Author: jeff
Date: Sat Feb 22 03:44:10 2020
New Revision: 358236
URL: https://svnweb.freebsd.org/changeset/base/358236
Log:
Add an atomic-free tick moderated lazy update variant of SMR.
This enables very cheap read sections with free-to-use latencies and memory
overhead similar to epoch.
On Fri, Feb 21, 2020 at 3:53 PM Li-Wen Hsu wrote:
>
> On Sat, Feb 22, 2020 at 4:58 AM Antoine Brodin wrote:
> >
> > On Thu, Feb 20, 2020 at 4:01 AM Hiroki Sato wrote:
> > >
> > > Author: hrs
> > > Date: Thu Feb 20 03:01:27 2020
> > > New Revision: 358152
> > > URL: https://svnweb.freebsd.org/cha
Author: kevans
Date: Sat Feb 22 03:14:05 2020
New Revision: 358235
URL: https://svnweb.freebsd.org/changeset/base/358235
Log:
sh: fix read builtin on 32-bit systems
Specifically, any system with a 32-bit size_t; -residue is calculated as a
32-bit *then* promoted to the 64-bit off_t and th
Author: jhibbits
Date: Sat Feb 22 01:31:06 2020
New Revision: 358234
URL: https://svnweb.freebsd.org/changeset/base/358234
Log:
powerpc/booke: Fix handling of pvh_global_lock and pmap lock
ptbl_alloc() is expected to return with the pvh_global_lock and pmap
lock held. However, it will re
Author: imp
Date: Fri Feb 21 22:44:22 2020
New Revision: 358233
URL: https://svnweb.freebsd.org/changeset/base/358233
Log:
We pass a pointer to the flags to dabitsysctl, not an integer. Adjust the
handler to accept a poitner to a u_int. To make the type of the softc flags
stable and defined,
Given the report and looking at the change, I suspect the problem is
the promotion of '-residue' from size_t (unsigned 32-bit on i386) to
off_t (signed 64-bit). Something like '-(off_t)residue' or even
'off_t residue;' should fix it.
Repro:
static void
myoff(off_t foo)
{
printf("%jd\n",
On Sat, Feb 22, 2020 at 4:58 AM Antoine Brodin wrote:
>
> On Thu, Feb 20, 2020 at 4:01 AM Hiroki Sato wrote:
> >
> > Author: hrs
> > Date: Thu Feb 20 03:01:27 2020
> > New Revision: 358152
> > URL: https://svnweb.freebsd.org/changeset/base/358152
> >
> > Log:
> > Improve performance of "read" b
On Thu, Feb 20, 2020 at 4:01 AM Hiroki Sato wrote:
>
> Author: hrs
> Date: Thu Feb 20 03:01:27 2020
> New Revision: 358152
> URL: https://svnweb.freebsd.org/changeset/base/358152
>
> Log:
> Improve performance of "read" built-in command when using a seekable
> fd.
>
> The read built-in comma
Author: trasz
Date: Fri Feb 21 20:57:32 2020
New Revision: 358228
URL: https://svnweb.freebsd.org/changeset/base/358228
Log:
Fix formatting for tps values between 99.95 and 99.99; previously
it would display as "100.0", breaking vertical alignment.
MFC after:2 weeks
Differential Rev
Author: kevans
Date: Fri Feb 21 18:21:57 2020
New Revision: 358227
URL: https://svnweb.freebsd.org/changeset/base/358227
Log:
fetch(3): plug some leaks
In the successful case, sockshost is not freed prior to return.
The failure case can now be hit after fetch_reopen(), which was not tr
Author: kib
Date: Fri Feb 21 16:55:28 2020
New Revision: 358226
URL: https://svnweb.freebsd.org/changeset/base/358226
Log:
x86/identcpu.c whitespace cleanup.
Sponsored by: The FreeBSD Foundation
MFC after:3 days
Modified:
head/sys/x86/x86/identcpu.c
Modified: head/sys/x86/x86/iden
Author: kib
Date: Fri Feb 21 16:41:17 2020
New Revision: 358225
URL: https://svnweb.freebsd.org/changeset/base/358225
Log:
print_svm_info: decode a CPUID 0x800a.edx bit 20.
This is SVM features word, the bit is defined in "PPR for AMD Family
17h Model 31h B0", document 55803 Rev 0.54.
Author: kaktus
Date: Fri Feb 21 16:32:17 2020
New Revision: 358224
URL: https://svnweb.freebsd.org/changeset/base/358224
Log:
Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (7 of many)
r357614 added CTLFLAG_NEEDGIANT to make it easier to find nodes that are
still not MPSAFE (or al
Author: kaktus
Date: Fri Feb 21 16:23:00 2020
New Revision: 358223
URL: https://svnweb.freebsd.org/changeset/base/358223
Log:
Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (6 of many)
r357614 added CTLFLAG_NEEDGIANT to make it easier to find nodes that are
still not MPSAFE (or al
Author: hselasky
Date: Fri Feb 21 10:14:02 2020
New Revision: 358220
URL: https://svnweb.freebsd.org/changeset/base/358220
Log:
Fix broken MLX5_IB_INDEX() macro in mlx5ib(4).
The index should be computed as distance from arg[0] and not
the beginning of struct mlx5_ib_congestion .
Whi
Author: hselasky
Date: Fri Feb 21 09:52:20 2020
New Revision: 358219
URL: https://svnweb.freebsd.org/changeset/base/358219
Log:
Make sure the ACPI lid state is updated during boot and after resume.
While at it update the sysctl(9) description for the lid state.
Differential Revision:
Author: manu
Date: Fri Feb 21 09:29:56 2020
New Revision: 358218
URL: https://svnweb.freebsd.org/changeset/base/358218
Log:
Bump _FreeBSD_version after the recent linuxkpi changes
Modified:
head/sys/sys/param.h
Modified: head/sys/sys/param.h
==
Author: manu
Date: Fri Feb 21 09:28:45 2020
New Revision: 358217
URL: https://svnweb.freebsd.org/changeset/base/358217
Log:
linuxkpi: Move shmem related functions in it's own file
For drmkpi (D23085) we don't want the Linux struct file as we don't emulate
everything. Also the prototypes s
Author: bapt
Date: Fri Feb 21 08:00:42 2020
New Revision: 358210
URL: https://svnweb.freebsd.org/changeset/base/358210
Log:
ncurses: set the proper version in the updating message
Reported by: @jlduran (github)
Modified:
head/UPDATING
Modified: head/UPDATING
===
20 matches
Mail list logo