Author: glebius
Date: Fri Feb 7 10:05:12 2014
New Revision: 261582
URL: http://svnweb.freebsd.org/changeset/base/261582
Log:
Spacing.
Modified:
head/sys/net/flowtable.c
Modified: head/sys/net/flowtable.c
==
--- head
Author: ae
Date: Fri Feb 7 10:58:46 2014
New Revision: 261583
URL: http://svnweb.freebsd.org/changeset/base/261583
Log:
Unlock entry before retry.
Submitted by: melifaro
MFC after:1 week
Modified:
head/sys/netinet6/nd6.c
Modified: head/sys/netinet6/nd6.c
=
Author: brueffer
Date: Fri Feb 7 11:40:50 2014
New Revision: 261584
URL: http://svnweb.freebsd.org/changeset/base/261584
Log:
In IPv6 code examples, use the correct v6 socket.
MFC after:1 week
Modified:
head/share/man/man4/multicast.4
Modified: head/share/man/man4/multicast.4
=
Author: ray
Date: Fri Feb 7 12:39:58 2014
New Revision: 261585
URL: http://svnweb.freebsd.org/changeset/base/261585
Log:
Implement vd_drawrect and vd_setpixel for vt(9)'s VGA driver.
Sponsored by: The FreeBSD Foundation
Modified:
head/sys/dev/vt/hw/vga/vga.c
Modified: head/sys/dev/vt/h
Author: loos
Date: Fri Feb 7 13:06:48 2014
New Revision: 261586
URL: http://svnweb.freebsd.org/changeset/base/261586
Log:
Fix the build with DEBUG enabled. Where possible, fix style(9) issues.
Reviewed by: bde
Approved by: adrian (mentor)
Modified:
head/sys/geom/uncompress/g_uncomp
Author: jilles
Date: Fri Feb 7 13:40:22 2014
New Revision: 261589
URL: http://svnweb.freebsd.org/changeset/base/261589
Log:
fts: Fix double-free with conflicting concurrent modifications.
If rare conditions such as concurrent conflicting manipulation of the
filesystem occur, fts_read() f
Author: glebius
Date: Fri Feb 7 13:47:33 2014
New Revision: 261590
URL: http://svnweb.freebsd.org/changeset/base/261590
Log:
Remove identical vnet sysctl handlers, and handle CTLFLAG_VNET
in the sysctl_root().
Note: SYSCTL_VNET_* macros can be removed as well. All is
needed to virtua
Hi Aleksandr,
On 7 February 2014 13:39, Aleksandr Rybalko wrote:
> +static void
> +vga_setpixel(struct vt_device *vd, int x, int y, term_color_t color)
> +{
> +}
> +
> +static void
> +vga_drawrect(struct vt_device *vd, int x1, int y1, int x2, int y2, int fill,
> +term_color_t color)
> +{
> +}
Author: nwhitehorn
Date: Fri Feb 7 14:24:36 2014
New Revision: 261591
URL: http://svnweb.freebsd.org/changeset/base/261591
Log:
Make libstand setjmp work for both 64- and 32-bit ABIs.
Modified:
head/lib/libstand/powerpc/_setjmp.S
Modified: head/lib/libstand/powerpc/_setjmp.S
===
Author: glebius
Date: Fri Feb 7 14:26:33 2014
New Revision: 261592
URL: http://svnweb.freebsd.org/changeset/base/261592
Log:
Catch up on r261590.
Modified:
head/sys/netinet/in_pcb.c
Modified: head/sys/netinet/in_pcb.c
=
Author: glebius
Date: Fri Feb 7 14:29:03 2014
New Revision: 261593
URL: http://svnweb.freebsd.org/changeset/base/261593
Log:
Provide macros that allow easily export uma(9) zone limits and
current usage via sysctl(9):
SYSCTL_UMA_MAX()
SYSCTL_ADD_UMA_MAX()
SYSCTL_UMA_CUR()
SY
Author: glebius
Date: Fri Feb 7 14:31:51 2014
New Revision: 261594
URL: http://svnweb.freebsd.org/changeset/base/261594
Log:
Utilize SYSCTL_UMA_CUR() to export usage of syncache and
tcp reassembly zones.
Sponsored by: Nginx, Inc.
Modified:
head/sys/netinet/tcp_reass.c
head/sys/netin
Author: glebius
Date: Fri Feb 7 14:34:31 2014
New Revision: 261595
URL: http://svnweb.freebsd.org/changeset/base/261595
Log:
sysctl_handle_counter_u64() doesn't use arg2 argument, thus simplify
the SYSCTL_COUNTER_U64() macro.
Sponsored by: Nginx, Inc.
Modified:
head/share/man/man9/cou
Author: hselasky
Date: Fri Feb 7 14:56:34 2014
New Revision: 261597
URL: http://svnweb.freebsd.org/changeset/base/261597
Log:
Add manual page for wsp driver.
MFC after:1 week
Added:
head/share/man/man4/wsp.4 (contents, props changed)
Added: head/share/man/man4/wsp.4
=
Author: hselasky
Date: Fri Feb 7 14:58:40 2014
New Revision: 261598
URL: http://svnweb.freebsd.org/changeset/base/261598
Log:
Update atp driver manual page.
Moused is now started automatically by devd.
MFC after:1 week
Modified:
head/share/man/man4/atp.4
Modified: head/share/man/
On Fri, 7 Feb 2014 15:04:47 +0100
Ed Schouten wrote:
> Hi Aleksandr,
>
> On 7 February 2014 13:39, Aleksandr Rybalko wrote:
> > +static void
> > +vga_setpixel(struct vt_device *vd, int x, int y, term_color_t color)
> > +{
> > +}
> > +
> > +static void
> > +vga_drawrect(struct vt_device *vd, int
Author: jhb
Date: Fri Feb 7 15:10:24 2014
New Revision: 261600
URL: http://svnweb.freebsd.org/changeset/base/261600
Log:
- Use a callout instead of the deprecated timeout_handle.
- Set the console name always so that the bvm console device can be used
via conscontrol even if it isn't chos
Author: glebius
Date: Fri Feb 7 15:18:23 2014
New Revision: 261601
URL: http://svnweb.freebsd.org/changeset/base/261601
Log:
o Revamp API between flowtable and netinet, netinet6.
- ip_output() and ip_output6() simply call flowtable_lookup(),
passing mbuf and address family. That's the
Author: kevlo
Date: Fri Feb 7 15:26:19 2014
New Revision: 261602
URL: http://svnweb.freebsd.org/changeset/base/261602
Log:
Set errno on inet_ntop(3) failure.
Reviewed by: glebius
Modified:
head/lib/libc/inet/inet_ntop.c
Modified: head/lib/libc/inet/inet_ntop.c
Author: emaste
Date: Fri Feb 7 16:28:40 2014
New Revision: 261603
URL: http://svnweb.freebsd.org/changeset/base/261603
Log:
Don't force efi to a 32-bit build on amd64
Sponsored by: The FreeBSD Foundation
Modified:
head/sys/boot/efi/Makefile.inc
Modified: head/sys/boot/efi/Makefile.inc
On Fri, Feb 07, 2014 at 03:34:27PM +, Bjoern A. Zeeb wrote:
B> > * XXX This does not end up updating timeouts at runtime
B> > * and only reflects the value for the last table added :-/
B> > */
B> > -SYSCTL_VNET_INT(_net_inet_flowtable, OID_AUTO, syn_expire, CTLFLAG_RW,
B> > +SYSCTL_VNET_INT(
Author: eadler
Date: Fri Feb 7 18:10:34 2014
New Revision: 261604
URL: http://svnweb.freebsd.org/changeset/base/261604
Log:
HEAD is not buildable for the past day. Commit a 'quick fix' in order to
permit
buildworld to complete.
Reviewed by: theraven
Modified:
head/contrib/libc++/in
On Fri, Feb 7, 2014 at 11:10 AM, Eitan Adler wrote:
> Author: eadler
> Date: Fri Feb 7 18:10:34 2014
> New Revision: 261604
> URL: http://svnweb.freebsd.org/changeset/base/261604
>
> Log:
> HEAD is not buildable for the past day. Commit a 'quick fix' in order to
> permit
> buildworld to com
Author: ian
Date: Fri Feb 7 14:38:51 2014
New Revision: 261596
URL: http://svnweb.freebsd.org/changeset/base/261596
Log:
Remove references to PHYSADDR where it's used only in debugging output,
and where the code that references it can safely be elided if it's not
defined (meaning the code i
Author: jhb
Date: Fri Feb 7 18:46:27 2014
New Revision: 261605
URL: http://svnweb.freebsd.org/changeset/base/261605
Log:
Now that FreeBSD/i386 works as a bhyve guest, allow i386 kernels to
include bvmconsole and bvmdebug.
Modified:
head/sys/conf/files.i386
Modified: head/sys/conf/files.i3
Author: andrew
Date: Fri Feb 7 19:15:25 2014
New Revision: 261606
URL: http://svnweb.freebsd.org/changeset/base/261606
Log:
Dynamically generate the page table. This will allow us to detect the
physical address we are loaded at to change the mapping.
Modified:
head/sys/arm/arm/locore.S
Mo
On 07 Feb 2014, at 15:18 , Gleb Smirnoff wrote:
...
> /*
> * XXX This does not end up updating timeouts at runtime
> * and only reflects the value for the last table added :-/
> */
> -SYSCTL_VNET_INT(_net_inet_flowtable, OID_AUTO, syn_expire, CTLFLAG_RW,
> +SYSCTL_VNET_INT(_net_flowtable, OID_
Author: hselasky
Date: Fri Feb 7 15:00:08 2014
New Revision: 261599
URL: http://svnweb.freebsd.org/changeset/base/261599
Log:
The atp USB driver is generic and its manual page should be available
for all platforms. Add wsp manual page to build.
MFC after:1 week
Modified:
head/shar
On Fri, Feb 7, 2014 at 1:14 PM, Alan Somers wrote:
> On Fri, Feb 7, 2014 at 11:10 AM, Eitan Adler wrote:
>> Author: eadler
>> Date: Fri Feb 7 18:10:34 2014
>> New Revision: 261604
>> URL: http://svnweb.freebsd.org/changeset/base/261604
>>
>> Log:
>> HEAD is not buildable for the past day. Com
Author: jhb
Date: Fri Feb 7 20:53:41 2014
New Revision: 261607
URL: http://svnweb.freebsd.org/changeset/base/261607
Log:
Mark the I/O ports used by the bhyve console and debug devices as system
resources.
MFC after:1 week
Modified:
head/usr.sbin/bhyve/consport.c
head/usr.sbin/bh
Author: dim
Date: Fri Feb 7 21:17:20 2014
New Revision: 261608
URL: http://svnweb.freebsd.org/changeset/base/261608
Log:
Apply a cleaner solution for the sign warnings that can occur when
compiling libc++'s header with -Wsystem-headers on.
This has also been submitted upstream.
Rep
Hi Aleksandr,
On 7 February 2014 16:10, Aleksandr Rybalko wrote:
> On Fri, 7 Feb 2014 15:04:47 +0100
> Ed Schouten wrote:
>> On 7 February 2014 13:39, Aleksandr Rybalko wrote:
> Also people asking me about advanced features of vt(9), like use
> multiple displays. I'm not sure, but signed coordi
Author: dim
Date: Fri Feb 7 21:34:09 2014
New Revision: 261609
URL: http://svnweb.freebsd.org/changeset/base/261609
Log:
Pull in upstream libcxxrt commit 8006101, which makes its cxxabi.h file
compilable just by itself.
PR: kern/184019
MFC after:3 days
Modified:
head/c
On 7 лютого 2014 р. 23:27:58 GMT+02:00, Ed Schouten wrote:
>Hi Aleksandr,
>
>On 7 February 2014 16:10, Aleksandr Rybalko wrote:
>> On Fri, 7 Feb 2014 15:04:47 +0100
>> Ed Schouten wrote:
>>> On 7 February 2014 13:39, Aleksandr Rybalko wrote:
>> Also people asking me about advanced features of v
Author: glebius
Date: Fri Feb 7 21:56:16 2014
New Revision: 261610
URL: http://svnweb.freebsd.org/changeset/base/261610
Log:
Remove unused defines.
Modified:
head/sys/net/flowtable.c
Modified: head/sys/net/flowtable.c
=
Author: brueffer
Date: Fri Feb 7 22:04:56 2014
New Revision: 261611
URL: http://svnweb.freebsd.org/changeset/base/261611
Log:
Add some context for the "kldload sem" command; minor other improvements.
PR: 183650
Submitted by: Bjorn Heidotting
MFC after:1 week
Modified:
Author: pjd
Date: Fri Feb 7 22:15:48 2014
New Revision: 261612
URL: http://svnweb.freebsd.org/changeset/base/261612
Log:
Add cross-references to casperd(8) and libcapsicum(3).
Suggested by: rwatson
Modified:
head/share/man/man4/capsicum.4
Modified: head/share/man/man4/capsicum.4
==
Author: glebius
Date: Fri Feb 7 22:30:42 2014
New Revision: 261613
URL: http://svnweb.freebsd.org/changeset/base/261613
Log:
Fix comment.
Modified:
head/sys/net/flowtable.h
Modified: head/sys/net/flowtable.h
==
---
Author: emaste
Date: Fri Feb 7 22:49:42 2014
New Revision: 261614
URL: http://svnweb.freebsd.org/changeset/base/261614
Log:
Build a 32-bit libstand under sys/boot/ for ppc64
This change is equivalent to r261567 for i386/amd64.
Sponsored by: The FreeBSD Foundation
Modified:
head/sys
Author: asomers
Date: Sat Feb 8 00:20:21 2014
New Revision: 261615
URL: http://svnweb.freebsd.org/changeset/base/261615
Log:
tests/sys/Makefile
use TESTS_SUBDIRS for kern instead of SUBDIRS. I don't think it
makes a difference in this case, but TESTS_SUBDIRS is generally
Author: imp
Date: Sat Feb 8 04:29:36 2014
New Revision: 261616
URL: http://svnweb.freebsd.org/changeset/base/261616
Log:
Remove FreeBSD 6 support
Modified:
head/sys/dev/usb/controller/at91dci_atmelarm.c
head/sys/dev/usb/controller/ohci_atmelarm.c
Modified: head/sys/dev/usb/controller/at91
Author: neel
Date: Sat Feb 8 05:04:34 2014
New Revision: 261617
URL: http://svnweb.freebsd.org/changeset/base/261617
Log:
Fix a bug in the handling of VM-exits caused by non-maskable interrupts (NMI).
If a VM-exit is caused by an NMI then "blocking by NMI" is in effect on the
CPU when th
Author: delphij
Date: Sat Feb 8 05:17:49 2014
New Revision: 261618
URL: http://svnweb.freebsd.org/changeset/base/261618
Log:
In g_eli_crypto_hmac_init(), zero out after using the ipad buffer,
k_ipad.
Note that the two consumers in geli(4) are not affected by this
issue because the way
Author: delphij
Date: Sat Feb 8 05:30:33 2014
New Revision: 261619
URL: http://svnweb.freebsd.org/changeset/base/261619
Log:
4574 get_clones_stat does not call zap_count in non-debug kernel
illumos/illumos-gate@03d1795fa6f720eafbee821ad37f4343c391cfe4
Modified:
vendor-sys/illumos/dist/u
Author: delphij
Date: Sat Feb 8 05:35:36 2014
New Revision: 261620
URL: http://svnweb.freebsd.org/changeset/base/261620
Log:
MFV r261619:
4574 get_clones_stat does not call zap_count in non-debug kernel
zap_count(...) is never called in non-DEBUG kernel.
As result "count" variable i
Author: neel
Date: Sat Feb 8 06:22:09 2014
New Revision: 261621
URL: http://svnweb.freebsd.org/changeset/base/261621
Log:
Add a counter to differentiate between VM-exits due to nested paging faults
and instruction emulation faults.
Modified:
head/sys/amd64/vmm/intel/vmx.c
head/sys/amd64/
Author: dumbbell
Date: Sat Feb 8 07:53:39 2014
New Revision: 261622
URL: http://svnweb.freebsd.org/changeset/base/261622
Log:
MFC r254882, r254883, r255571:
vga_pci: Add API to map the Video BIOS
Here are two new functions to map and unmap the Video BIOS:
void * vga_pci_map_bios
47 matches
Mail list logo