Author: phk
Date: Tue May 17 06:36:32 2011
New Revision: 222004
URL: http://svn.freebsd.org/changeset/base/222004
Log:
Don't expect PAGE_SIZE to exist on all platforms (It is a pretty arbitrary
choice of default size in the first place)
Reverse the order of arguments to the internal stati
In message <201105161747.40824@freebsd.org>, John Baldwin writes:
>> Yes I know, but sbufs are used on platforms where %z is not available
>> so I prefer to use %jd, in particular since this is only assert strings.
>
>Really? They have %j but not %z? intmax_t is newer than size_t.
Appearant
In message <20110516211954.gj48...@deviant.kiev.zoral.com.ua>, Kostik Belousov
writes:
>The bump was also needed after the r212367. Lets do one for two changes.
I have a few more changes coming, before the bump should happen.
--
Poul-Henning Kamp | UNIX since Zilog Zeus 3.20
p...@freebsd
On May 15, 2011, at 10:25 AM, Andrey V. Elsukov wrote:
>
>> As I said: I'm fine with the change, but please assess the
>> consequences of dropping the fall-back, for it may be better
>> to make this change on -current after 9-stable branched and
>> without the MFC.
>
> So, would you like to reve
Author: np
Date: Tue May 17 00:40:11 2011
New Revision: 222003
URL: http://svn.freebsd.org/changeset/base/222003
Log:
Add missing header. The test for VLAN_CAPABILITIES later in the file
doesn't make sense without it.
MFC after:3 days
Modified:
head/sys/dev/cxgbe/t4_main.c
Modifi
Author: attilio
Date: Mon May 16 23:35:14 2011
New Revision: 222002
URL: http://svn.freebsd.org/changeset/base/222002
Log:
Merge r221279,221280 from largeSMP project:
pmc_mask doesn't need to use memory barriers.
Reviewed by: fabient
Tested by:several
MFC after:1 week
Modifi
Author: attilio
Date: Mon May 16 23:20:12 2011
New Revision: 222001
URL: http://svn.freebsd.org/changeset/base/222001
Log:
Merge r221278 from largeSMP project:
idle_cpus_mask is just used in sched_4bsd, thus make it private for it.
Tested by:several
Modified:
head/sys/kern/sched_4b
On Monday 16 May 2011 01:41 pm, Jung-uk Kim wrote:
> On Sunday 15 May 2011 12:19 am, Bjoern A. Zeeb wrote:
> > On Sat, 14 May 2011, Colin Percival wrote:
> > > Author: cperciva
> > > Date: Sat May 14 17:44:12 2011
> > > New Revision: 221900
> > > URL: http://svn.freebsd.org/changeset/base/221900
>
On Monday, May 16, 2011 4:27:11 pm Poul-Henning Kamp wrote:
> In message <20110516193833.ga2...@garage.freebsd.pl>, Pawel Jakub Dawidek
write
> s:
>
> >> - ("wrote past end of sbuf (%d >=3D %d)", s->s_len, s->s_size));
> >> + ("wrote past end of sbuf (%jd >=3D %jd)",
> >> + (intmax
On Mon, May 16, 2011 at 04:18:40PM +, Poul-Henning Kamp wrote:
> Author: phk
> Date: Mon May 16 16:18:40 2011
> New Revision: 221993
> URL: http://svn.freebsd.org/changeset/base/221993
>
> Log:
> Change the length quantities of sbufs to be ssize_t rather than int.
>
> Constify a couple
In message , m...@freebsd.or
g writes:
>> Log:
>> Change the length quantities of sbufs to be ssize_t rather than int.
>
>Why?
>
>Do we really expect someone to put more than 2GB
>into something that is a string buffer?
That is exactly why I am doing it.
sbufs have gained a life outside FreeBSD,
In message <20110516193833.ga2...@garage.freebsd.pl>, Pawel Jakub Dawidek write
s:
>> -("wrote past end of sbuf (%d >=3D %d)", s->s_len, s->s_size));
>> +("wrote past end of sbuf (%jd >=3D %jd)",
>> +(intmax_t)s->s_len, (intmax_t)s->s_size));
>
>For ssize_t we have %zd.
Ye
On Mon, May 16, 2011 at 04:18:40PM +, Poul-Henning Kamp wrote:
> Author: phk
> Date: Mon May 16 16:18:40 2011
> New Revision: 221993
> URL: http://svn.freebsd.org/changeset/base/221993
>
> Log:
> Change the length quantities of sbufs to be ssize_t rather than int.
>
> Constify a couple
On Sunday 15 May 2011 12:19 am, Bjoern A. Zeeb wrote:
> On Sat, 14 May 2011, Colin Percival wrote:
> > Author: cperciva
> > Date: Sat May 14 17:44:12 2011
> > New Revision: 221900
> > URL: http://svn.freebsd.org/changeset/base/221900
> >
> > Log:
> > Encourage Ben Laurie to finish getting his comm
On Mon, May 16, 2011 at 9:18 AM, Poul-Henning Kamp wrote:
> Author: phk
> Date: Mon May 16 16:18:40 2011
> New Revision: 221993
> URL: http://svn.freebsd.org/changeset/base/221993
>
> Log:
> Change the length quantities of sbufs to be ssize_t rather than int.
Why?
I don't object at all to chang
Author: phk
Date: Mon May 16 16:18:40 2011
New Revision: 221993
URL: http://svn.freebsd.org/changeset/base/221993
Log:
Change the length quantities of sbufs to be ssize_t rather than int.
Constify a couple of arguments.
Modified:
head/sys/kern/subr_sbuf.c
head/sys/sys/sbuf.h
Modified:
Author: ae
Date: Mon May 16 15:59:50 2011
New Revision: 221992
URL: http://svn.freebsd.org/changeset/base/221992
Log:
Make diagnostic messages more specific. With bootverbose print out
all inconsistencies of integrity in the partition table, not first
found only.
Requested by: kib
Modi
Author: avg
Date: Mon May 16 15:36:11 2011
New Revision: 221991
URL: http://svn.freebsd.org/changeset/base/221991
Log:
Revert accidentally committed local change in r221990
Pointyhat to: avg
Modified:
head/sys/cddl/compat/opensolaris/sys/time.h
Modified: head/sys/cddl/compat/opensolaris
Author: avg
Date: Mon May 16 15:29:59 2011
New Revision: 221990
URL: http://svn.freebsd.org/changeset/base/221990
Log:
better integrate cyclic module with clocksource/eventtimer subsystem
Now in the case when one-shot timers are used cyclic events should fire
closer to theier scheduled ti
Author: nwhitehorn
Date: Mon May 16 15:20:54 2011
New Revision: 221988
URL: http://svn.freebsd.org/changeset/base/221988
Log:
Fix a = pregions[i].mr_start)
- && (addr + len < pregions[i].mr_start + pregions[i].mr_size))
+ && (addr + len <= pregions[i].mr_start
Hi,
On May 15, 2011, at 21:14, Kostik Belousov wrote:
> On Sun, May 15, 2011 at 07:04:08PM +, Henrik Brix Andersen wrote:
>> Author: brix (ports committer)
>> Date: Sun May 15 19:04:08 2011
>> New Revision: 221971
>> URL: http://svn.freebsd.org/changeset/base/221971
>>
>> Log:
>> Fix breakag
Author: rmacklem
Date: Mon May 16 13:12:09 2011
New Revision: 221986
URL: http://svn.freebsd.org/changeset/base/221986
Log:
Fix a comment that got missed by r221973 which changed
the sysctl naming for the old NFS client to vfs.oldnfs.
Modified:
head/sys/nfsclient/nfs.h
Modified: head/sys/n
Author: ae
Date: Mon May 16 12:00:32 2011
New Revision: 221984
URL: http://svn.freebsd.org/changeset/base/221984
Log:
Add diagnostic messages for integrity checks.
Modified:
head/sys/geom/part/g_part.c
Modified: head/sys/geom/part/g_part.c
23 matches
Mail list logo