Author: cem
Date: Fri Sep 6 08:07:12 2019
New Revision: 351926
URL: https://svnweb.freebsd.org/changeset/base/351926
Log:
ext2fs: Remove redundant brelse() after r294954
Coccinelle:
@ rule1 @
identifier __error;
@@
...
int __error;
...
@ rule2 depends on rule1 @
Author: cem
Date: Fri Sep 6 08:07:36 2019
New Revision: 351927
URL: https://svnweb.freebsd.org/changeset/base/351927
Log:
cd9660: Remove redundant brelse() after r294954
Same automation.
No functional change.
Modified:
head/sys/fs/cd9660/cd9660_vfsops.c
head/sys/fs/cd9660/cd9660_
Author: cem
Date: Fri Sep 6 08:08:10 2019
New Revision: 351928
URL: https://svnweb.freebsd.org/changeset/base/351928
Log:
msdosfs: Remove redundant brelse() after r294954
Same automation.
No functional change.
Modified:
head/sys/fs/msdosfs/msdosfs_fat.c
head/sys/fs/msdosfs/msdosf
Author: cem
Date: Fri Sep 6 08:08:33 2019
New Revision: 351929
URL: https://svnweb.freebsd.org/changeset/base/351929
Log:
ufs: Remove redundant brelse() after r294954
Same automation.
No functional change.
Modified:
head/sys/ufs/ffs/ffs_alloc.c
head/sys/ufs/ffs/ffs_balloc.c
hea
> On 4 Sep 2019, at 21:55, Rebecca Cran wrote:
>
> Author: bcran
> Date: Wed Sep 4 20:55:48 2019
> New Revision: 351831
> URL: https://svnweb.freebsd.org/changeset/base/351831
>
> Log:
> The efifat files are no longer used: remove the code to build them
I use them in a Jenkins instance to te
Author: takawata
Date: Fri Sep 6 10:12:05 2019
New Revision: 351930
URL: https://svnweb.freebsd.org/changeset/base/351930
Log:
Add embedded Managed Object Format blob access to acpi_wmi(4).
This blob is can be converted to human readable form by bmfdec.
(http://github.com/pali/bmfdec)
Author: manu
Date: Fri Sep 6 12:26:45 2019
New Revision: 351931
URL: https://svnweb.freebsd.org/changeset/base/351931
Log:
pkgbase: r351861 didn't solve everything, we need to default to the utilities
package too
Modified:
head/share/mk/bsd.files.mk
Modified: head/share/mk/bsd.files.mk
===
On Fri, Sep 06, 2019 at 12:15:07PM +0800, Philip Paeps wrote:
> On 2019-09-06 11:15:12 (+0800), Ian Lepore wrote:
> > On Fri, 2019-09-06 at 01:19 +, Philip Paeps wrote:
> >> Author: philip
> >> Date: Fri Sep 6 01:19:31 2019
> >> New Revision: 351918
> >> URL: https://svnweb.freebsd.org/changes
On Fri, 2019-09-06 at 12:15 +0800, Philip Paeps wrote:
> On 2019-09-06 11:15:12 (+0800), Ian Lepore wrote:
> > On Fri, 2019-09-06 at 01:19 +, Philip Paeps wrote:
> > > Author: philip
> > > Date: Fri Sep 6 01:19:31 2019
> > > New Revision: 351918
> > > URL: https://svnweb.freebsd.org/changeset/
Author: rrs
Date: Fri Sep 6 14:25:41 2019
New Revision: 351934
URL: https://svnweb.freebsd.org/changeset/base/351934
Log:
This adds the final tweaks to LRO that will now allow me
to add BBR. These changes make it so you can get an
array of timestamps instead of a compressed ack/data segment
Author: fabient
Date: Fri Sep 6 14:30:23 2019
New Revision: 351935
URL: https://svnweb.freebsd.org/changeset/base/351935
Log:
Fix broken window replay check that will allow old packet to be accepted.
This was introduced in r309144.
Submitted by: Jean-Francois HREN
Approved by: ae@
Author: imp
Date: Fri Sep 6 15:01:47 2019
New Revision: 351936
URL: https://svnweb.freebsd.org/changeset/base/351936
Log:
Fix typo not -> nor and add 'the' because we are talking about specific flags
and make the punctuation parallel between the three cases.
Submitted by: Yoshihiro Ota-s
Author: johalun
Date: Fri Sep 6 15:43:53 2019
New Revision: 351937
URL: https://svnweb.freebsd.org/changeset/base/351937
Log:
LinuxKPI: Improve sysfs support.
- Add functions for creating and merging sysfs groups.
- Add sysfs_streq function to compare strings ignoring newline from the
Author: dim
Date: Fri Sep 6 16:06:37 2019
New Revision: 351938
URL: https://svnweb.freebsd.org/changeset/base/351938
Log:
Pull in r37 from upstream llvm trunk (by Eli Friedman):
[IfConversion] Fix diamond conversion with unanalyzable branches.
The code was incorrectly counting
Author: scottl
Date: Fri Sep 6 17:06:48 2019
New Revision: 351939
URL: https://svnweb.freebsd.org/changeset/base/351939
Log:
Add myself as a mentor for Scott Phillip (scottph)
Modified:
head/share/misc/committers-src.dot
Modified: head/share/misc/committers-src.dot
=
Author: imp
Date: Fri Sep 6 18:25:42 2019
New Revision: 351950
URL: https://svnweb.freebsd.org/changeset/base/351950
Log:
Initialize if_hw_tsomaxsegsize to 0 to appease gcc's flow analysis as a
fail-safe.
Modified:
head/sys/netinet/tcp_output.c
Modified: head/sys/netinet/tcp_output.c
Author: rrs
Date: Fri Sep 6 18:29:48 2019
New Revision: 351951
URL: https://svnweb.freebsd.org/changeset/base/351951
Log:
This adds in the missing counter initialization which
I had forgotten to bring over.. opps.
Differential Revision: https://reviews.freebsd.org/D21127
Modified:
hea
Author: cem
Date: Fri Sep 6 18:33:39 2019
New Revision: 351952
URL: https://svnweb.freebsd.org/changeset/base/351952
Log:
Fix build after r351934
tcp_queue_pkts() is only used if TCPHPTS is defined (and it is not by
default).
Reported by: gcc
Modified:
head/sys/netinet/tcp_lro.c
Author: 0mp (ports committer)
Date: Fri Sep 6 18:51:41 2019
New Revision: 351953
URL: https://svnweb.freebsd.org/changeset/base/351953
Log:
rc.8: Update documentation regarding old-style rc scripts
The EXAMPLES section does not contain any examples of output formats for
the old-style scr
Author: sjg
Date: Fri Sep 6 19:05:01 2019
New Revision: 351954
URL: https://svnweb.freebsd.org/changeset/base/351954
Log:
Use file destdir for stage_as sets
We cannot use file (without :T) to name targets
but we can use the destination directory (with / replaced by _)
This has the bene
Author: tsoome
Date: Fri Sep 6 19:30:23 2019
New Revision: 351959
URL: https://svnweb.freebsd.org/changeset/base/351959
Log:
loader.efi: UEFI text mode background colors are only using 3 bits
Need to mask background colors to pass allowed value.
Modified:
head/stand/efi/libefi/efi_conso
Author: asomers
Date: Fri Sep 6 19:40:11 2019
New Revision: 351961
URL: https://svnweb.freebsd.org/changeset/base/351961
Log:
Coverity fixes in fusefs(5)
CID 1404532 fixes a signed vs unsigned comparison error in fuse_vnop_bmap.
It could potentially have resulted in VOP_BMAP reporting to
Author: asomers
Date: Fri Sep 6 19:50:45 2019
New Revision: 351963
URL: https://svnweb.freebsd.org/changeset/base/351963
Log:
fusefs: coverity cleanup in the tests
Address the following defects reported by Coverity:
* Structurally dead code (CID 1404366): set m_quit before FAIL, not a
Author: imp
Date: Sat Sep 7 03:51:26 2019
New Revision: 351967
URL: https://svnweb.freebsd.org/changeset/base/351967
Log:
Some newer HID devices have descriptors that are larger than 1k. Bump
this to 2k to prevent them from being truncated and ignored. It
appears to be a sanity check only,
On 2019-09-06 22:18:36 (+0800), Ian Lepore wrote:
On Fri, 2019-09-06 at 12:15 +0800, Philip Paeps wrote:
On 2019-09-06 11:15:12 (+0800), Ian Lepore wrote:
On Fri, 2019-09-06 at 01:19 +, Philip Paeps wrote:
Log:
riscv: default to HZ=100
This seems like a bad idea. I've run a 90mhz armv
On Fri, Sep 6, 2019 at 9:54 PM Philip Paeps wrote:
> On 2019-09-06 22:18:36 (+0800), Ian Lepore wrote:
> > On Fri, 2019-09-06 at 12:15 +0800, Philip Paeps wrote:
> >> On 2019-09-06 11:15:12 (+0800), Ian Lepore wrote:
> >>> On Fri, 2019-09-06 at 01:19 +, Philip Paeps wrote:
> Log:
>
On 2019-09-07 12:06:32 (+0800), Warner Losh wrote:
On Fri, Sep 6, 2019 at 9:54 PM Philip Paeps
wrote:
On 2019-09-06 22:18:36 (+0800), Ian Lepore wrote:
On Fri, 2019-09-06 at 12:15 +0800, Philip Paeps wrote:
On 2019-09-06 11:15:12 (+0800), Ian Lepore wrote:
On Fri, 2019-09-06 at 01:19 +,
Author: philip
Date: Sat Sep 7 05:13:31 2019
New Revision: 351969
URL: https://svnweb.freebsd.org/changeset/base/351969
Log:
riscv: restore default HZ=1000, keep QEMU at HZ=100
This reverts r351918 and r351919.
Discussed with: br, ian, imp
Modified:
head/sys/kern/subr_param.c
28 matches
Mail list logo