Hi Bruce,
Thank you for your review. I fixed lines you pointed out and
attached a patch candidate. I will show each change line by line in
this email, too:
Bruce Evans wrote
in <20141020140848.d...@besplex.bde.org>:
br> > - if (cc - ICMP_MINLEN - phdr_len >= sizeof(tv1))
Author: melifaro
Date: Mon Oct 20 11:21:07 2014
New Revision: 273327
URL: https://svnweb.freebsd.org/changeset/base/273327
Log:
Use copyout() directly instead of updating various fields
before/after each sooptcopyout() call.
Found by: luigi
Sponsored by: Yandex LLC
Modified:
head
On Mon, 20 Oct 2014, Hiroki Sato wrote:
Thank you for your review. I fixed lines you pointed out and
attached a patch candidate. I will show each change line by line in
this email, too:
Thanks.
Bruce Evans wrote
in <20141020140848.d...@besplex.bde.org>:
br> > - if (cc
Author: mav
Date: Mon Oct 20 13:18:52 2014
New Revision: 273328
URL: https://svnweb.freebsd.org/changeset/base/273328
Log:
Add another PCI ID for JMB368 PATA controller.
MFC after:1 week
Modified:
head/sys/dev/ata/ata-pci.h
head/sys/dev/ata/chipsets/ata-jmicron.c
Modified: head/sy
Author: loos
Date: Mon Oct 20 13:36:52 2014
New Revision: 273329
URL: https://svnweb.freebsd.org/changeset/base/273329
Log:
Add another wakeup() after actually set the bus as free.
This fix a race where the threads waiting for the bus would wake up early
and still see bus as busy.
Wh
Author: dumbbell
Date: Mon Oct 20 14:25:23 2014
New Revision: 273330
URL: https://svnweb.freebsd.org/changeset/base/273330
Log:
vt(4): Refuse to load a font if hw.vga.textmode is selected
Before, the font was loaded and the window size recalculated, giving an
unusable terminal, even if th
Author: bryanv
Date: Mon Oct 20 14:42:42 2014
New Revision: 273331
URL: https://svnweb.freebsd.org/changeset/base/273331
Log:
Add vxlan interface
vxlan creates a virtual LAN by encapsulating the inner Ethernet frame in
a UDP packet. This implementation is based on RFC7348.
Currently,
Author: emaste
Date: Mon Oct 20 14:48:20 2014
New Revision: 273332
URL: https://svnweb.freebsd.org/changeset/base/273332
Log:
Add vtfontcvt(8) cross-reference to vt(4) man page
Reported by: beeess...@ruggedinbox.com
MFC after:3 days
Modified:
head/share/man/man4/vt.4
Modified: he
Author: pluknet
Date: Mon Oct 20 15:41:11 2014
New Revision: 27
URL: https://svnweb.freebsd.org/changeset/base/27
Log:
Mac OS X 10.10 added.
Modified:
head/share/misc/bsd-family-tree
Modified: head/share/misc/bsd-family-tree
===
Hi,
Can you please create a PR that says something like "review vxlan code
for RSS after de-capsulation" and assign it to me?
I'm going to have to insert a hash recalculation after decapsulation
but I'm too busy at the moment to do it.
Thanks,
-a
On 20 October 2014 07:42, Bryan Venteicher w
Author: marcel
Date: Mon Oct 20 17:04:03 2014
New Revision: 273334
URL: https://svnweb.freebsd.org/changeset/base/273334
Log:
Fully support constructors for the purpose of code coverage analysis.
This involves:
1. Have the loader pass the start and size of the .ctors section to the
ke
Author: mjg
Date: Mon Oct 20 17:53:49 2014
New Revision: 273335
URL: https://svnweb.freebsd.org/changeset/base/273335
Log:
unionfs: hold mount interlock while manipulating mnt_flag
This is for consistency with other filesystems.
Modified:
head/sys/fs/unionfs/union_vfsops.c
Modified: hea
Author: mjg
Date: Mon Oct 20 18:00:50 2014
New Revision: 273336
URL: https://svnweb.freebsd.org/changeset/base/273336
Log:
Provide vfs suspension support only for filesystems which need it, take
two.
nullfs and unionfs need to request suspension if underlying filesystem(s)
use it. Utili
Author: loos
Date: Mon Oct 20 18:04:20 2014
New Revision: 273337
URL: https://svnweb.freebsd.org/changeset/base/273337
Log:
Fix the mtx_sleep() error checking, catch all errors and not only
EWOULDBLOCK.
Do not print any message at errors. The errors are properly sent to upper
layers wh
> Note that LLVM appends the priority of the constructors to the name of
> the .ctors section. Not so when compiling with GCC. The code currently
> works for GCC and not for LLVM.
Uhm? LLVM here creates ".ctors" section, nothing is appended. Can you be more
specific on what you're seing?
Ro
Author: neel
Date: Mon Oct 20 18:09:33 2014
New Revision: 273338
URL: https://svnweb.freebsd.org/changeset/base/273338
Log:
Merge from projects/bhyve_svm all the changes outside vmm.ko or bhyve
utilities:
Add support for AMD's nested page tables in pmap.c:
- Provide the correct bit mask
> On Oct 20, 2014, at 11:00 AM, Roman Divacky wrote:
>
>> Note that LLVM appends the priority of the constructors to the name of
>> the .ctors section. Not so when compiling with GCC. The code currently
>> works for GCC and not for LLVM.
>
> Uhm? LLVM here creates ".ctors" section, nothing i
On Sun, 19 Oct 2014, at 13:02, Andriy Gapon wrote:
> I think that on platforms where an optimized version of fls() is
> available that
> would work faster than this cool piece of bit magic.
This is a common enough idiom that perhaps a macro should be added:
sys/param.h:
#define roundup(x, y)
Author: markj
Date: Mon Oct 20 20:21:40 2014
New Revision: 273342
URL: https://svnweb.freebsd.org/changeset/base/273342
Log:
Fix a typo from r189544, which replaced unp_global_rwlock with unp_list_lock
and unp_link_rwlock.
MFC after:3 days
Modified:
head/sys/kern/subr_witness.c
Mo
Author: mjg
Date: Mon Oct 20 21:57:24 2014
New Revision: 273344
URL: https://svnweb.freebsd.org/changeset/base/273344
Log:
filedesc: plug 2 write-only variables
Reported by: Coverity
CID: 1245745, 1245746
Modified:
head/sys/kern/kern_descrip.c
Modified: head/sys/kern/kern_descrip.c
==
On 21 October 2014 03:42, Bryan Venteicher wrote:
> Author: bryanv
> Date: Mon Oct 20 14:42:42 2014
> New Revision: 273331
> URL: https://svnweb.freebsd.org/changeset/base/273331
>
> Log:
> Add vxlan interface
>
> vxlan creates a virtual LAN by encapsulating the inner Ethernet frame in
> a
Author: mjg
Date: Mon Oct 20 22:52:15 2014
New Revision: 273351
URL: https://svnweb.freebsd.org/changeset/base/273351
Log:
Plug unnecessary binvp NULL initialization and test.
Reported by: Coverity
CID: 1018889
Modified:
head/sys/kern/kern_exec.c
Modified: head/sys/kern/kern_exec.c
==
On Mon, Oct 20, 2014 at 5:37 PM, Andrew Thompson
wrote:
>
>
> On 21 October 2014 03:42, Bryan Venteicher wrote:
>
>> Author: bryanv
>> Date: Mon Oct 20 14:42:42 2014
>> New Revision: 273331
>> URL: https://svnweb.freebsd.org/changeset/base/273331
>>
>> Log:
>> Add vxlan interface
>>
>> vxlan
On 02/08/2014 02:16, Steven Hartland wrote:
> Author: smh
> Date: Fri Aug 1 23:16:48 2014
> New Revision: 269407
> URL: http://svnweb.freebsd.org/changeset/base/269407
>
> Log:
> Don't return ZIO_PIPELINE_CONTINUE from vdev_op_io_start methods
>
> This prevents recursion of vdev_queue_io_d
Author: ian
Date: Mon Oct 20 23:32:34 2014
New Revision: 273352
URL: https://svnweb.freebsd.org/changeset/base/273352
Log:
The imx6 hardware is fast enough to make good use of however much
timecounter resolution is available, so ask for a 1 GHz frequency. It
won't actually get one that fast
Author: ian
Date: Mon Oct 20 23:34:47 2014
New Revision: 273353
URL: https://svnweb.freebsd.org/changeset/base/273353
Log:
Attach the imx6 CCM driver during BUS_PASS_CPU. It controls the clocks
for most on-chip devices and needs to be available before other drivers
start attaching and askin
On 20/10/2014 23:54, Andriy Gapon wrote:
On 02/08/2014 02:16, Steven Hartland wrote:
Author: smh
Date: Fri Aug 1 23:16:48 2014
New Revision: 269407
URL: http://svnweb.freebsd.org/changeset/base/269407
Log:
Don't return ZIO_PIPELINE_CONTINUE from vdev_op_io_start methods
This prevent
Author: neel
Date: Tue Oct 21 01:06:58 2014
New Revision: 273356
URL: https://svnweb.freebsd.org/changeset/base/273356
Log:
Fix a race in pmap_emulate_accessed_dirty() that could trigger a EPT
misconfiguration VM-exit.
An EPT misconfiguration is triggered when the processor encounters a P
Author: yongari
Date: Tue Oct 21 01:31:24 2014
New Revision: 273359
URL: https://svnweb.freebsd.org/changeset/base/273359
Log:
It seems multicast filtering of RTL8168F does not work. Workaround
the silicon bug by accepting any multicast packets.
PR: 193488
MFC After:1 week
Modif
Author: np
Date: Tue Oct 21 01:34:18 2014
New Revision: 273360
URL: https://svnweb.freebsd.org/changeset/base/273360
Log:
cxgbetool: Catch up with r185979. One of MAP_ANON, MAP_PRIVATE,
MAP_SHARED, or MAP_STACK must be specified.
This fixes the "loadfw" subcommand.
MFC after:1 w
On 10/20/14 18:34, Navdeep Parhar wrote:
Author: np
Date: Tue Oct 21 01:34:18 2014
New Revision: 273360
URL: https://svnweb.freebsd.org/changeset/base/273360
Log:
cxgbetool: Catch up with r185979. One of MAP_ANON, MAP_PRIVATE,
MAP_SHARED, or MAP_STACK must be specified.
Sorry, I meant r
Author: markj
Date: Tue Oct 21 04:30:00 2014
New Revision: 273365
URL: https://svnweb.freebsd.org/changeset/base/273365
Log:
Fix a few small bugs in the DTrace USDT rules:
* anchor search strings appropriately,
* use .ALLSRC to pass the full path to the D script to dtrace(1),
* don't inser
Author: markj
Date: Tue Oct 21 05:19:08 2014
New Revision: 273370
URL: https://svnweb.freebsd.org/changeset/base/273370
Log:
Correct the calculation of tcps_rto in the struct tcpcb -> tcpsinfo_t
translator.
Submitted by: Grenville Armitage
MFC after:1 week
Modified:
head/cddl/li
Hi,
Just to add some background to this fix, in the https://jenkins.freebsd.org
cluster,
we are using several bhyve VM's to host the environment for doing builds
and tests. We are hammering on the VM's
quite nicely. We found one problem where the bhyve binary would crash.
Neel looked at the pro
Author: bryanv
Date: Tue Oct 21 05:45:57 2014
New Revision: 273371
URL: https://svnweb.freebsd.org/changeset/base/273371
Log:
Use the size of the Ethernet address, not the entire header, when
copying into forwarding entry.
Reported by: Coverity
CID: 1248849
Modified:
head/s
35 matches
Mail list logo