Author: rlibby
Date: Thu Feb 6 08:32:25 2020
New Revision: 357610
URL: https://svnweb.freebsd.org/changeset/base/357610
Log:
uma: remove UMA_ZFLAG_CACHEONLY flag
UMA_ZFLAG_CACHEONLY was essentially the same thing as UMA_ZONE_VM, but
with a more confusing name. Remove the flag, make UMA_
Author: rlibby
Date: Thu Feb 6 08:32:30 2020
New Revision: 357611
URL: https://svnweb.freebsd.org/changeset/base/357611
Log:
auditd_stop: wait_for_pids instead of sleeping
It's faster and more reliable to wait_for_pids than to sleep 1.
cem@ suggested just to remove auditd_stop() and u
Author: kaktus
Date: Thu Feb 6 12:45:58 2020
New Revision: 357614
URL: https://svnweb.freebsd.org/changeset/base/357614
Log:
sysctl(9): add CTLFLAG_NEEDGIANT flag
Add CTLFLAG_NEEDGIANT flag (modelled after D_NEEDGIANT) that will be used to
mark sysctls that still require locking Giant.
Author: luporl
Date: Thu Feb 6 13:21:59 2020
New Revision: 357615
URL: https://svnweb.freebsd.org/changeset/base/357615
Log:
Implement kvm_kerndisp
This change adds a new libkvm function, kvm_kerndisp(), that can be used to
retrieve the kernel displacement, that is the difference between
Author: royger
Date: Thu Feb 6 14:02:47 2020
New Revision: 357616
URL: https://svnweb.freebsd.org/changeset/base/357616
Log:
xen/console: fix priority of Xen console
Currently the Xen console is always attached with priority CN_REMOTE
(highest), which means that when booting with a singl
Author: emaste
Date: Thu Feb 6 14:13:33 2020
New Revision: 357617
URL: https://svnweb.freebsd.org/changeset/base/357617
Log:
Update WITH_/WITHOUT_BINUTILS_BOOTSTRAP descriptions
Use of binutils is being incrementally reduced. The specific binutils
are listed in the WITH_BINUTILS and WIT
Author: emaste
Date: Thu Feb 6 14:18:48 2020
New Revision: 357618
URL: https://svnweb.freebsd.org/changeset/base/357618
Log:
src.conf.5: regen after r357617, BINUTILS_BOOTSTRAP description update
Modified:
head/share/man/man5/src.conf.5
Modified: head/share/man/man5/src.conf.5
=
Author: pizzamig (ports committer)
Date: Thu Feb 6 14:31:29 2020
New Revision: 357619
URL: https://svnweb.freebsd.org/changeset/base/357619
Log:
mixer: call the cleanup function in a test
The set_empty_value test has a cleanup function, but is not called.
Fix it
Reviewed by: 0mp
On Fri, Jan 17, 2020 at 01:15:55AM +, Warner Losh wrote:
> Author: imp
> Date: Fri Jan 17 01:15:55 2020
> New Revision: 356818
> URL: https://svnweb.freebsd.org/changeset/base/356818
>
> Log:
> Pass BIO_SPEEDUP through all the geom layers
>
> While some geom layers pass unknown commands
Hi Pawel,
I don't think the (notyet) static assertion is quite right.
On Thu, Feb 6, 2020 at 4:46 AM Pawel Biernacki wrote:
>
> Author: kaktus
> Date: Thu Feb 6 12:45:58 2020
> New Revision: 357614
> URL: https://svnweb.freebsd.org/changeset/base/357614
>
> Log:
> sysctl(9): add CTLFLAG_NEEDG
Author: imp
Date: Thu Feb 6 16:38:02 2020
New Revision: 357621
URL: https://svnweb.freebsd.org/changeset/base/357621
Log:
'is now deprecated' -> 'is deprecated'
Man pages are written in a more timeless voice than news flashes,
so adopt the language to what we do elsewhere.
Modified:
h
Author: imp
Date: Thu Feb 6 16:38:06 2020
New Revision: 357622
URL: https://svnweb.freebsd.org/changeset/base/357622
Log:
Avoid the phrase 'now deprecated'
Reword this construct to be more consistent with normal man page language.
Modified:
head/share/man/man5/rc.conf.5
Modified: head/
On 2020-02-06 13:45, Pawel Biernacki wrote:
+#ifdef notyet
+#defineSYSCTL_ENFORCE_FLAGS(x)
\
+_Static_assert(((CTLFLAG_MPSAFE ^ CTLFLAG_NEEDGIANT) & (x)), \
+"Has to be either CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT")
+#else
+#define
Author: imp
Date: Thu Feb 6 17:52:02 2020
New Revision: 357624
URL: https://svnweb.freebsd.org/changeset/base/357624
Log:
No need to make sunlabel anymore
It was only built on sparc64. Since it wasn't a general tool on other
architectures, no need to keep it around for another release.
Author: imp
Date: Thu Feb 6 17:52:07 2020
New Revision: 357625
URL: https://svnweb.freebsd.org/changeset/base/357625
Log:
No need to have a special sparc64 list here.
Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D23525
Deleted:
head/usr.bin/Makefile.sparc64
_
Author: imp
Date: Thu Feb 6 17:52:11 2020
New Revision: 357626
URL: https://svnweb.freebsd.org/changeset/base/357626
Log:
Mark elf2aout as deprecated.
Only sparc64 used this, so we will be removing it from FreeBSD 13. Add
the usual deprecation notice in a MFC-able way.
Reviewed by:
Author: imp
Date: Thu Feb 6 17:51:48 2020
New Revision: 357623
URL: https://svnweb.freebsd.org/changeset/base/357623
Log:
Restore missing comment
I was overly agressive about removing the entire comment. It was still
valid, except the part about being only for some architectures.
Re
)
@@ -36,6 +36,10 @@
# xargs -n1 | sort | uniq -d;
# done
+# 20200206: Remove elf2aout
+OLD_FILES+=usr/bin/elf2aout
+OLD_FILES+=usr/share/man/man1/elf2aout.1.gz
+
# 20200204: simple_httpd removed
OLD_FILES+=usr/sbin/simple_httpd
Modified: head/usr.bin/Makefile
> Author: imp
> Date: Thu Feb 6 17:52:02 2020
> New Revision: 357624
> URL: https://svnweb.freebsd.org/changeset/base/357624
>
> Log:
> No need to make sunlabel anymore
>
> It was only built on sparc64. Since it wasn't a general tool on other
> architectures, no need to keep it around fo
Author: imp
Date: Thu Feb 6 18:00:50 2020
New Revision: 357629
URL: https://svnweb.freebsd.org/changeset/base/357629
Log:
Add elf2aout removal
After committing, I noticed elf2aout commit missed the relnotes
yes. It's unlikely to be interesting, since it's just part of sparc64
removal a
Author: imp
Date: Thu Feb 6 18:00:46 2020
New Revision: 357628
URL: https://svnweb.freebsd.org/changeset/base/357628
Log:
Add relnotes entries for armv5 and sparc64 being removed.
These commits lacked the proper relnotes entries in the commit
message.
Modified:
head/RELNOTES
Modified
Author: jhb
Date: Thu Feb 6 18:02:38 2020
New Revision: 357630
URL: https://svnweb.freebsd.org/changeset/base/357630
Log:
Fix DDB to unwind across exception frames.
While here, add an extra line of information for exceptions and
interrupts and compress the per-frame line down to one line
Author: jhb
Date: Thu Feb 6 18:04:45 2020
New Revision: 357632
URL: https://svnweb.freebsd.org/changeset/base/357632
Log:
Use the context created in makectx() for stack traces.
Always use the kdb_thr_ctx() for db_trace_thread() as on other
architectures. Initialize pcb_ra to be the sepc
Author: pfg
Date: Thu Feb 6 18:04:15 2020
New Revision: 357631
URL: https://svnweb.freebsd.org/changeset/base/357631
Log:
fstyp: sync HAMMER1/2 detection support with DragonFly BSD.
Submitted by: Tomohiro Kusumi
PR: 243929
Modified:
head/usr.sbin/fstyp/hammer.c
head/usr.sb
On Thu, Feb 6, 2020 at 10:57 AM Rodney W. Grimes
wrote:
> > Author: imp
> > Date: Thu Feb 6 17:52:02 2020
> > New Revision: 357624
> > URL: https://svnweb.freebsd.org/changeset/base/357624
> >
> > Log:
> > No need to make sunlabel anymore
> >
> > It was only built on sparc64. Since it wasn't
> On Thu, Feb 6, 2020 at 10:57 AM Rodney W. Grimes
> wrote:
>
> > > Author: imp
> > > Date: Thu Feb 6 17:52:02 2020
> > > New Revision: 357624
> > > URL: https://svnweb.freebsd.org/changeset/base/357624
> > >
> > > Log:
> > > No need to make sunlabel anymore
> > >
> > > It was only built on
Thanks, will be fixed before enabling it.
> On 6 Feb 2020, at 17:41, Hans Petter Selasky wrote:
>
> On 2020-02-06 13:45, Pawel Biernacki wrote:
>> +#ifdef notyet
>> +#define SYSCTL_ENFORCE_FLAGS(x)
>> \
>> +_Static_assert(((CTLFLAG_MPSAFE ^ CTLFL
Author: kevans
Date: Thu Feb 6 18:51:36 2020
New Revision: 357636
URL: https://svnweb.freebsd.org/changeset/base/357636
Log:
MFV r357635: imnport v1.9 of the O_SEARCH tests
The RCSID data was wrong, so this is effectively a record-only merge
with correction of said data. No further chang
Author: jeff
Date: Thu Feb 6 20:10:21 2020
New Revision: 357637
URL: https://svnweb.freebsd.org/changeset/base/357637
Log:
Add some global counters for SMR. These may eventually become per-smr
counters. In my stress test there is only one poll for every 15,000
frees. This means we are ef
Author: 0mp (doc,ports committer)
Date: Thu Feb 6 20:18:45 2020
New Revision: 357638
URL: https://svnweb.freebsd.org/changeset/base/357638
Log:
Improve documentation of bootconfig and PARTITIONS
- Mention bootconfig target in TARGETS section.
- Document PARTITIONS variable, which is only
Author: mav
Date: Thu Feb 6 20:32:53 2020
New Revision: 357639
URL: https://svnweb.freebsd.org/changeset/base/357639
Log:
Reduce number of atomic_add() calls in aggsum.
Previous code used 4 atomics to do aggsum_flush_bucket() and 2 more to
re-borrow after the flush. But since asc_borrow
Author: jeff
Date: Thu Feb 6 20:47:50 2020
New Revision: 357640
URL: https://svnweb.freebsd.org/changeset/base/357640
Log:
Temporarily force IFF_NEEDSEPOCH until drivers have been resolved.
Recent network epoch changes have left some drivers unexpectedly broken
and there is not yet a con
Author: jeff
Date: Thu Feb 6 20:51:46 2020
New Revision: 357641
URL: https://svnweb.freebsd.org/changeset/base/357641
Log:
Fix a race in smr_advance() that could result in unnecessary poll calls.
This was relatively harmless but surprising to see in counters. The
race occurred when rd_s
Author: markj
Date: Thu Feb 6 21:01:19 2020
New Revision: 357642
URL: https://svnweb.freebsd.org/changeset/base/357642
Log:
Remove more manual additions of -DSMP.
Since r357598 this should no longer be necessary.
Modified:
head/sys/modules/ix/Makefile
head/sys/modules/ixv/Makefile
h
On Thu, Feb 06, 2020 at 05:41:52PM +0100, Hans Petter Selasky wrote:
> On 2020-02-06 13:45, Pawel Biernacki wrote:
> > +#ifdef notyet
> > +#defineSYSCTL_ENFORCE_FLAGS(x)
> > \
> > +_Static_assert(((CTLFLAG_MPSAFE ^ CTLFLAG_NEEDGIANT) & (x)), \
> >
Author: jhb
Date: Thu Feb 6 21:46:15 2020
New Revision: 357643
URL: https://svnweb.freebsd.org/changeset/base/357643
Log:
Tidy the _set_tp function for RISC-V.
- Use a constant for the offset instead of a magic number.
- Use an addi instruction that writes to tp directly instead of a mv
> On 6. Feb 2020, at 21:51, Jeff Roberson wrote:
>
> Author: jeff
> Date: Thu Feb 6 20:51:46 2020
> New Revision: 357641
> URL: https://svnweb.freebsd.org/changeset/base/357641
>
> Log:
> Fix a race in smr_advance() that could result in unnecessary poll calls.
>
> This was relatively harm
On 2/6/20, Michael Tuexen wrote:
>
>
>> On 6. Feb 2020, at 21:51, Jeff Roberson wrote:
>>
>> Author: jeff
>> Date: Thu Feb 6 20:51:46 2020
>> New Revision: 357641
>> URL: https://svnweb.freebsd.org/changeset/base/357641
>>
>> Log:
>> Fix a race in smr_advance() that could result in unnecessary
Author: rlibby
Date: Fri Feb 7 00:47:58 2020
New Revision: 357644
URL: https://svnweb.freebsd.org/changeset/base/357644
Log:
smr.h: fix build after r357641
r357641 missed committing the change to sys/sys/smr.h.
Reported by: jkim
Submitted by: jeff
Reviewed by: rlibby
Different
39 matches
Mail list logo