Author: kientzle
Date: Sun Apr 12 05:47:23 2009
New Revision: 190961
URL: http://svn.freebsd.org/changeset/base/190961
Log:
Merge from libarchive.googlecode.com r791, r879, r884, r948: Various
fixes to read_support_compression_program. In particular, failure of
the external program is detec
Author: kientzle
Date: Sun Apr 12 05:38:35 2009
New Revision: 190960
URL: http://svn.freebsd.org/changeset/base/190960
Log:
Thanks to Christoph Mallon for pointing out the dead variable here.
Also, rework this a little to make the logic excruciatingly clear.
Modified:
head/lib/libarchive/ar
Author: kientzle
Date: Sun Apr 12 05:33:34 2009
New Revision: 190959
URL: http://svn.freebsd.org/changeset/base/190959
Log:
Merge from libarchive.googlecode.com: Mostly a bunch of
corrections to the Windows support to reconcile differences
between Visual Studio and Cygwin. Includes parts o
Tim Kientzle schrieb:
Author: kientzle
Date: Sun Apr 12 04:45:40 2009
New Revision: 190955
URL: http://svn.freebsd.org/changeset/base/190955
Log:
Merge r881 from libarchive.googlecode.com: The "empty" format
should not be recognized if there is a read error.
Modified:
head/lib/libarchive
Author: kmacy
Date: Sun Apr 12 05:19:35 2009
New Revision: 190958
URL: http://svn.freebsd.org/changeset/base/190958
Log:
sendfile doesn't modify the vnode - acquire vnode lock shared
Reviewed by: ups, jeffr
Modified:
head/sys/kern/uipc_syscalls.c
Modified: head/sys/kern/uipc_syscalls.c
Author: kientzle
Date: Sun Apr 12 05:04:02 2009
New Revision: 190957
URL: http://svn.freebsd.org/changeset/base/190957
Log:
Merge from libarchive.googlecode.com r756,r761:
Document the new archive_read_disk API.
Added:
head/lib/libarchive/archive_read_disk.3 (contents, props changed)
Modi
Author: kientzle
Date: Sun Apr 12 04:59:11 2009
New Revision: 190956
URL: http://svn.freebsd.org/changeset/base/190956
Log:
Merge from libarchive.googlecode.com:
r751: Change __archive_strncat() to use a void * source, which reduces
the amount of casting needed to use this with "char", "sign
Author: kientzle
Date: Sun Apr 12 04:45:40 2009
New Revision: 190955
URL: http://svn.freebsd.org/changeset/base/190955
Log:
Merge r881 from libarchive.googlecode.com: The "empty" format
should not be recognized if there is a read error.
Modified:
head/lib/libarchive/archive_read_support_fo
On Sun, 12 Apr 2009 00:03:43 -0400
David Schultz wrote:
> > Yes, no problem! Pth required singal.h's definision(SIGINT,
> > SIGQUIT, ...), and it was already token care in pthread.h.in
> > like following:
> I don't understand how this is related to the problem; signal.h
> and sys/sig
On Sun, Apr 12, 2009, Norikatsu Shigemura wrote:
> On Sat, 11 Apr 2009 23:00:54 -0400
> > > > Can't we just put a patch in ports tree itself? What meant under 'no
> > > > clean solution emerged'? I can prepare a patch, if needed.
> > > I think so, too. I have a quick hack patch.
> > As I mention
On Sat, 11 Apr 2009 23:00:54 -0400
> > > Can't we just put a patch in ports tree itself? What meant under 'no
> > > clean solution emerged'? I can prepare a patch, if needed.
> > I think so, too. I have a quick hack patch.
> As I mentioned to vd@ on 3/20, I'd prefer something like
> that. Does
Author: nwhitehorn
Date: Sun Apr 12 03:03:55 2009
New Revision: 190953
URL: http://svn.freebsd.org/changeset/base/190953
Log:
Rework the way we get the cacheline size. Instead of having a table of
CPUs known to use 128 byte cache lines and defaulting to 32, use the dcbz
instruction to measur
On Sun, Apr 12, 2009, Norikatsu Shigemura wrote:
> On Sat, 11 Apr 2009 21:07:02 +0400
> Stanislav Sedov wrote:
> > > Log:
> > > GNU Pth has some fragile kludges that were broken by r189828.
> > > I've discussed this with the Pth maintainer and no clear solution
> > > has emerged on the ports
Author: rwatson
Date: Sat Apr 11 23:35:20 2009
New Revision: 190951
URL: http://svn.freebsd.org/changeset/base/190951
Log:
Update stats in struct ipstat using four new macros, IPSTAT_ADD(),
IPSTAT_INC(), IPSTAT_SUB(), and IPSTAT_DEC(), rather than directly
manipulating the fields across the
Author: kientzle
Date: Sat Apr 11 22:39:38 2009
New Revision: 190950
URL: http://svn.freebsd.org/changeset/base/190950
Log:
Any tar program should work here; the explicit
reference to bsdtar is misleading.
Modified:
head/share/man/man4/textdump.4
Modified: head/share/man/man4/textdump.4
==
Author: alc
Date: Sat Apr 11 22:34:08 2009
New Revision: 190949
URL: http://svn.freebsd.org/changeset/base/190949
Log:
Remove execute permission from the memory allocated by sbrk().
Pre-announced on: -arch (3/31/09)
Discussed with: rwatson
Tested by: marius (sparc64)
Modified:
head/s
Author: rwatson
Date: Sat Apr 11 22:07:19 2009
New Revision: 190948
URL: http://svn.freebsd.org/changeset/base/190948
Log:
Update stats in struct tcpstat using two new macros, TCPSTAT_ADD() and
TCPSTAT_INC(), rather than directly manipulating the fields across the
kernel. This will make it
Author: rwatson
Date: Sat Apr 11 22:01:40 2009
New Revision: 190947
URL: http://svn.freebsd.org/changeset/base/190947
Log:
Remove conditionally compiled time counter statistics; tools like
DTrace, kernel profiling, etc, can provide this information without
the overhead.
MFC after:3
Author: nwhitehorn
Date: Sat Apr 11 20:43:41 2009
New Revision: 190946
URL: http://svn.freebsd.org/changeset/base/190946
Log:
Fix recognition of kernel-mode traps that pass through the KDB trap handler
but do not actually invoke KDB. This includes recoverable machine checks
encountered in ke
On Sat, 11 Apr 2009 20:23:08 + (UTC)
Alexander Kabaev wrote:
> Author: kan
> Date: Sat Apr 11 20:23:08 2009
> New Revision: 190945
> URL: http://svn.freebsd.org/changeset/base/190945
>
> Log:
> Fix v_cache_dd handling for negative entries. v_cache_dd pointer was
> not populated in parent
Author: kan
Date: Sat Apr 11 20:23:08 2009
New Revision: 190945
URL: http://svn.freebsd.org/changeset/base/190945
Log:
Fix v_cache_dd handling for negative entries. v_cache_dd pointer was
not populated in parent directory if negative entry was being
created, yet entry itself was added to the
On Sat, 11 Apr 2009, Steve Kargl wrote:
On Sat, Apr 11, 2009 at 02:01:01PM +, Ed Schouten wrote:
Author: ed
Date: Sat Apr 11 14:01:01 2009
New Revision: 190919
URL: http://svn.freebsd.org/changeset/base/190919
Log:
Simplify in/out functions (for i386 and AMD64).
Remove a hack to gener
On Sat, 2009-04-11 at 21:44 +0400, Stanislav Sedov wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On Sun, 12 Apr 2009 02:18:41 +0900
> Norikatsu Shigemura mentioned:
>
> > On Sat, 11 Apr 2009 21:07:02 +0400
> > Stanislav Sedov wrote:
> > > > Log:
> > > > GNU Pth has some fragile
On Sat, Apr 11, 2009 at 09:47:46PM +0400, Stanislav Sedov wrote:
> On Sat, 11 Apr 2009 18:37:28 +0100
> Rui Paulo mentioned:
>
> >
> > On 11 Apr 2009, at 18:36, Rui Paulo wrote:
> >
> > > Author: rpaulo
> > > Date: Sat Apr 11 17:36:11 2009
> > > New Revision: 190944
> > > URL: http://svn.freebs
On 11 Apr 2009, at 18:47, Stanislav Sedov wrote:
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Sat, 11 Apr 2009 18:37:28 +0100
Rui Paulo mentioned:
On 11 Apr 2009, at 18:36, Rui Paulo wrote:
Author: rpaulo
Date: Sat Apr 11 17:36:11 2009
New Revision: 190944
URL: http://svn.freebsd.org
On Sat, 11 Apr 2009, Ed Schouten wrote:
* Steve Kargl wrote:
I thought Christoph and bde were still hashing out the correctness
of this patch.
http://lists.freebsd.org/pipermail/freebsd-amd64/2009-April/012064.html
Yes, so I've only committed a subset of changes of which there were no
major
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Sat, 11 Apr 2009 18:37:28 +0100
Rui Paulo mentioned:
>
> On 11 Apr 2009, at 18:36, Rui Paulo wrote:
>
> > Author: rpaulo
> > Date: Sat Apr 11 17:36:11 2009
> > New Revision: 190944
> > URL: http://svn.freebsd.org/changeset/base/190944
> >
> > Lo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Sun, 12 Apr 2009 02:18:41 +0900
Norikatsu Shigemura mentioned:
> On Sat, 11 Apr 2009 21:07:02 +0400
> Stanislav Sedov wrote:
> > > Log:
> > > GNU Pth has some fragile kludges that were broken by r189828.
> > > I've discussed this with the Pth
On 11 Apr 2009, at 18:36, Rui Paulo wrote:
Author: rpaulo
Date: Sat Apr 11 17:36:11 2009
New Revision: 190944
URL: http://svn.freebsd.org/changeset/base/190944
Log:
Revert previous commit that commented out some bpf functions.
Unconstify arguments of bpf_image(), bpf_filter() and bpf_dump().
Author: rpaulo
Date: Sat Apr 11 17:36:11 2009
New Revision: 190944
URL: http://svn.freebsd.org/changeset/base/190944
Log:
Revert previous commit that commented out some bpf functions.
Unconstify arguments of bpf_image(), bpf_filter() and bpf_dump(). This
is needed because some ports rely hea
On Sat, 11 Apr 2009 21:07:02 +0400
Stanislav Sedov wrote:
> > Log:
> > GNU Pth has some fragile kludges that were broken by r189828.
> > I've discussed this with the Pth maintainer and no clear solution
> > has emerged on the ports side of things, so for now, hack around
> > the issue in s
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Sat, 11 Apr 2009 21:07:02 +0400
Stanislav Sedov wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On Sat, 11 Apr 2009 16:57:51 + (UTC)
> David Schultz mentioned:
>
> > Author: das
> > Date: Sat Apr 11 16:57:50 2009
> > New Revisi
On Sat, 11 Apr 2009, Ed Schouten wrote:
Log:
Simplify in/out functions (for i386 and AMD64).
Remove a hack to generate more efficient code for port numbers below
0x100, which has been obsolete for at least ten years, because GCC has
an asm constraint to specify that.
Submitted by: Christ
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Sat, 11 Apr 2009 16:57:51 + (UTC)
David Schultz mentioned:
> Author: das
> Date: Sat Apr 11 16:57:50 2009
> New Revision: 190943
> URL: http://svn.freebsd.org/changeset/base/190943
>
> Log:
> GNU Pth has some fragile kludges that were broke
On Sat, 11 Apr 2009 09:35:28 -0700
Steve Kargl wrote:
> On Sat, Apr 11, 2009 at 02:01:01PM +, Ed Schouten wrote:
> > Author: ed
> > Date: Sat Apr 11 14:01:01 2009
> > New Revision: 190919
> > URL: http://svn.freebsd.org/changeset/base/190919
> >
> > Log:
> > Simplify in/out functions (for
Author: das
Date: Sat Apr 11 16:57:50 2009
New Revision: 190943
URL: http://svn.freebsd.org/changeset/base/190943
Log:
GNU Pth has some fragile kludges that were broken by r189828.
I've discussed this with the Pth maintainer and no clear solution
has emerged on the ports side of things, so f
Hi Steve,
* Steve Kargl wrote:
> I thought Christoph and bde were still hashing out the correctness
> of this patch.
>
> http://lists.freebsd.org/pipermail/freebsd-amd64/2009-April/012064.html
Yes, so I've only committed a subset of changes of which there were no
major (or in my opinion valid)
On Sat, Apr 11, 2009 at 02:01:01PM +, Ed Schouten wrote:
> Author: ed
> Date: Sat Apr 11 14:01:01 2009
> New Revision: 190919
> URL: http://svn.freebsd.org/changeset/base/190919
>
> Log:
> Simplify in/out functions (for i386 and AMD64).
>
> Remove a hack to generate more efficient code
Author: kib
Date: Sat Apr 11 16:12:20 2009
New Revision: 190942
URL: http://svn.freebsd.org/changeset/base/190942
Log:
When zapping v_cache_dd for !MAKEENTRY case in cache_lookup(), we shall
lock cache as writer.
Reviewed by: kan
Modified:
head/sys/kern/vfs_cache.c
Modified: head/sys
Author: piso
Date: Sat Apr 11 15:26:31 2009
New Revision: 190941
URL: http://svn.freebsd.org/changeset/base/190941
Log:
What's the point of adjusting a checksum if we are going to toss the
packet? Anticipate the check/return code.
Modified:
head/sys/ (props changed)
head/sys/netinet/lib
Author: delphij
Date: Sat Apr 11 15:21:11 2009
New Revision: 190940
URL: http://svn.freebsd.org/changeset/base/190940
Log:
MFC r190482: zero out memory before use and free.
Security: Potential Information Leak
Modified:
stable/6/lib/libc/ (props changed)
stable/6/lib/libc/db/RE
Author: delphij
Date: Sat Apr 11 15:19:26 2009
New Revision: 190939
URL: http://svn.freebsd.org/changeset/base/190939
Log:
MFC r190482: zero out memory before use and free.
Approved by: re (kib)
Security: Potential Information Leak
Modified:
stable/7/lib/libc/ (props changed)
Author: piso
Date: Sat Apr 11 15:19:09 2009
New Revision: 190938
URL: http://svn.freebsd.org/changeset/base/190938
Log:
Plug two bugs introduced with modules conversion:
-UdpAliasIn(): correctly check return code after modules ran.
-alias_nbt: in case of malformed packets (or some other u
Author: ed
Date: Sat Apr 11 15:07:27 2009
New Revision: 190936
URL: http://svn.freebsd.org/changeset/base/190936
Log:
Style fixes to the newfs_msdos manpage.
Submitted by: Christoph Mallon
Modified:
head/sbin/newfs_msdos/newfs_msdos.8
Modified: head/sbin/newfs_msdos/newfs_msdos.8
=
Author: piso
Date: Sat Apr 11 15:05:19 2009
New Revision: 190935
URL: http://svn.freebsd.org/changeset/base/190935
Log:
Remove stale comments.
Modified:
head/sys/ (props changed)
head/sys/netinet/libalias/alias.c
Modified: head/sys/netinet/libalias/alias.c
===
Author: delphij
Date: Sat Apr 11 15:04:51 2009
New Revision: 190934
URL: http://svn.freebsd.org/changeset/base/190934
Log:
MFC r190832: Mention support of 1000baseSX and 2500baseSX.
Approved by: re (kensmith)
Modified:
stable/7/share/man/man4/ (props changed)
stable/7/share/man/man4
Author: ed
Date: Sat Apr 11 15:03:44 2009
New Revision: 190933
URL: http://svn.freebsd.org/changeset/base/190933
Log:
Update documentation (forgotten in r190929).
Submitted by: Christoph Mallon
Modified:
head/sbin/newfs_msdos/newfs_msdos.8
Modified: head/sbin/newfs_msdos/newfs_msdos.8
Author: ed
Date: Sat Apr 11 14:56:29 2009
New Revision: 190932
URL: http://svn.freebsd.org/changeset/base/190932
Log:
Do not prepend /dev/ when -C is used.
Submitted by: Christoph Mallon
Modified:
head/sbin/newfs_msdos/newfs_msdos.8
head/sbin/newfs_msdos/newfs_msdos.c
Modified: head/
Author: ed
Date: Sat Apr 11 14:53:32 2009
New Revision: 190931
URL: http://svn.freebsd.org/changeset/base/190931
Log:
When using -C, do not warn when the file is not a character device, but warn
when it is not a regular file.
Submitted by: Christoph Mallon
Modified:
head/sbin/newfs_msd
Author: ed
Date: Sat Apr 11 14:43:22 2009
New Revision: 190930
URL: http://svn.freebsd.org/changeset/base/190930
Log:
Fix a bug in r185587.
fstat(fd, &sb) was not executed unconditionally anymore so sb was read
uninitialised when -C is used.
Submitted by: Christoph Mallon
Modified:
Takahashi Yoshihiro schrieb:
Author: nyan
Date: Sat Apr 11 14:25:47 2009
New Revision: 190928
URL: http://svn.freebsd.org/changeset/base/190928
Log:
MFi386: revision 190919
Simplify in/out functions.
Remove a hack to generate more efficient code for port numbers below
0x100,
Author: ed
Date: Sat Apr 11 14:33:10 2009
New Revision: 190929
URL: http://svn.freebsd.org/changeset/base/190929
Log:
Use ftruncate() instead of lseek()+write()+lseek() to set the created
file (-C) to the requested size.
Submitted by: Christoph Mallon
Modified:
head/sbin/newfs_msdos/n
Author: nyan
Date: Sat Apr 11 14:25:47 2009
New Revision: 190928
URL: http://svn.freebsd.org/changeset/base/190928
Log:
MFi386: revision 190919
Simplify in/out functions.
Remove a hack to generate more efficient code for port numbers below
0x100, which has been obsolete for at
Author: ed
Date: Sat Apr 11 14:24:54 2009
New Revision: 190927
URL: http://svn.freebsd.org/changeset/base/190927
Log:
De-static local variables in main() (which is not recursive) and const-ify
others.
Submitted by: Christoph Mallon
Modified:
head/sbin/newfs_msdos/newfs_msdos.c
Modifi
Author: ed
Date: Sat Apr 11 14:20:45 2009
New Revision: 190925
URL: http://svn.freebsd.org/changeset/base/190925
Log:
Show -@ and -C in usage, which were added in r185587.
Submitted by: Christoph Mallon
Modified:
head/sbin/newfs_msdos/newfs_msdos.c
Modified: head/sbin/newfs_msdos/newfs
Author: ed
Date: Sat Apr 11 14:15:56 2009
New Revision: 190924
URL: http://svn.freebsd.org/changeset/base/190924
Log:
Clean up the usage() function to use a single fprintf().
Submitted by: Christoph Mallon
Modified:
head/sbin/newfs_msdos/newfs_msdos.c
Modified: head/sbin/newfs_msdos/ne
Author: delphij
Date: Sat Apr 11 14:13:39 2009
New Revision: 190922
URL: http://svn.freebsd.org/changeset/base/190922
Log:
MFC r190656:
Fix a crash when corrupted data file is found.
PR: bin/32686
Modified:
stable/6/usr.bin/locate/ (props changed)
stable/6/usr.bin/lo
Author: delphij
Date: Sat Apr 11 14:10:42 2009
New Revision: 190920
URL: http://svn.freebsd.org/changeset/base/190920
Log:
MFC r190656:
Fix a crash when corrupted data file is found.
PR: bin/32686
Approved by: re (kib)
Modified:
stable/7/usr.bin/locate/ (props changed
Author: ed
Date: Sat Apr 11 14:01:01 2009
New Revision: 190919
URL: http://svn.freebsd.org/changeset/base/190919
Log:
Simplify in/out functions (for i386 and AMD64).
Remove a hack to generate more efficient code for port numbers below
0x100, which has been obsolete for at least ten years,
Author: trasz
Date: Sat Apr 11 10:37:04 2009
New Revision: 190915
URL: http://svn.freebsd.org/changeset/base/190915
Log:
Remove 'IMPLEMENTATION NOTES' section from acl(9); it was just a copy/paste
from and it would get out-of-date pretty soon.
Modified:
head/share/man/man9/acl.9
Modified:
Author: rwatson
Date: Sat Apr 11 10:10:45 2009
New Revision: 190914
URL: http://svn.freebsd.org/changeset/base/190914
Log:
Bump __FreeBSD_version to 800077 for the removal of VOP_LEASE -- this
changes the size of the vop_vector array and therefore requires file
system modules to be rebuilt.
Author: rrs
Date: Sat Apr 11 10:08:26 2009
New Revision: 190913
URL: http://svn.freebsd.org/changeset/base/190913
Log:
Fix broken case where caused by last patch where
a user uses 0.0.0.0/0 as an alias for default.
Obtained from:Mykola Dzham (free...@levsha.org.ua)
Modified:
head/
Author: alc
Date: Sat Apr 11 09:09:00 2009
New Revision: 190912
URL: http://svn.freebsd.org/changeset/base/190912
Log:
Previously, when vm_page_free_toq() was performed on a page belonging to
a reservation, unless all of the reservation's pages were free, the
reservation was moved to the hea
Author: trhodes
Date: Sat Apr 11 08:52:02 2009
New Revision: 190911
URL: http://svn.freebsd.org/changeset/base/190911
Log:
Kill hard sentence break added in the previous revision.
Modified:
head/sbin/ipfw/ipfw.8
Modified: head/sbin/ipfw/ipfw.8
Author: trhodes
Date: Sat Apr 11 08:49:15 2009
New Revision: 190910
URL: http://svn.freebsd.org/changeset/base/190910
Log:
Bump doc date for previous changes.
Modified:
head/sbin/gvinum/gvinum.8
Modified: head/sbin/gvinum/gvinum.8
=
65 matches
Mail list logo