Author: davidxu
Date: Fri Aug 16 06:42:24 2013
New Revision: 254399
URL: http://svnweb.freebsd.org/changeset/base/254399
Log:
Regen.
Modified:
stable/9/sys/compat/freebsd32/freebsd32_proto.h
stable/9/sys/compat/freebsd32/freebsd32_syscall.h
stable/9/sys/compat/freebsd32/freebsd32_syscalls
Author: davidxu
Date: Fri Aug 16 06:40:12 2013
New Revision: 254398
URL: http://svnweb.freebsd.org/changeset/base/254398
Log:
MFC r239347, 240295, 240296 and 253325:
r239347 | davidxu | 2012-08-17 10:26:31 +0800 (Fri, 17 Aug 2012) | 7 lines
Implement syscall clock_getcpuclockid
Author: gjb
Date: Fri Aug 16 05:30:13 2013
New Revision: 254397
URL: http://svnweb.freebsd.org/changeset/base/254397
Log:
Mark the makefs(8) '-p' flag as deprecated in preference for
the '-Z' flag for compatibility with NetBSD.
Submitted by: Eric van Gyzen (via stable@)
MFC after:3
Author: markj
Date: Fri Aug 16 03:41:41 2013
New Revision: 254396
URL: http://svnweb.freebsd.org/changeset/base/254396
Log:
Use strdup(9) instead of reimplementing it.
Modified:
head/sys/kern/kern_linker.c
Modified: head/sys/kern/kern_linker.c
Author: grehan
Date: Fri Aug 16 00:35:20 2013
New Revision: 254395
URL: http://svnweb.freebsd.org/changeset/base/254395
Log:
Fix ordering of legacy IRQ reservations.
Submitted by: Jeremiah Lott jlott at averesystems dot com
Modified:
head/usr.sbin/bhyve/pci_emul.c
Modified: head/usr.s
Author: ken
Date: Thu Aug 15 22:52:39 2013
New Revision: 254389
URL: http://svnweb.freebsd.org/changeset/base/254389
Log:
Change the way that unmapped I/O capability is advertised.
The previous method was to set the D_UNMAPPED_IO flag in the cdevsw
for the driver. The problem with this i
Author: jilles
Date: Thu Aug 15 22:33:27 2013
New Revision: 254388
URL: http://svnweb.freebsd.org/changeset/base/254388
Log:
sigsuspend(2): Add xrefs to pselect(2) and sigwait-alikes.
Modified:
head/lib/libc/sys/sigsuspend.2
Modified: head/lib/libc/sys/sigsuspend.2
==
Author: jeff
Date: Thu Aug 15 22:29:49 2013
New Revision: 254387
URL: http://svnweb.freebsd.org/changeset/base/254387
Log:
- Fix bug in r254304. Use the ACTIVE pq count for the active list
processing, not inactive. This was the result of a bad merge.
Reported by: pho
Sponsored by
On 08/15/13 14:34, Ivan Voras wrote:
> On 15 August 2013 22:32, Colin Percival wrote:
>> No, I wasn't aware that it existed. Given that this change applies only to
>> parallel operations *on the same vnode* and blogbench seems to have traffic
>> randomly spread between many files, I doubt there w
On 15 August 2013 22:32, Colin Percival wrote:
> No, I wasn't aware that it existed. Given that this change applies only to
> parallel operations *on the same vnode* and blogbench seems to have traffic
> randomly spread between many files, I doubt there would be any difference.
Maybe it could h
Author: jfv
Date: Thu Aug 15 21:24:43 2013
New Revision: 254385
URL: http://svnweb.freebsd.org/changeset/base/254385
Log:
MFC r254264 Make the igb_mq_start() routine use TRYLOCK rather than simple
queuing, there were latency and other problems with the latter.
Modified:
stable
Author: jkim
Date: Thu Aug 15 21:09:05 2013
New Revision: 254384
URL: http://svnweb.freebsd.org/changeset/base/254384
Log:
Simplify check for CMPXCHG8B instruction. Note CMPXCHG8B instruction is
always available for Rise mP6 processors although it is not set by CPUID.
Modified:
head/sys/i3
Author: jfv
Date: Thu Aug 15 21:06:38 2013
New Revision: 254383
URL: http://svnweb.freebsd.org/changeset/base/254383
Log:
MFC r254262 Further improve the msix setup, make sure pci_alloc_msix() gives
us
the vectors we requested, and fall back to MSI when not, also
release
On 08/15/13 13:29, Ivan Voras wrote:
> On 15 August 2013 22:19, Colin Percival wrote:
>> For workloads with R parallel reads and W parallel writes, this improves
>> the time spent from O((R+W)^2) to O(W*(R+W)); i.e., heavy parallel-read
>> workloads become significantly more scalable.
>>
>>
Author: jfv
Date: Thu Aug 15 20:33:17 2013
New Revision: 254382
URL: http://svnweb.freebsd.org/changeset/base/254382
Log:
MFC r254008 Make the fallback from MSIX to MSI interrupt usage more graceful.
Modified:
stable/9/sys/dev/e1000/if_em.c
stable/9/sys/dev/e1000/if_igb.c
stable/9/sys/dev
On 15 August 2013 22:19, Colin Percival wrote:
> For workloads with R parallel reads and W parallel writes, this improves
> the time spent from O((R+W)^2) to O(W*(R+W)); i.e., heavy parallel-read
> workloads become significantly more scalable.
>
> No statistically significant change in bu
Author: cperciva
Date: Thu Aug 15 20:19:17 2013
New Revision: 254380
URL: http://svnweb.freebsd.org/changeset/base/254380
Log:
Change the queue of locks in kern_rangelock.c from holding lock requests in
the order that they arrive, to holding
(a) granted write lock requests, followed by
(b)
Author: jkim
Date: Thu Aug 15 20:03:22 2013
New Revision: 254379
URL: http://svnweb.freebsd.org/changeset/base/254379
Log:
Avoid potential redefinition of the macro.
Modified:
head/sys/dev/iir/iir.c
head/sys/dev/iir/iir.h
head/sys/dev/iir/iir_ctrl.c
head/sys/dev/iir/iir_pci.c
Modified:
Author: trasz
Date: Thu Aug 15 20:00:32 2013
New Revision: 254378
URL: http://svnweb.freebsd.org/changeset/base/254378
Log:
Turn comments about locking into actual lock assertions.
Reviewed by: ken
Tested by:ken
MFC after:1 month
Modified:
head/sys/cam/ctl/ctl.c
Modified: h
Author: brooks
Date: Thu Aug 15 17:44:44 2013
New Revision: 254374
URL: http://svnweb.freebsd.org/changeset/base/254374
Log:
Use an ANSI C definition of initializecpucache() to match the declaration
and the rest of the file.
Modified:
head/sys/amd64/amd64/initcpu.c
Modified: head/sys/amd64
Author: brooks
Date: Thu Aug 15 17:21:06 2013
New Revision: 254373
URL: http://svnweb.freebsd.org/changeset/base/254373
Log:
Call set_i8254_freq with MODE_STOP (0) rather than a magic number of 0.
Modified:
head/sys/x86/isa/clock.c
Modified: head/sys/x86/isa/clock.c
=
Author: ken
Date: Thu Aug 15 16:41:27 2013
New Revision: 254372
URL: http://svnweb.freebsd.org/changeset/base/254372
Log:
Export the maxio field in the CAM XPT_PATH_INQ CCB in the isp(4)
driver.
This tells consumers up the stack the maximum I/O size that the
controller can handle.
Author: nemysis (ports committer)
Date: Thu Aug 15 16:03:09 2013
New Revision: 254371
URL: http://svnweb.freebsd.org/changeset/base/254371
Log:
- Add myself in committers-ports.dot
Approved by: miwi/wxs/wg (mentors)
Modified:
head/share/misc/committers-ports.dot
Modified: head/share/mi
Author: dteske
Date: Thu Aug 15 15:34:26 2013
New Revision: 254370
URL: http://svnweb.freebsd.org/changeset/base/254370
Log:
MFS9 SVN r254331:
Add optional support for default override of standard setup; but only if
corresponding functions are provided. If override function does not exist,
Author: gjb
Date: Thu Aug 15 14:41:39 2013
New Revision: 254368
URL: http://svnweb.freebsd.org/changeset/base/254368
Log:
Update releng/9.2 to -RC2.
Approved by: re (implicit)
Modified:
releng/9.2/release/Makefile.sysinstall
releng/9.2/sys/conf/newvers.sh
Modified: releng/9.2/release
Author: ae
Date: Thu Aug 15 14:33:09 2013
New Revision: 254367
URL: http://svnweb.freebsd.org/changeset/base/254367
Log:
Merge r254366:
Make the check for number of entries less strict.
Some partitioning tools can create GPT with number of entries less
than 128.
Approved by: re
Author: ae
Date: Thu Aug 15 13:09:58 2013
New Revision: 254366
URL: http://svnweb.freebsd.org/changeset/base/254366
Log:
MFC r254092:
Make the check for number of entries less strict.
Some partitioning tools can create GPT with number of entries less
than 128.
Modified:
stable/9/s
Author: scottl
Date: Thu Aug 15 12:19:16 2013
New Revision: 254364
URL: http://svnweb.freebsd.org/changeset/base/254364
Log:
Merge r254306:
Update PCI drivers to no longer look at the MEMIO-enabled bit in the PCI
command register. The lazy BAR allocation code in FreeBSD sometimes
d
Author: attilio
Date: Thu Aug 15 11:01:25 2013
New Revision: 254362
URL: http://svnweb.freebsd.org/changeset/base/254362
Log:
On the recovery path for vm_page_alloc(), if a page had been requested
wired, unwind back the wiring bits otherwise we can end up freeing a
page that is considered wi
Author: gjb
Date: Thu Aug 15 10:38:10 2013
New Revision: 254361
URL: http://svnweb.freebsd.org/changeset/base/254361
Log:
MFC r254265:
Make sure bootonly.iso for -BETAs and -RCs use the releases/
directory on the FTP mirrors to fetch distributions, since
these are always pushed to relea
Author: gjb
Date: Thu Aug 15 10:31:31 2013
New Revision: 254360
URL: http://svnweb.freebsd.org/changeset/base/254360
Log:
MFC r254265:
Make sure bootonly.iso for -BETAs and -RCs use the releases/
directory on the FTP mirrors to fetch distributions, since
these are always pushed to relea
On Thu, Aug 15, 2013 at 10:54:04AM +0200, Jeremie Le Hen wrote:
J> On Thu, Aug 15, 2013 at 12:25:05PM +0400, Gleb Smirnoff wrote:
J> > On Thu, Aug 15, 2013 at 08:21:00AM +, Jeremie Le Hen wrote:
J> > J> Author: jlh
J> > J> Date: Thu Aug 15 08:21:00 2013
J> > J> New Revision: 254358
J> > J> URL:
On Thu, Aug 15, 2013 at 12:25:05PM +0400, Gleb Smirnoff wrote:
> On Thu, Aug 15, 2013 at 08:21:00AM +, Jeremie Le Hen wrote:
> J> Author: jlh
> J> Date: Thu Aug 15 08:21:00 2013
> J> New Revision: 254358
> J> URL: http://svnweb.freebsd.org/changeset/base/254358
> J>
> J> Log:
> J> Belatedly
On Thu, Aug 15, 2013 at 08:21:00AM +, Jeremie Le Hen wrote:
J> Author: jlh
J> Date: Thu Aug 15 08:21:00 2013
J> New Revision: 254358
J> URL: http://svnweb.freebsd.org/changeset/base/254358
J>
J> Log:
J> Belatedly bump __FreeBSD_version for libc being an ld script.
J> This should have been
Author: jlh
Date: Thu Aug 15 08:21:00 2013
New Revision: 254358
URL: http://svnweb.freebsd.org/changeset/base/254358
Log:
Belatedly bump __FreeBSD_version for libc being an ld script.
This should have been done in r251668, on June 12, 2013.
This will have no practical consequences, beside
Author: jlh
Date: Thu Aug 15 08:12:16 2013
New Revision: 254357
URL: http://svnweb.freebsd.org/changeset/base/254357
Log:
MFC r253853:
Include /usr/local/etc/libmap.d/ by default.
PR: 180568
Reviewed by:bapt
Obtained from: kib
Approved by: re (delphi
Author: glebius
Date: Thu Aug 15 07:54:31 2013
New Revision: 254356
URL: http://svnweb.freebsd.org/changeset/base/254356
Log:
Make sendfile() a method in the struct fileops. Currently only
vnode backed file descriptors have this method implemented.
Reviewed by: kib
Sponsored by: Nginx
37 matches
Mail list logo