Author: sephe
Date: Fri Nov 25 08:31:13 2016
New Revision: 309138
URL: https://svnweb.freebsd.org/changeset/base/309138
Log:
hyperv/vmbus: Always try disconnect/free bufring memory upon channel close
While I'm here, minor wording and style changes.
MFC after:1 week
Sponsored by:
Author: sephe
Date: Fri Nov 25 08:57:52 2016
New Revision: 309139
URL: https://svnweb.freebsd.org/changeset/base/309139
Log:
hyperv/vmbus: Propagate close error.
MFC after:1 week
Sponsored by: Microsoft
Differential Revision:https://reviews.freebsd.org/D8599
Modified:
hea
Author: sephe
Date: Fri Nov 25 09:13:10 2016
New Revision: 309140
URL: https://svnweb.freebsd.org/changeset/base/309140
Log:
hyperv/vmbus: Add a simplified version of channel close.
So that the caller can know the channel close error and react accordingly.
MFC after:1 week
Sponso
Author: emaste
Date: Fri Nov 25 13:15:28 2016
New Revision: 309142
URL: https://svnweb.freebsd.org/changeset/base/309142
Log:
Add WITH_LLD_AS_LD build knob
If set it installs LLD as /usr/bin/ld. LLD (as of version 3.9) is not
capable of linking the world and kernel, but can self-host and
Author: fabient
Date: Fri Nov 25 13:49:33 2016
New Revision: 309143
URL: https://svnweb.freebsd.org/changeset/base/309143
Log:
In a dual processor system (2*6 cores) during IPSec throughput tests,
we see a lot of contention on the arc4 lock, used to generate the IV
of the ESP output packets.
Author: fabient
Date: Fri Nov 25 14:44:49 2016
New Revision: 309144
URL: https://svnweb.freebsd.org/changeset/base/309144
Log:
IPsec RFC6479 support for replay window sizes up to 2^32 - 32 packets.
Since the previous algorithm, based on bit shifting, does not scale
with large replay windo
On Fri, Nov 25, 2016 at 01:49:33PM +, Fabien Thomas wrote:
> Author: fabient
> Date: Fri Nov 25 13:49:33 2016
> New Revision: 309143
> URL: https://svnweb.freebsd.org/changeset/base/309143
>
> Log:
> In a dual processor system (2*6 cores) during IPSec throughput tests,
> we see a lot of co
Author: andrew
Date: Fri Nov 25 16:04:36 2016
New Revision: 309145
URL: https://svnweb.freebsd.org/changeset/base/309145
Log:
Fix the TLB conflict abort value. This should be a no-op as we don't use
this value in the code.
Modified:
head/sys/arm64/include/armreg.h
Modified: head/sys/arm64/
> Le 25 nov. 2016 à 17:00, Mateusz Guzik a écrit :
>
> On Fri, Nov 25, 2016 at 01:49:33PM +, Fabien Thomas wrote:
>> Author: fabient
>> Date: Fri Nov 25 13:49:33 2016
>> New Revision: 309143
>> URL: https://svnweb.freebsd.org/changeset/base/309143
>>
>> Log:
>> In a dual processor system (
Author: fabient
Date: Fri Nov 25 17:20:23 2016
New Revision: 309146
URL: https://svnweb.freebsd.org/changeset/base/309146
Log:
Update r309143 to prevent false sharing.
Reported by: mjg
Approved by: so
MFC after:1 month
Modified:
head/sys/libkern/arc4random.c
Modified: head/sys
Author: dim
Date: Fri Nov 25 18:01:32 2016
New Revision: 309147
URL: https://svnweb.freebsd.org/changeset/base/309147
Log:
Pull in r282174 from upstream llvm trunk (by Krzysztof Parzyszek):
[PPC] Set SP after loading data from stack frame, if no red zone is
present
Follow-up to
Author: jhb
Date: Fri Nov 25 18:02:43 2016
New Revision: 309148
URL: https://svnweb.freebsd.org/changeset/base/309148
Log:
Permit timed sleeps for threads other than thread0 before timers are working.
The callout subsystem already handles early callouts and schedules
the first clock inter
Author: dim
Date: Fri Nov 25 18:12:13 2016
New Revision: 309149
URL: https://svnweb.freebsd.org/changeset/base/309149
Log:
Pull in r283060 from upstream llvm trunk (by Hal Finkel):
[PowerPC] Refactor soft-float support, and enable PPC64 soft float
This change enables soft-float for
Author: dim
Date: Fri Nov 25 18:12:57 2016
New Revision: 309150
URL: https://svnweb.freebsd.org/changeset/base/309150
Log:
Bump FREEBSD_CC_VERSION again for r309147 and 309149.
Modified:
head/lib/clang/freebsd_cc_version.h
Modified: head/lib/clang/freebsd_cc_version.h
===
Author: emaste
Date: Fri Nov 25 18:57:14 2016
New Revision: 309151
URL: https://svnweb.freebsd.org/changeset/base/309151
Log:
Use explicit 0x20 instead of MAXPAGESIZE for the amd64 kernel physaddr
MAXPAGESIZE is not well defined by the GNU ld documentation.
Different linkers, and diff
Author: jhibbits
Date: Fri Nov 25 19:36:27 2016
New Revision: 309167
URL: https://svnweb.freebsd.org/changeset/base/309167
Log:
Add an isync to after mtsrin, required by the MPC750 errata
MPC750 User Manual Errata (rev 1) adds a note to C.4.2.2 noting that mtsr,
mtsrin, and mtmsr all requ
On 25 November 2016 at 08:15, Ed Maste wrote:
> Author: emaste
> Date: Fri Nov 25 13:15:28 2016
> New Revision: 309142
> URL: https://svnweb.freebsd.org/changeset/base/309142
>
> Log:
> Add WITH_LLD_AS_LD build knob
>
> If set it installs LLD as /usr/bin/ld. LLD (as of version 3.9) is not
>
On Fri, Nov 25, 2016 at 01:49:33PM +, Fabien Thomas wrote:
> + if (reseed || atomic_cmpset_int(&arc4rand_iniseed_state,
> + ARC4_ENTR_HAVE, ARC4_ENTR_SEED)) {
> + ARC4_FOREACH(arc4)
> + arc4_randomstir(arc4);
> + }
How about eliminat
Fabien Thomas writes:
> Author: fabient
> Date: Fri Nov 25 14:44:49 2016
> New Revision: 309144
> URL: https://svnweb.freebsd.org/changeset/base/309144
>
> Log:
> IPsec RFC6479 support for replay window sizes up to 2^32 - 32 packets.
>
> Since the previous algorithm, based on bit shifting, do
Author: dim
Date: Fri Nov 25 22:33:15 2016
New Revision: 309169
URL: https://svnweb.freebsd.org/changeset/base/309169
Log:
Get rid of separate Subversion mergeinfo properties for llvm-dwarfdump
and llvm-lto. The mergeinfo confuses Subversion enormously, and these
directories will just use t
Author: rmacklem
Date: Fri Nov 25 23:28:09 2016
New Revision: 309171
URL: https://svnweb.freebsd.org/changeset/base/309171
Log:
Stop "nfsstat -z" from clearing counts of NFSv4 state structures.
The "-z" option on nfsstats was erroneously zeroing out the counts
of NFSv4 state structures. T
Author: emaste
Date: Sat Nov 26 00:59:01 2016
New Revision: 309174
URL: https://svnweb.freebsd.org/changeset/base/309174
Log:
netipsec: fix build after 309144
Reported by: rakuco
Modified:
head/sys/netipsec/key_debug.c
Modified: head/sys/netipsec/key_debug.c
===
On 24 November 2016 at 14:39, Dag-Erling Smørgrav wrote:
>
> Precisely. If memory serves, I wrote that comment after receiving a
> patch from someone who made the same mistake that I had already made and
> reverted *twice*. It's the logical, sane thing to do: replace a BSD
> primitive with the e
Author: pfg
Date: Sat Nov 26 02:06:33 2016
New Revision: 309179
URL: https://svnweb.freebsd.org/changeset/base/309179
Log:
ext2: avoid possible overflow when calculating malloc size.
This is inspired on r308064 for case of reloading UFS.
MFC after:1 week
Modified:
head/sys/fs/ex
Author: delphij
Date: Sat Nov 26 07:02:44 2016
New Revision: 309184
URL: https://svnweb.freebsd.org/changeset/base/309184
Log:
style(9) indent changes, no actual code change.
MFC after:2 weeks
Modified:
head/usr.bin/gzip/unpack.c
Modified: head/usr.bin/gzip/unpack.c
25 matches
Mail list logo