Author: karels
Date: Sat May 30 02:09:36 2020
New Revision: 361642
URL: https://svnweb.freebsd.org/changeset/base/361642
Log:
genet: workaround for problem with ICMPv6 echo replies
The ICMPv6 echo reply is constructed with the IPv6 header too close to
the beginning of a packet for an Ethe
Author: karels
Date: Sat May 30 02:02:34 2020
New Revision: 361641
URL: https://svnweb.freebsd.org/changeset/base/361641
Log:
genet: fix issues with transmit checksum offload
Fix problem with ICMP echo replies: check only deferred data checksum
flags, and not the received checksum status
Author: dougm
Date: Sat May 30 01:48:12 2020
New Revision: 361640
URL: https://svnweb.freebsd.org/changeset/base/361640
Log:
RB_REMOVE invokes RB_REMOVE_COLOR either when child is red or child is
null. In the first case, RB_REMOVE_COLOR just changes the child to
black and returns. With this
Author: jhb
Date: Sat May 30 00:47:03 2020
New Revision: 361638
URL: https://svnweb.freebsd.org/changeset/base/361638
Log:
Only build ipsec modules if the kernel includes IPSEC_SUPPORT.
Honoring the kernel-supplied opt_ipsec.h in r361632 causes builds of
ipsec modules to fail if the kerne
Author: adrian
Date: Sat May 30 00:07:42 2020
New Revision: 361637
URL: https://svnweb.freebsd.org/changeset/base/361637
Log:
[run] Don't add 11ng channels (2GHz) for RF2020
Don't also add the 11ng channels if we're not in 11n mode or net80211 will
get super weird.
Modified:
head/sys/d
Author: adrian
Date: Sat May 30 00:06:26 2020
New Revision: 361636
URL: https://svnweb.freebsd.org/changeset/base/361636
Log:
[run] Set ampdu rxmax same as linux; RF2020 isn't an 11n NIC
This is from the linux driver:
* set the ampdu rx max to 32k for 1 stream devics like mine, and
On 5/29/20 12:21 PM, John Baldwin wrote:
> Author: jhb
> Date: Fri May 29 19:21:35 2020
> New Revision: 361632
> URL: https://svnweb.freebsd.org/changeset/base/361632
>
> Log:
> Honor opt_ipsec.h from kernel builds.
>
> To make this simpler, set the default contents of opt_ipsec.h
> for s
On Fri, May 22, 2020 at 10:51 AM Kyle Evans wrote:
>
> On Fri, May 22, 2020 at 4:17 AM Wei Hu wrote:
> >
> > Author: whu
> > Date: Fri May 22 09:17:07 2020
> > New Revision: 361360
> > URL: https://svnweb.freebsd.org/changeset/base/361360
> >
> > Log:
> > Socket AF_HYPERV should return failure
Author: cem
Date: Fri May 29 19:44:18 2020
New Revision: 361635
URL: https://svnweb.freebsd.org/changeset/base/361635
Log:
geom_part: Dispatch to partitions to create providers and aliases
This allows partitions to create additional aliases of their own. The
default method implementation
Author: jhb
Date: Fri May 29 19:29:10 2020
New Revision: 361634
URL: https://svnweb.freebsd.org/changeset/base/361634
Log:
Add opt_ipsec.h to fix standalone builds after r361633.
Modified:
head/sys/modules/if_enc/Makefile
Modified: head/sys/modules/if_enc/Makefile
===
Author: jhb
Date: Fri May 29 19:22:40 2020
New Revision: 361633
URL: https://svnweb.freebsd.org/changeset/base/361633
Log:
Consistently include opt_ipsec.h for consumers of .
This fixes ipsec.ko to include all of IPSEC_DEBUG.
Reviewed by: imp
MFC after:2 weeks
Sponsored by: Ne
Author: jhb
Date: Fri May 29 19:21:35 2020
New Revision: 361632
URL: https://svnweb.freebsd.org/changeset/base/361632
Log:
Honor opt_ipsec.h from kernel builds.
To make this simpler, set the default contents of opt_ipsec.h
for standalone modules in sys/conf/config.mk.
Reviewed by: i
On Fri, May 29, 2020 at 12:08 PM Wei Hu wrote:
> > -Original Message-
> > > > [... snip ...]
> > > > +void
> > > > +hvs_trans_init(void)
> > > > +{
> > > > + /* Skip initialization of globals for non-default instances. */
> > > > + if (!IS_DEFAULT_VNET(curvnet))
> > > > +
Author: mav
Date: Fri May 29 17:52:20 2020
New Revision: 361630
URL: https://svnweb.freebsd.org/changeset/base/361630
Log:
Remove session locking from cfiscsi_pdu_update_cmdsn().
cs_cmdsn can be incremented with single atomic. expcmdsn/maxcmdsn set in
cfiscsi_pdu_prepare() based on cs_cm
Author: emaste
Date: Fri May 29 17:39:25 2020
New Revision: 361629
URL: https://svnweb.freebsd.org/changeset/base/361629
Log:
regen src.conf.5 after BINUTILS changes
Modified:
head/share/man/man5/src.conf.5
Modified: head/share/man/man5/src.conf.5
Author: emaste
Date: Fri May 29 17:36:54 2020
New Revision: 361628
URL: https://svnweb.freebsd.org/changeset/base/361628
Log:
Disable BINUTILS by default on i386
The retirement of obsolete binutils 2.17.50 has been in progress for
quite some time. All tools other than GNU as were removed
> -Original Message-
> > > [... snip ...]
> > > +void
> > > +hvs_trans_init(void)
> > > +{
> > > + /* Skip initialization of globals for non-default instances. */
> > > + if (!IS_DEFAULT_VNET(curvnet))
> > > + return;
> > > +
> > > + if (vm_guest != VM_GUE
Author: adrian
Date: Fri May 29 15:56:44 2020
New Revision: 361626
URL: https://svnweb.freebsd.org/changeset/base/361626
Log:
[run] Add initial 802.11n support.
* Enable self-generated 11n frames
* add MCS rates for 1-stream and 2-stream rates; will do 3-stream
once the rest of this t
On Fri, May 22, 2020 at 11:12 AM Kyle Evans wrote:
>
> On Wed, May 20, 2020 at 6:04 AM Wei Hu wrote:
> >
> > Author: whu
> > Date: Wed May 20 11:03:59 2020
> > New Revision: 361275
> > URL: https://svnweb.freebsd.org/changeset/base/361275
> >
> > Log:
> > HyperV socket implementation for FreeBS
On 5/29/20 1:34 AM, Mateusz Guzik wrote:
> This gives me tinderbox failures with mips:
>
> _.mips.XLP64
>
> /usr/src/sys/mips/nlm/dev/sec/nlmseclib.c:113:10: error: enumeration
> value 'CRYPTO_BUF_NONE' not handled in switch [-Werror,-Wswitch]
> switch (crp->crp_buf.cb_type) {
>
> _.mips
On 5/29/20 12:46 AM, Kornel Dulęba wrote:
> On Thu, May 28, 2020 at 8:30 PM John Baldwin wrote:
>
>> On 5/28/20 2:13 AM, Marcin Wojtas wrote:
>>> Author: mw
>>> Date: Thu May 28 09:13:20 2020
>>> New Revision: 361583
>>> URL: https://svnweb.freebsd.org/changeset/base/361583
>>>
>>> Log:
>>> Cha
Author: mav
Date: Fri May 29 13:07:52 2020
New Revision: 361625
URL: https://svnweb.freebsd.org/changeset/base/361625
Log:
Report STATUS_QUEUED/SENT in `ctladm dumpooa` output.
MFC after:2 weeks
Sponsored by: iXsystems, Inc.
Modified:
head/sys/cam/ctl/ctl.c
head/sys/cam/ctl/ctl_i
Author: ae
Date: Fri May 29 10:37:42 2020
New Revision: 361624
URL: https://svnweb.freebsd.org/changeset/base/361624
Log:
Fix O_IP_FLOW_LOOKUP opcode handling.
Do not check table value matching when table lookup has failed.
Reported by: Sergey Lobanov
MFC after:1 week
Modified:
Author: lwhsu
Date: Fri May 29 10:09:47 2020
New Revision: 361623
URL: https://svnweb.freebsd.org/changeset/base/361623
Log:
Revert r361497, these cases are fixed by r361617.
PR: 246737
Sponsored by: The FreeBSD Foundation
Modified:
head/tests/sys/netipsec/tunnel/aes_cbc_128_
This gives me tinderbox failures with mips:
_.mips.XLP64
/usr/src/sys/mips/nlm/dev/sec/nlmseclib.c:113:10: error: enumeration
value 'CRYPTO_BUF_NONE' not handled in switch [-Werror,-Wswitch]
switch (crp->crp_buf.cb_type) {
_.mips.OCTEON1
_.mips.ERL
/usr/src/sys/mips/cavium/cryptocteon/
Author: mjg
Date: Fri May 29 08:30:35 2020
New Revision: 361622
URL: https://svnweb.freebsd.org/changeset/base/361622
Log:
uma: hide item_domain under ifdef NUMA
Fixes build warnings on mips.
Modified:
head/sys/vm/uma_core.c
Modified: head/sys/vm/uma_core.c
=
Author: avg
Date: Fri May 29 07:50:55 2020
New Revision: 361621
URL: https://svnweb.freebsd.org/changeset/base/361621
Log:
do not enable pci bridge decoding on resume until I/O windows are restored
PCI bus driver restores most but not all of a child PCI-PCI bridge
configuration. The brid
On Thu, May 28, 2020 at 8:30 PM John Baldwin wrote:
> On 5/28/20 2:13 AM, Marcin Wojtas wrote:
> > Author: mw
> > Date: Thu May 28 09:13:20 2020
> > New Revision: 361583
> > URL: https://svnweb.freebsd.org/changeset/base/361583
> >
> > Log:
> > Change return types of hash update functions in SH
Author: avg
Date: Fri May 29 07:44:02 2020
New Revision: 361620
URL: https://svnweb.freebsd.org/changeset/base/361620
Log:
corefile_open_last: don't keep a locked vnode while locking other ones
Consider this scenario:
- kern.corefile=/var/coredumps/%N.%U.%I.core
- multiple processes wit
29 matches
Mail list logo