Author: 0mp (ports committer)
Date: Wed Nov 21 11:22:44 2018
New Revision: 340722
URL: https://svnweb.freebsd.org/changeset/base/340722
Log:
libbe(3): Put each error value in separate line.
As requested by a TODO in the source code.
Reviewed by: bcr
Approved by: krion (mentor, impl
Author: 0mp (ports committer)
Date: Wed Nov 21 12:46:28 2018
New Revision: 340723
URL: https://svnweb.freebsd.org/changeset/base/340723
Log:
Cross-reference libbe(3) and bectl(8).
Those two manual pages are already referencing each other in the HISTORY
sections, which people might skip. M
Author: oleg
Date: Wed Nov 21 13:34:21 2018
New Revision: 340724
URL: https://svnweb.freebsd.org/changeset/base/340724
Log:
Unbreak kernel build with VLAN_ARRAY defined.
MFC after:1 week
Modified:
head/sys/net/if_vlan.c
Modified: head/sys/net/if_vlan.c
==
Author: emaste
Date: Wed Nov 21 14:50:45 2018
New Revision: 340725
URL: https://svnweb.freebsd.org/changeset/base/340725
Log:
Add some non-default src.conf(5) knob descriptions
Some WITH_/WITHOUT_ defaults will likey change in the future (e.g. as we
migrate to copyfree base system compone
On Tue, 20 Nov 2018 at 21:21, Shawn Webb wrote:
>
> Hey Kostik,
>
> It appears this commit broke building/linking libc with LTO. I'm
> running into this assertion from clang/lld 7.0.0 (from the
> projects/clang700-import feature branch):
Yes, if you can reproduce with upstream clang/llvm/lld head
> Author: 0mp (ports committer)
> Date: Wed Nov 21 11:22:44 2018
> New Revision: 340722
> URL: https://svnweb.freebsd.org/changeset/base/340722
>
> Log:
> libbe(3): Put each error value in separate line.
>
> As requested by a TODO in the source code.
>
> Reviewed by:bcr
> App
On Thu, Nov 22, 2018, 12:19 AM Rodney W. Grimes <
free...@pdx.rh.cn85.dnsmgr.net wrote:
> > Author: 0mp (ports committer)
> > Date: Wed Nov 21 11:22:44 2018
> > New Revision: 340722
> > URL: https://svnweb.freebsd.org/changeset/base/340722
> >
> > Log:
> > libbe(3): Put each error value in separ
On Wed, Nov 21, 2018 at 10:19 AM Rodney W. Grimes
wrote:
>
> > Author: 0mp (ports committer)
> > Date: Wed Nov 21 11:22:44 2018
> > New Revision: 340722
> > URL: https://svnweb.freebsd.org/changeset/base/340722
> >
> > Log:
> > libbe(3): Put each error value in separate line.
> >
> > As reques
On 2018-11-21 08:18:55 (-0800), Rodney W. Grimes
wrote:
> > Author: 0mp (ports committer)
> > Date: Wed Nov 21 11:22:44 2018
> > New Revision: 340722
> > URL: https://svnweb.freebsd.org/changeset/base/340722
> >
> > Log:
> > libbe(3): Put each error value in separate line.
> >
> > As requ
Author: jhibbits
Date: Wed Nov 21 16:47:11 2018
New Revision: 340726
URL: https://svnweb.freebsd.org/changeset/base/340726
Log:
DTrace/powerpc: Fix FBT return probes
The FBT fuction boundary prober was setting one return probe marker value,
but the dtrace handler was expecting another. T
> On Wed, Nov 21, 2018 at 10:19 AM Rodney W. Grimes
> wrote:
> >
> > > Author: 0mp (ports committer)
> > > Date: Wed Nov 21 11:22:44 2018
> > > New Revision: 340722
> > > URL: https://svnweb.freebsd.org/changeset/base/340722
> > >
> > > Log:
> > > libbe(3): Put each error value in separate line.
On Wed, Nov 21, 2018 at 10:54 AM Rodney W. Grimes
wrote:
>
> > On Wed, Nov 21, 2018 at 10:19 AM Rodney W. Grimes
> > wrote:
> > >
> > > > Author: 0mp (ports committer)
> > > > Date: Wed Nov 21 11:22:44 2018
> > > > New Revision: 340722
> > > > URL: https://svnweb.freebsd.org/changeset/base/340722
Author: markj
Date: Wed Nov 21 17:18:27 2018
New Revision: 340730
URL: https://svnweb.freebsd.org/changeset/base/340730
Log:
Add a taskqueue_quiesce(9) KPI.
This is similar to taskqueue_drain_all(9) but will wait for the queue
to become idle before returning instead of only waiting for
Author: markj
Date: Wed Nov 21 17:19:08 2018
New Revision: 340731
URL: https://svnweb.freebsd.org/changeset/base/340731
Log:
Use taskqueue_quiesce(9) to implement taskq_wait().
PR: 227784
Reviewed by: cem
MFC after:1 week
Sponsored by: The FreeBSD Foundation
Different
On Wed, Nov 21, 2018 at 05:19:08PM +, Mark Johnston wrote:
> Author: markj
> Date: Wed Nov 21 17:19:08 2018
> New Revision: 340731
> URL: https://svnweb.freebsd.org/changeset/base/340731
>
> Log:
> Use taskqueue_quiesce(9) to implement taskq_wait().
>
> PR: 227784
> Reviewed b
Author: markj
Date: Wed Nov 21 17:28:10 2018
New Revision: 340733
URL: https://svnweb.freebsd.org/changeset/base/340733
Log:
Remove KN_HASKQLOCK.
It is a write-only flag whose last use was removed in r302235.
No functional change intended.
Reviewed by: kib
MFC after:1 week
Author: markj
Date: Wed Nov 21 17:32:09 2018
New Revision: 340734
URL: https://svnweb.freebsd.org/changeset/base/340734
Log:
Avoid unsynchronized updates to kn_status.
kn_status is protected by the kqueue's lock, but we were updating it
without the kqueue lock held. For EVFILT_TIMER knot
On Wed, Nov 21, 2018 at 08:07:16AM +0200, Konstantin Belousov wrote:
> On Tue, Nov 20, 2018 at 04:58:32PM -0800, Ben Widawsky wrote:
> > On 18-11-20 19:51:48, Mark Johnston wrote:
> > > On Tue, Nov 20, 2018 at 04:42:39PM -0800, Ben Widawsky wrote:
> > > > On 18-11-20 19:35:15, Mark Johnston wrote:
Author: mav
Date: Wed Nov 21 18:18:57 2018
New Revision: 340737
URL: https://svnweb.freebsd.org/changeset/base/340737
Log:
Revert r340096: 9952 Block size change during zfs receive drops spill block
It was reported, and I easily reproduced it, that this change triggers panic
when receivin
Author: tuexen
Date: Wed Nov 21 18:19:15 2018
New Revision: 340738
URL: https://svnweb.freebsd.org/changeset/base/340738
Log:
Improve two KASSERTs in the TCP RACK stack.
There are two locations where an always true comparison was made in
a KASSERT. Replace this by an appropriate check and
Author: mjg
Date: Wed Nov 21 18:56:15 2018
New Revision: 340742
URL: https://svnweb.freebsd.org/changeset/base/340742
Log:
proc: implement pid hash locks and an iterator
forks, exits and waits are frequently stalled during poudriere -j 128 runs
due to killpg and process list exports perfo
> Author: mav
> Date: Wed Nov 21 18:18:57 2018
> New Revision: 340737
> URL: https://svnweb.freebsd.org/changeset/base/340737
>
> Log:
> Revert r340096: 9952 Block size change during zfs receive drops spill block
>
> It was reported, and I easily reproduced it, that this change triggers pan
On 21.11.2018 14:01, Rodney W. Grimes wrote:
>> Author: mav
>> Date: Wed Nov 21 18:18:57 2018
>> New Revision: 340737
>> URL: https://svnweb.freebsd.org/changeset/base/340737
>>
>> Log:
>> Revert r340096: 9952 Block size change during zfs receive drops spill block
>>
>> It was reported, and
Author: mjg
Date: Wed Nov 21 20:15:56 2018
New Revision: 340744
URL: https://svnweb.freebsd.org/changeset/base/340744
Log:
proc: convert pfind & friends to use pidhash locks and other cleanup
pfind_locked is retired as it relied on allproc which unnecessarily
restricts locking of the hash
On Wed, Nov 21, 2018 at 08:54:10AM -0800, Rodney W. Grimes wrote:
> > On Wed, Nov 21, 2018 at 10:19 AM Rodney W. Grimes
> > wrote:
> > >
> > > > Author: 0mp (ports committer)
> > > > Date: Wed Nov 21 11:22:44 2018
> > > > New Revision: 340722
> > > > URL: https://svnweb.freebsd.org/changeset/base/
Author: sobomax
Date: Wed Nov 21 21:46:06 2018
New Revision: 340745
URL: https://svnweb.freebsd.org/changeset/base/340745
Log:
Fix CU: output of the --debug-dump=decodedline, the problem there
is that both file name and current directory is recorded, however
file name sometimes already conta
Author: oshogbo
Date: Wed Nov 21 21:48:02 2018
New Revision: 340746
URL: https://svnweb.freebsd.org/changeset/base/340746
Log:
strings: fix style nits
Reviewed by: cem, emaste, Joseph Koshy
Differential Revision:https://reviews.freebsd.org/D18036
Modified:
head/contrib/elftoo
Author: mjg
Date: Wed Nov 21 22:01:06 2018
New Revision: 340747
URL: https://svnweb.freebsd.org/changeset/base/340747
Log:
uipc_shm: use unr64 for inode numbers
Sponsored by: The FreeBSD Foundation
Modified:
head/sys/kern/uipc_shm.c
Modified: head/sys/kern/uipc_shm.c
===
Author: mjg
Date: Wed Nov 21 22:16:10 2018
New Revision: 340748
URL: https://svnweb.freebsd.org/changeset/base/340748
Log:
proc: update list manipulation comment on process exit
Processes stay in the hash until they get reaped.
This code does not unlink the child from the parent, so re
Hello,
On Wed, 21 Nov 2018 at 17:54, Rodney W. Grimes <
free...@pdx.rh.cn85.dnsmgr.net> wrote:
> > On Wed, Nov 21, 2018 at 10:19 AM Rodney W. Grimes
> > wrote:
> > >
> > > > Author: 0mp (ports committer)
> > > > Date: Wed Nov 21 11:22:44 2018
> > > > New Revision: 340722
> > > > URL: https://svn
Author: mjg
Date: Wed Nov 21 22:25:05 2018
New Revision: 340749
URL: https://svnweb.freebsd.org/changeset/base/340749
Log:
uipc_usrreq: fix inode number assignment
The code was incrementing a global variable in an unsafe manner.
Two different threads stating two different sockets could ha
Author: mjg
Date: Wed Nov 21 22:37:49 2018
New Revision: 340750
URL: https://svnweb.freebsd.org/changeset/base/340750
Log:
strings: unbreak the build after r340746
Discussed with: oshogbo
Sponsored by: The FreeBSD Foundation
Modified:
head/contrib/elftoolchain/strings/strings.c
On Sat, Oct 20, 2018 at 9:09 PM Justin Hibbits wrote:
>
> Author: jhibbits
> Date: Sun Oct 21 02:08:57 2018
> New Revision: 339516
> URL: https://svnweb.freebsd.org/changeset/base/339516
>
> Log:
> powerpc/dtrace: Use explicit bit numbers to mask out PSL_EE
>
> There seems to be a race in CI,
On Wed, Nov 21, 2018 at 9:42 PM Kyle Evans wrote:
>
> On Sat, Oct 20, 2018 at 9:09 PM Justin Hibbits wrote:
> >
> > Author: jhibbits
> > Date: Sun Oct 21 02:08:57 2018
> > New Revision: 339516
> > URL: https://svnweb.freebsd.org/changeset/base/339516
> >
> > Log:
> > powerpc/dtrace: Use explici
On Wed, Nov 21, 2018 at 10:02 PM Kyle Evans wrote:
>
> On Wed, Nov 21, 2018 at 9:42 PM Kyle Evans wrote:
> >
> > On Sat, Oct 20, 2018 at 9:09 PM Justin Hibbits wrote:
> > >
> > > Author: jhibbits
> > > Date: Sun Oct 21 02:08:57 2018
> > > New Revision: 339516
> > > URL: https://svnweb.freebsd.or
Author: cy
Date: Thu Nov 22 04:48:27 2018
New Revision: 340754
URL: https://svnweb.freebsd.org/changeset/base/340754
Log:
Allow forced start of ipmon in special cases where testing is desired
(or other special cases) and when ipfilter is disabled in rc.conf but
started by other means.
M
On Wed, Nov 21, 2018 at 10:02:15PM -0600, Kyle Evans wrote:
> On Wed, Nov 21, 2018 at 9:42 PM Kyle Evans wrote:
> >
> > On Sat, Oct 20, 2018 at 9:09 PM Justin Hibbits wrote:
> > >
> > > Author: jhibbits
> > > Date: Sun Oct 21 02:08:57 2018
> > > New Revision: 339516
> > > URL: https://svnweb.free
37 matches
Mail list logo