Author: mckusick
Date: Fri Apr 20 07:00:28 2012
New Revision: 234483
URL: http://svn.freebsd.org/changeset/base/234483
Log:
This update uses the MNT_VNODE_FOREACH_ACTIVE interface that loops
over just the active vnodes associated with a mount point to replace
MNT_VNODE_FOREACH_ALL in the vfs
Author: adrian
Date: Fri Apr 20 08:26:05 2012
New Revision: 234485
URL: http://svn.freebsd.org/changeset/base/234485
Log:
Introduce the matching PCI ath(4) fixup code from ar71xx_pci into
ar724x_pci.c.
* Move out the code which populates the firmware into ar71xx_fixup.c
* Shuffle around
On 17.04.2012 01:29, Adrian Chadd wrote:
On 15 April 2012 23:33, Alexander V. Chernikov wrote:
On 16.04.2012 01:17, Adrian Chadd wrote:
Hi,
This has broken (at least) net80211 and bpf, with LOR:
Yes, it is. Please try the attached patch
Hi,
Hello!
Sorry for the late reply, answering for
Author: thompsa
Date: Fri Apr 20 09:55:50 2012
New Revision: 234487
URL: http://svn.freebsd.org/changeset/base/234487
Log:
Add linkstate to bridge(4), set the link to up when at least one underlying
interface is up, otherwise the link is down.
This, among other things, allows carp to work
Author: thompsa
Date: Fri Apr 20 10:06:28 2012
New Revision: 234488
URL: http://svn.freebsd.org/changeset/base/234488
Log:
Move the interface media check to a taskqueue, some interfaces (usb) sleep
during SIOCGIFMEDIA and we were holding locks.
Modified:
head/sys/net/bridgestp.c
head/sys/
Author: jh
Date: Fri Apr 20 10:08:30 2012
New Revision: 234489
URL: http://svn.freebsd.org/changeset/base/234489
Log:
The value of flags matching VNOVAL can't be supported. Return EOPNOTSUPP
from setfflags() in this case. This fixes the return value of
chflags(path, -1).
Discussed with:
Author: hselasky
Date: Fri Apr 20 14:29:45 2012
New Revision: 234491
URL: http://svn.freebsd.org/changeset/base/234491
Log:
Fix some compile warnings.
MFC after:1 week
Modified:
head/lib/libusb/libusb10.c
head/lib/libusb/libusb10_desc.c
head/lib/libusb/libusb10_io.c
head/lib/li
Author: marcel
Date: Fri Apr 20 15:01:23 2012
New Revision: 234493
URL: http://svn.freebsd.org/changeset/base/234493
Log:
Build a 32-bit EFI loader on amd64. This to match the rest of the
code that is used to construct a loader (e.g. libstand, ficl, etc).
There is such a thing as a 64-bit
Author: jhb
Date: Fri Apr 20 15:32:36 2012
New Revision: 234494
URL: http://svn.freebsd.org/changeset/base/234494
Log:
Include the associated wait channel message for context switch ktrace
records. kdump supports both the old and new messages.
Submitted by: Andrey Zonov andrey zonov org
Author: jhb
Date: Fri Apr 20 20:27:31 2012
New Revision: 234501
URL: http://svn.freebsd.org/changeset/base/234501
Log:
The amr(4) firmware contains a rather dubious "feature" where it
assumes for small buffers (< 64k) that the OS driver is actually using
a buffer rounded up to the next power
Author: dim
Date: Fri Apr 20 21:00:39 2012
New Revision: 234502
URL: http://svn.freebsd.org/changeset/base/234502
Log:
After r217375, some startup objects under lib/csu are built in a special
way: first they are compiled to assembly, then some sed'ing is done on
the assembly, and lastly the
Author: dim
Date: Fri Apr 20 21:17:33 2012
New Revision: 234503
URL: http://svn.freebsd.org/changeset/base/234503
Log:
Replace homegrown list implementation in sys/dev/asr/asr.c with
STAILQ(). While here, fix another clang warning about a switch which
tests an enum type for a regular intege
Author: brooks
Date: Fri Apr 20 21:37:42 2012
New Revision: 234504
URL: http://svn.freebsd.org/changeset/base/234504
Log:
Enable DTrace hooks in GENERIC.
Reviewed by: gnn
Approved by: core (jhb, imp)
Requested by: a cast of thousands
MFC after:3 days
Modified:
head/sys/amd64/
Author: dim
Date: Fri Apr 20 21:43:19 2012
New Revision: 234506
URL: http://svn.freebsd.org/changeset/base/234506
Log:
Fix the following compilation warnings in nxge(4):
sys/dev/nxge/if_nxge.c:1276:11: error: case value not in enumerated type
'xge_hal_event_e' (aka 'enum xge_hal_event_e'
Author: dim
Date: Fri Apr 20 21:52:57 2012
New Revision: 234507
URL: http://svn.freebsd.org/changeset/base/234507
Log:
Fix the following compilation warnings in sys/contrib/rdma/rdma_cma.c:
sys/contrib/rdma/rdma_cma.c:1259:8: error: case value not in enumerated
type 'enum iw_cm_event_sta
Author: adrian
Date: Fri Apr 20 21:56:13 2012
New Revision: 234508
URL: http://svn.freebsd.org/changeset/base/234508
Log:
"Upgrade" the AR9285 code to support PCI/ART EEPROM on flash.
I've just verified that this boots on an Atheros AP91. I haven't verified
it with traffic though, so YMMV
Author: adrian
Date: Fri Apr 20 22:07:21 2012
New Revision: 234510
URL: http://svn.freebsd.org/changeset/base/234510
Log:
.. oops.
Modified:
head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c
Modified: head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c
=
Author: adrian
Date: Fri Apr 20 22:44:00 2012
New Revision: 234515
URL: http://svn.freebsd.org/changeset/base/234515
Log:
Allow for a default GPIO pin "high", which is required for some boards
which tie the USB device enable to a GPIO line.
Submitted by: Stefan Bethke
Modified:
head/s
Author: nwhitehorn
Date: Fri Apr 20 23:01:36 2012
New Revision: 234517
URL: http://svn.freebsd.org/changeset/base/234517
Log:
Make sure all pending operations have completed on the existing thread
before (potentially) migrating it to a different CPU.
MFC after:5 days
Modified:
head
Author: marius
Date: Sat Apr 21 01:51:16 2012
New Revision: 234524
URL: http://svn.freebsd.org/changeset/base/234524
Log:
o Fixes:
- When switching to 4-bit operation, send a SET_CLR_CARD_DETECT command
to disconnect the card-detect pull-up resistor from the DAT3 line before
send
Author: adrian
Date: Sat Apr 21 04:17:30 2012
New Revision: 234525
URL: http://svn.freebsd.org/changeset/base/234525
Log:
Allow for MIPS devices to have a specific probe/attach order.
The default priority is now '1000' rather than '0'. This may cause some
unforseen regressions.
Subm
Author: das
Date: Sat Apr 21 06:08:29 2012
New Revision: 234529
URL: http://svn.freebsd.org/changeset/base/234529
Log:
Ensure that the {,v}swprintf functions always null-terminate the
output string, even if an encoding error or malloc failure occurs.
Modified:
head/lib/libc/stdio/vswprintf.
Author: das
Date: Sat Apr 21 06:09:09 2012
New Revision: 234530
URL: http://svn.freebsd.org/changeset/base/234530
Log:
- Fix the claim that the output is always null-terminated. This isn't
true if the size is zero.
- Fix a claim that sprintf() is the same as snprintf() with an
infinite
Author: das
Date: Sat Apr 21 06:08:02 2012
New Revision: 234528
URL: http://svn.freebsd.org/changeset/base/234528
Log:
Fix a bug introduced in r187302 that was causing fputws() to enter an
infinite loop pretty much unconditionally. It's remarkable that the
patch that introduced the bug was
Author: das
Date: Sat Apr 21 06:10:18 2012
New Revision: 234531
URL: http://svn.freebsd.org/changeset/base/234531
Log:
If the size passed to {,v}s{w,n}printf is larger than INT_MAX+1
(i.e., the return value would overflow), set errno to EOVERFLOW
and return an error. This improves the chanc
25 matches
Mail list logo