Author: mav
Date: Tue Jun 8 10:03:08 2010
New Revision: 208907
URL: http://svn.freebsd.org/changeset/base/208907
Log:
Disable NCQ and PMP support for VIA VT8251 AHCI. It was reported to be
unreliable under load. Linux does the same.
Modified:
head/sys/dev/ahci/ahci.c
Modified: head/sys/de
Author: mav
Date: Tue Jun 8 10:52:37 2010
New Revision: 208908
URL: http://svn.freebsd.org/changeset/base/208908
Log:
MFC r208796:
Fix PCH chipset IDs. They are 0x3bxx, not 0x3axx.
Approved by: re (kib)
Modified:
stable/8/sys/dev/ata/chipsets/ata-intel.c
Directory Properties:
stabl
On Mon, 7 Jun 2010, Pawel Jakub Dawidek wrote:
1) Further enhance the INVARIANT lock validation (no locks) are
held by checking the create and inp locks as well.
[...]
+ if (mtx_owned(&inp->inp_create_mtx)) {
+ panic("Own create lock on inp");
+ }
+ if (
Author: mjacob
Date: Tue Jun 8 16:17:25 2010
New Revision: 208911
URL: http://svn.freebsd.org/changeset/base/208911
Log:
Implement the usage of Report Luns as part of SCSI probing for SCP3 or
better devices. This can be disabled on a per-device basis using quirks as
well.
This also han
Author: jhb
Date: Tue Jun 8 16:17:47 2010
New Revision: 208912
URL: http://svn.freebsd.org/changeset/base/208912
Log:
Fix a sign bug that caused adaptive spinning in sx_xlock() to not work
properly. Among other things it did not drop Giant while spinning
leading to livelocks.
Reviewed
Author: uqs
Date: Tue Jun 8 16:48:49 2010
New Revision: 208913
URL: http://svn.freebsd.org/changeset/base/208913
Log:
mdoc: replace troff macros with -mdoc equivalents
Modified:
head/usr.sbin/nfsdumpstate/nfsdumpstate.8
head/usr.sbin/timed/timed/timed.8
Modified: head/usr.sbin/nfsdumpstat
Author: uqs
Date: Tue Jun 8 16:48:59 2010
New Revision: 208914
URL: http://svn.freebsd.org/changeset/base/208914
Log:
mdoc: remove literal tabs where they don't belong
Modified:
head/lib/libc/sys/flock.2
head/lib/libc/sys/getitimer.2
head/lib/libc/sys/getrusage.2
head/lib/libc/sys/mq_c
Author: jhb
Date: Tue Jun 8 17:08:13 2010
New Revision: 208915
URL: http://svn.freebsd.org/changeset/base/208915
Log:
- Use a bit more care when moving I/O APIC interrupts between CPUs. Mask
the interrupt followed by a brief delay if it is not currently masked
before moving the interru
Author: nwhitehorn
Date: Tue Jun 8 17:26:18 2010
New Revision: 208916
URL: http://svn.freebsd.org/changeset/base/208916
Log:
MFC r208168:
It is not necessary (and in some cases harmful) to hardcode ata_kauai's
IRQ to 39 on K2 devices, as well as Shasta ones.
Reported by: Andreas Toble
Author: yongari
Date: Tue Jun 8 17:28:28 2010
New Revision: 208917
URL: http://svn.freebsd.org/changeset/base/208917
Log:
Remove unused macros.
Reviewed by: bde
Modified:
head/sys/dev/bge/if_bgereg.h
Modified: head/sys/dev/bge/if_bgereg.h
==
Author: mjacob
Date: Tue Jun 8 17:44:49 2010
New Revision: 208918
URL: http://svn.freebsd.org/changeset/base/208918
Log:
One byte off for scsi_target_group cdb.
MFC after:2 weeks
Modified:
head/sys/cam/scsi/scsi_all.h
Modified: head/sys/cam/scsi/scsi_all.h
=
Author: jhb
Date: Tue Jun 8 17:51:21 2010
New Revision: 208919
URL: http://svn.freebsd.org/changeset/base/208919
Log:
Move the I/O APIC code to the x86 tree since it is identical on i386 and
amd64.
Added:
head/sys/x86/x86/io_apic.c
- copied unchanged from r208915, head/sys/i386/i386/i
Author: kib
Date: Tue Jun 8 17:54:28 2010
New Revision: 208920
URL: http://svn.freebsd.org/changeset/base/208920
Log:
Reorganize the code in bdwrite() which handles move of dirtiness
from the buffer pages to buffer. Combine the code to set buffer
dirty range (previously in vfs_setdirty()) a
Author: jhb
Date: Tue Jun 8 18:04:07 2010
New Revision: 208921
URL: http://svn.freebsd.org/changeset/base/208921
Log:
Move the machine check support code to the x86 tree since it is identical
on i386 and amd64.
Requested by: alc
Added:
head/sys/x86/x86/mca.c
- copied, changed fro
Author: jhb
Date: Tue Jun 8 18:36:03 2010
New Revision: 208922
URL: http://svn.freebsd.org/changeset/base/208922
Log:
Move the MD support for PCI message signalled interrupts to the x86 tree
as it is identical for i386 and amd64.
Added:
head/sys/x86/x86/msi.c
- copied unchanged from r
On Tuesday 08 June 2010 2:04:07 pm John Baldwin wrote:
> Author: jhb
> Date: Tue Jun 8 18:04:07 2010
> New Revision: 208921
> URL: http://svn.freebsd.org/changeset/base/208921
>
> Log:
> Move the machine check support code to the x86 tree since it is identical
> on i386 and amd64.
>
> Re
Author: yongari
Date: Tue Jun 8 19:26:22 2010
New Revision: 208923
URL: http://svn.freebsd.org/changeset/base/208923
Log:
MFC r208806:
Don't blindly set IFF_DRV_OACTIVE when sge_encap() fails. If there
is no queued frame, IFF_DRV_OACTIVE would never be cleared.
Submitted by:
In message: <201006081446.09423@freebsd.org>
John Baldwin writes:
: On Tuesday 08 June 2010 2:04:07 pm John Baldwin wrote:
: > Author: jhb
: > Date: Tue Jun 8 18:04:07 2010
: > New Revision: 208921
: > URL: http://svn.freebsd.org/changeset/base/208921
: >
: > Log:
: > Move the
Author: yongari
Date: Tue Jun 8 19:36:41 2010
New Revision: 208924
URL: http://svn.freebsd.org/changeset/base/208924
Log:
MFC r208806:
Don't blindly set IFF_DRV_OACTIVE when sge_encap() fails. If there
is no queued frame, IFF_DRV_OACTIVE would never be cleared.
Submitted by:
Author: jhb
Date: Tue Jun 8 21:27:05 2010
New Revision: 208925
URL: http://svn.freebsd.org/changeset/base/208925
Log:
The lock associated with the /dev/apm knote is already held, so use
KNOTE_LOCKED() instead of KNOTE_UNLOCKED().
Reported by: mav
MFC after:3 days
Modified:
head
On Tuesday 08 June 2010 3:22:10 pm M. Warner Losh wrote:
> In message: <201006081446.09423@freebsd.org>
> John Baldwin writes:
> : On Tuesday 08 June 2010 2:04:07 pm John Baldwin wrote:
> : > Author: jhb
> : > Date: Tue Jun 8 18:04:07 2010
> : > New Revision: 208921
> : > URL: htt
Author: mjacob
Date: Tue Jun 8 22:26:47 2010
New Revision: 208926
URL: http://svn.freebsd.org/changeset/base/208926
Log:
Add the VHBA package. It is here in tools because it's really a testbed.
Sponsored by: Panasas
MFC after:1 month
Added:
head/tools/tools/vhba/
head/tools/tool
Author: mjacob
Date: Tue Jun 8 22:40:02 2010
New Revision: 208927
URL: http://svn.freebsd.org/changeset/base/208927
Log:
Try and narrow the gap in which you act on an event that has been canceled.
Obtained from:Jaako Heinonen
MFC after:1 month
Modified:
head/sys/geom/geom_eve
In message: <201006081725.24684@freebsd.org>
John Baldwin writes:
: On Tuesday 08 June 2010 3:22:10 pm M. Warner Losh wrote:
: > In message: <201006081446.09423@freebsd.org>
: > John Baldwin writes:
: > : On Tuesday 08 June 2010 2:04:07 pm John Baldwin wrote:
: > :
Author: mjacob
Date: Tue Jun 8 22:46:44 2010
New Revision: 208928
URL: http://svn.freebsd.org/changeset/base/208928
Log:
Rearrange how things are done to avoid dereferencing stale pointers in
the case of immediate unconfigure after configure. Hold the periph an
extra count while we have the
Author: mav
Date: Wed Jun 9 05:49:02 2010
New Revision: 208934
URL: http://svn.freebsd.org/changeset/base/208934
Log:
Add set of codec IDs.
PR: kern/147466
Modified:
head/sys/dev/sound/pci/hda/hdac.c
Modified: head/sys/dev/sound/pci/hda/hdac.c
26 matches
Mail list logo