Author: sjg
Date: Sun Aug 4 07:10:16 2013
New Revision: 253925
URL: http://svnweb.freebsd.org/changeset/base/253925
Log:
Move the call to Job_SetPrefix() to Job_Init() so that
makefiles have had a chance to set .MAKE.JOB.PREFIX
Modified:
head/contrib/bmake/job.c
head/contrib/bmake/main.c
On Sun, Aug 04, 2013 at 12:15:23PM +0900, Hiroki Sato wrote:
> Jilles Tjoelker wrote
> in <20130802152204.ga1...@stack.nl>:
> ji> You can simplify the code using the fairly new pget(). This will also
> ji> fix the incorrect errno when the process does not exist (should be
> ji> [ESRCH]).
> ji>
Author: smh
Date: Sun Aug 4 11:38:08 2013
New Revision: 253926
URL: http://svnweb.freebsd.org/changeset/base/253926
Log:
zfs_ioc_rename should not leave the value of zc_name passed in via zc altered
on return.
MFC after:1 week
Modified:
head/sys/cddl/contrib/opensolaris/uts/common
>> Thank you for your comments. Can you review the attached patch? If
>> there is no problem, I will commit this and MFC to stable branches.
Looks good.
But don't commit it untested ;-)
I can test it for you.
>Perhaps it is best to commit this patch, but also add a warning to
>filemon(4) that
Author: attilio
Date: Sun Aug 4 15:56:19 2013
New Revision: 253927
URL: http://svnweb.freebsd.org/changeset/base/253927
Log:
Remove unnecessary soft busy of the page before to do vn_rdwr() in
kern_sendfile() which is unnecessary.
The page is already wired so it will not be subjected to page
Author: rmh
Date: Sun Aug 4 16:25:46 2013
New Revision: 253930
URL: http://svnweb.freebsd.org/changeset/base/253930
Log:
Fix implicit declaration of warnx().
Modified:
head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c
Modified: head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c
===
On 3 Aug 2013, at 23:27, Simon J. Gerraty wrote:
>
> On Sat, 3 Aug 2013 22:11:46 -0700, Rui Paulo writes:
>> On 2 Aug 2013, at 23:01, Simon J. Gerraty wrote:
>>
>>>
>>> On Fri, 2 Aug 2013 22:46:36 -0700, Rui Paulo writes:
Cool! Can we set this in /etc/make.conf ?
>>>
>>> I would expect
On 4 Aug 2013, at 00:10, Simon J. Gerraty wrote:
> Author: sjg
> Date: Sun Aug 4 07:10:16 2013
> New Revision: 253925
> URL: http://svnweb.freebsd.org/changeset/base/253925
>
> Log:
> Move the call to Job_SetPrefix() to Job_Init() so that
> makefiles have had a chance to set .MAKE.JOB.PREFIX
Author: rpaulo
Date: Sun Aug 4 19:36:46 2013
New Revision: 253936
URL: http://svnweb.freebsd.org/changeset/base/253936
Log:
Regen for if_rsu.
Modified:
head/etc/devd/usb.conf
Modified: head/etc/devd/usb.conf
==
---
Author: hiren
Date: Sun Aug 4 19:54:47 2013
New Revision: 253937
URL: http://svnweb.freebsd.org/changeset/base/253937
Log:
Fixing a typo.
Approved by: sbruno (mentor, implicit)
Modified:
head/sys/dev/iwn/if_iwn.c
Modified: head/sys/dev/iwn/if_iwn.c
Glen Barber wrote
in <201308031241.r73cfmsj016...@svn.freebsd.org>:
gj> Author: gjb
gj> Date: Sat Aug 3 12:41:21 2013
gj> New Revision: 253912
gj> URL: http://svnweb.freebsd.org/changeset/base/253912
gj>
gj> Log:
gj> - Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
gj> - Upd
On Mon, Aug 05, 2013 at 04:59:05AM +0900, Hiroki Sato wrote:
> gj> Modified: releng/9.2/sys/sys/param.h
> gj>
> ==
> gj> --- stable/9/sys/sys/param.h Sat Aug 3 08:21:35 2013
> (r253911)
> gj> +++ releng/9.2/s
Author: marcel
Date: Sun Aug 4 21:00:22 2013
New Revision: 253938
URL: http://svnweb.freebsd.org/changeset/base/253938
Log:
Remove inclusion of . We have no business knowing
anything related to MBR in this file.
Modified:
head/sys/geom/part/g_part.c
head/sys/geom/part/g_part_apm.c
Modif
Author: attilio
Date: Sun Aug 4 21:07:24 2013
New Revision: 253939
URL: http://svnweb.freebsd.org/changeset/base/253939
Log:
The page hold mechanism is fast but it has couple of fallouts:
- It does not let pages respect the LRU policy
- It bloats the active/inactive queues of few pages
Author: attilio
Date: Sun Aug 4 21:17:05 2013
New Revision: 253940
URL: http://svnweb.freebsd.org/changeset/base/253940
Log:
Remove unused member.
Sponsored by: EMC / Isilon storage division
Reviewed by: alc
Tested by:pho
Modified:
head/sys/sparc64/include/pmap.h
head/sys/spa
Author: jeff
Date: Mon Aug 5 00:28:03 2013
New Revision: 253949
URL: http://svnweb.freebsd.org/changeset/base/253949
Log:
- Introduce a specific function, pmap_remove_kernel_pde, for removing
huge pages in the kernel's address space. This works around several
asserts from pmap_demot
Author: hrs
Date: Mon Aug 5 00:36:12 2013
New Revision: 253950
URL: http://svnweb.freebsd.org/changeset/base/253950
Log:
Fix a panic in tmpaddrtimer.
Modified:
head/sys/netinet6/in6_ifattach.c
Modified: head/sys/netinet6/in6_ifattach.c
===
Marcel Moolenaar writes:
> +static union {
> + struct dirent dirent;
> + char buf[512];
> +} u;
> +off_t off;
> +int len;
[...]
> +/*
> + * The readdirfd() function is specific to the loader environment.
> + * We do the best we can to make freaddir work, but i
On Fri, Aug 02, 2013 at 05:13:29PM +, Andrey A. Chernov wrote:
> New Revision: 253888
> URL: http://svnweb.freebsd.org/changeset/base/253888
>
> Log:
> MFC r253810
>
> grep -i does not work for simple patterns and single byte locales, like
> LANG=ru_RU.KOI8-R grep -i
> Fix it.
On Aug 4, 2013, at 2:06 PM, Jan Beich wrote:
> Marcel Moolenaar writes:
>
>> +static union {
>> +struct dirent dirent;
>> +char buf[512];
>> +} u;
>> +off_t off;
>> +int len;
> [...]
>> +/*
>> + * The readdirfd() function is specific to the loader environment.
"Simon J. Gerraty" wrote
in <20130804151754.8189758...@chaos.jnpr.net>:
sj> >> Thank you for your comments. Can you review the attached patch? If
sj> >> there is no problem, I will commit this and MFC to stable branches.
sj>
sj> Looks good.
sj> But don't commit it untested ;-)
sj> I can tes
Marcel Moolenaar writes:
> On Aug 4, 2013, at 2:06 PM, Jan Beich wrote:
>
>> Marcel Moolenaar writes:
>>
>>> +static union {
>>> + struct dirent dirent;
>>> + char buf[512];
>>> +} u;
>>> +off_t off;
>>> +int len;
>> [...]
>>> +/*
>>> + * The readdirfd() function i
22 matches
Mail list logo