On 2013-01-04, John Baldwin wrote:
> > New Revision: 244585
> > Log:
> > Mangle label names containing spaces, non-printable characters '%' or
> > '"'. Mangling is only done for label names read from file system
> > metadata. Encoding resembles URL encoding. For example, the space
> > char
Author: gabor
Date: Sat Jan 5 14:52:31 2013
New Revision: 245057
URL: http://svnweb.freebsd.org/changeset/base/245057
Log:
- Fix handling of the case when multiple patterns are specified in a single
command line argument, separated by newlines
PR: bin/173673
Submitted by: a
Author: kientzle
Date: Sat Jan 5 17:59:44 2013
New Revision: 245064
URL: http://svnweb.freebsd.org/changeset/base/245064
Log:
While trying to track down the root cause for
TX stalls in this driver, I've also had some
time to evaluate the effectiveness of different
watchdog strategies.
Author: neel
Date: Sat Jan 5 18:48:23 2013
New Revision: 245065
URL: http://svnweb.freebsd.org/changeset/base/245065
Log:
Add quirk to indicate that the bhyve hostbridge is capable of supporting
MSI and MSI-X even though it does not advertise the PCI-E capability
itself.
Obtained from:
Author: neel
Date: Sat Jan 5 19:18:50 2013
New Revision: 245066
URL: http://svnweb.freebsd.org/changeset/base/245066
Log:
Teach the kernel to recognize that it is executing inside a bhyve virtual
machine.
Obtained from:NetApp
Modified:
head/sys/kern/subr_param.c
Modified: hea
Author: kientzle
Date: Sat Jan 5 20:30:10 2013
New Revision: 245068
URL: http://svnweb.freebsd.org/changeset/base/245068
Log:
Prefer the new NFS modules
Modified:
head/sys/arm/conf/BEAGLEBONE
Modified: head/sys/arm/conf/BEAGLEBONE
On Fri, Jan 04, 2013 at 12:24:03PM -0500, Nathan Whitehorn wrote:
> On 01/04/13 12:18, John Baldwin wrote:
> > On Saturday, December 22, 2012 08:43:12 AM Jaakko Heinonen wrote:
> >> Author: jh
> >> Date: Sat Dec 22 13:43:12 2012
> >> New Revision: 244585
> >> URL: http://svnweb.freebsd.org/changese
Author: kientzle
Date: Sat Jan 5 20:37:40 2013
New Revision: 245070
URL: http://svnweb.freebsd.org/changeset/base/245070
Log:
Shuffle the TX underrun to work the same way as the RX underrun,
as suggested by YongHyeon PYUN.
Modified:
head/sys/arm/ti/cpsw/if_cpsw.c
Modified: head/sys/arm/ti
Author: gonzo
Date: Sat Jan 5 21:05:16 2013
New Revision: 245071
URL: http://svnweb.freebsd.org/changeset/base/245071
Log:
Fix background color calculation
Spotted by: ray@
Modified:
head/sys/arm/broadcom/bcm2835/bcm2835_fb.c
head/sys/arm/versatile/versatile_clcd.c
Modified: head/sys
Author: kib
Date: Sat Jan 5 21:42:14 2013
New Revision: 245072
URL: http://svnweb.freebsd.org/changeset/base/245072
Log:
Do not round up the size of the UFS filesystem to the fragment size
when comparing its size with the size of the media, to determine if
the last disk block is unused.
Author: kib
Date: Sat Jan 5 21:52:38 2013
New Revision: 245074
URL: http://svnweb.freebsd.org/changeset/base/245074
Log:
Use tabs for indentation.
MFC after:2 weeks
Modified:
head/sbin/geom/class/journal/geom_journal_ufs.c
Modified: head/sbin/geom/class/journal/geom_journal_ufs.c
=
Author: markj
Date: Sat Jan 5 22:04:40 2013
New Revision: 245075
URL: http://svnweb.freebsd.org/changeset/base/245075
Log:
Fix a segfault when bsdgrep -i is given an empty pattern string.
PR: bin/172865
Reviewed by: gabor
Approved by: emaste (co-mentor)
MFC after:1 we
Author: gonzo
Date: Sat Jan 5 23:08:10 2013
New Revision: 245079
URL: http://svnweb.freebsd.org/changeset/base/245079
Log:
Add hw.board.serial and hw.board.revision for exporting board-specific info
Modified:
head/sys/arm/arm/machdep.c
head/sys/arm/include/machdep.h
Modified: head/sys/arm
Author: gonzo
Date: Sat Jan 5 23:08:58 2013
New Revision: 245080
URL: http://svnweb.freebsd.org/changeset/base/245080
Log:
Export board serial and board revision obtained from FDT blob
Modified:
head/sys/arm/broadcom/bcm2835/bcm2835_machdep.c
Modified: head/sys/arm/broadcom/bcm2835/bcm2835_
Thanks. I think the fix below can be improved further, because strdup(3)
is unneeded here and can be omitted. We don't have either constant
argument nor want to preserve it.
On 05.01.2013 18:52, Gabor Kovesdan wrote:
> case 'e':
> - add_pattern(optarg, strlen(opta
Author: andrew
Date: Sun Jan 6 00:42:09 2013
New Revision: 245083
URL: http://svnweb.freebsd.org/changeset/base/245083
Log:
Only work around errata when we are on a part where the erratum applies.
Reviewed by: gonzo
Modified:
head/sys/arm/arm/pl310.c
head/sys/arm/include/pl310.h
Mod
Author: andrew
Date: Sun Jan 6 00:49:06 2013
New Revision: 245084
URL: http://svnweb.freebsd.org/changeset/base/245084
Log:
Silence a clang warning by telling it we are only interested in left
shifting the lower 32bits of the floating point value when we demangle it.
Modified:
head/lib/lib
Author: andrew
Date: Sun Jan 6 01:17:36 2013
New Revision: 245087
URL: http://svnweb.freebsd.org/changeset/base/245087
Log:
Fix the build:
* Use pl310_softc when the softc is otherwise unavailable.
* Use the correct spelling of sc_rtl_revision.
Modified:
head/sys/arm/arm/pl310.c
Mo
Author: andrew
Date: Sun Jan 6 02:50:38 2013
New Revision: 245091
URL: http://svnweb.freebsd.org/changeset/base/245091
Log:
When WCHAR_MIN == 0 the check if a wchar_t value will always be true. In
this case skip the test as gcc complains it is always true.
Modified:
head/bin/ls/util.c
Mod
Author: andrew
Date: Sun Jan 6 03:08:27 2013
New Revision: 245093
URL: http://svnweb.freebsd.org/changeset/base/245093
Log:
Fix a signed/unsigned comparison when wchar_t is unsigned by casting the
wchar_t to a wint_t.
Modified:
head/usr.bin/ul/ul.c
Modified: head/usr.bin/ul/ul.c
=
Author: adrian
Date: Sun Jan 6 04:38:31 2013
New Revision: 245097
URL: http://svnweb.freebsd.org/changeset/base/245097
Log:
Handle HWMP if_transmit() failure gracefully.
If if_transmit() fails, the node ref may need freeing.
This is based on the same logic used by the ageq, which the
Author: adrian
Date: Sun Jan 6 04:40:07 2013
New Revision: 245098
URL: http://svnweb.freebsd.org/changeset/base/245098
Log:
Handle ps-poll data frame if_transmit() failure.
If the data frame transmission failures, it may have a node reference
that needs cleaning up.
If the frame is
Author: andrew
Date: Sun Jan 6 07:14:04 2013
New Revision: 245101
URL: http://svnweb.freebsd.org/changeset/base/245101
Log:
Set the correct relocation type for R_ARM_TARGET2 to R_ARM_GOT_PREL. The
TARGET2 relocation is unused in the current ABI but this change is
required for EABI support.
23 matches
Mail list logo