Author: mm
Date: Mon Jun 7 06:38:12 2010
New Revision: 208885
URL: http://svn.freebsd.org/changeset/base/208885
Log:
Document ZFS upgrade to version 14, support for NFSv4 ACLs,
changes in L2ARC and zfs send.
Approved by: delphij (mentor)
Modified:
head/release/doc/en_US.ISO8859-1/rel
Author: rrs
Date: Mon Jun 7 04:01:38 2010
New Revision: 208883
URL: http://svn.freebsd.org/changeset/base/208883
Log:
Fix so we call socantrcvmore_locked so we
don't see a race where we unlock to call
the non-locked version and have the socket
go away.
MFC after:1 week
Modified:
Author: jilles
Date: Sun Jun 6 22:27:32 2010
New Revision: 208881
URL: http://svn.freebsd.org/changeset/base/208881
Log:
sh: Pass through SIGINT from a child if interactive and job control
is enabled.
This already worked if without job control.
In either case, this depends on it tha
Author: rrs
Date: Sun Jun 6 20:34:17 2010
New Revision: 208879
URL: http://svn.freebsd.org/changeset/base/208879
Log:
1) Optimize the cleanup and don't always depend on
the timer. This is done by considering the locks
we will destroy and if they are contended we consider
it the s
Author: rrs
Date: Sun Jun 6 19:24:32 2010
New Revision: 208878
URL: http://svn.freebsd.org/changeset/base/208878
Log:
Ok, yet another bug in killing off all the hundreds
of apitesters.. Basically we end up with attempting
to destroy a lock thats contended on. A cookie echo
arrives at the
On Mon, Jun 07, 2010 at 01:17:34AM +1000, Bruce Evans wrote:
> The old code attempted to deal with this by using the usual hack of
> only setting a variable of type sig_atomic_t (bmachine.interrupted)
> in the interrupt handler, but that usually doesn't work on any BSDish
> system since BSDish syst
Author: kib
Date: Sun Jun 6 16:13:50 2010
New Revision: 208877
URL: http://svn.freebsd.org/changeset/base/208877
Log:
Style-compilant order of declarations.
Noted by: bde
MFC after:1 month
Modified:
head/sys/amd64/amd64/fpu.c
Modified: head/sys/amd64/amd64/fpu.c
=
Author: rrs
Date: Sun Jun 6 16:11:16 2010
New Revision: 208876
URL: http://svn.freebsd.org/changeset/base/208876
Log:
1) Further enhance the INVARIANT lock validation (no locks) are
held by checking the create and inp locks as well.
2) Fix a bug in that when a socket is closed an INIT
Author: rrs
Date: Sun Jun 6 16:09:12 2010
New Revision: 208875
URL: http://svn.freebsd.org/changeset/base/208875
Log:
Fix a bug in the sctp_inpcb_free. Basically if the socket
was setup to do an abortive close an association that was
in the accept_queue could get stuck and never freed. Now
Author: rrs
Date: Sun Jun 6 16:07:40 2010
New Revision: 208874
URL: http://svn.freebsd.org/changeset/base/208874
Log:
Fix a bug in sctp_abort_assoc(). DON'T call the sctp_inpcb_free
when the gone flag is set. You don't know what locks the
caller has set and there is already a kill timer run
Author: rwatson
Date: Sun Jun 6 15:27:08 2010
New Revision: 208873
URL: http://svn.freebsd.org/changeset/base/208873
Log:
Rework tcpp output so that it generates a comma-delimited list of values,
optionally with a header if "-h" is passed. Toast CPU time measurement
in the server for now.
On Sun, 6 Jun 2010, Kostik Belousov wrote:
On Sun, Jun 06, 2010 at 11:36:09AM +, Gabor Kovesdan wrote:
@@ -223,14 +222,11 @@ static const struct jump_entry jump_tabl
(sizeof(jump_table_data)/sizeof(jump_table_data[0]))
static void
-sighandler(int ignored)
+got_sigint(int ignored _
Author: nwhitehorn
Date: Sun Jun 6 14:29:06 2010
New Revision: 208871
URL: http://svn.freebsd.org/changeset/base/208871
Log:
Add Open Firmware PNP info strings to GPIOs and Uninorth cells.
Submitted by: Andreas Tobler
Modified:
head/sys/powerpc/powermac/macgpio.c
head/sys/powerpc/powe
Author: nwhitehorn
Date: Sun Jun 6 14:09:48 2010
New Revision: 208870
URL: http://svn.freebsd.org/changeset/base/208870
Log:
Some revisions of the Serverworks K2 SATA controller have a data
corruption bug where if an ATA command is issued before DMA is started,
data will become available to
On Sun, Jun 06, 2010 at 04:14:45PM +0400, Andrey Chernov wrote:
> On Sun, Jun 06, 2010 at 03:00:04PM +0300, Kostik Belousov wrote:
> > On Sun, Jun 06, 2010 at 11:36:09AM +, Gabor Kovesdan wrote:
> > > @@ -223,14 +222,11 @@ static const struct jump_entry jump_tabl
> > > (sizeof(jump_table_data
On Sun, Jun 06, 2010 at 03:00:04PM +0300, Kostik Belousov wrote:
> On Sun, Jun 06, 2010 at 11:36:09AM +, Gabor Kovesdan wrote:
> > @@ -223,14 +222,11 @@ static const struct jump_entry jump_tabl
> > (sizeof(jump_table_data)/sizeof(jump_table_data[0]))
> >
> > static void
> > -sighandler(i
On Sun, Jun 06, 2010 at 11:36:09AM +, Gabor Kovesdan wrote:
> @@ -223,14 +222,11 @@ static const struct jump_entry jump_tabl
> (sizeof(jump_table_data)/sizeof(jump_table_data[0]))
>
> static void
> -sighandler(int ignored)
> +got_sigint(int ignored __unused)
> {
>
> - switch (ig
Author: gabor
Date: Sun Jun 6 11:36:08 2010
New Revision: 208868
URL: http://svn.freebsd.org/changeset/base/208868
Log:
- Fix signal handling in bc/dc. Now Ctrl-C terminates the execution.
Requested by: gk (via private mail)
Approved by: delphij (mentor)
Modified:
head/usr.bin/bc/sc
El 2010. 06. 06. 13:32, Gabor Kovesdan escribió:
Author: gabor
Date: Sun Jun 6 11:32:38 2010
New Revision: 208867
URL: http://svn.freebsd.org/changeset/base/208867
Log:
- Fig segmentation fault
Submitted by:Hizel Ildar (via current@)
Approved by:delphij (mentor)
--
Gab
Author: gabor
Date: Sun Jun 6 11:32:38 2010
New Revision: 208867
URL: http://svn.freebsd.org/changeset/base/208867
Log:
- Fig segmentation fault
Submitted by: Hizel Ildar (via current@)
Modified:
head/usr.bin/dc/dc.c
Modified: head/usr.bin/dc/dc.c
=
20 matches
Mail list logo