Module Name: src Committed By: bouyer Date: Sat Jan 16 17:54:33 UTC 2010
Modified Files: src/doc [netbsd-5-0]: CHANGES-5.0.1 Log Message: tickets 1238, 1240,1241 To generate a diff of this commit: cvs rdiff -u -r1.1.2.44 -r1.1.2.45 src/doc/CHANGES-5.0.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/doc/CHANGES-5.0.1 diff -u src/doc/CHANGES-5.0.1:1.1.2.44 src/doc/CHANGES-5.0.1:1.1.2.45 --- src/doc/CHANGES-5.0.1:1.1.2.44 Wed Jul 29 22:35:18 2009 +++ src/doc/CHANGES-5.0.1 Sat Jan 16 17:54:33 2010 @@ -1,4 +1,4 @@ -# $NetBSD: CHANGES-5.0.1,v 1.1.2.44 2009/07/29 22:35:18 snj Exp $ +# $NetBSD: CHANGES-5.0.1,v 1.1.2.45 2010/01/16 17:54:33 bouyer Exp $ A complete list of changes from the NetBSD 5.0 release to the NetBSD 5.0.1 release: @@ -733,3 +733,24 @@ Welcome to 5.0.1! [snj] +sys/kern/kern_sig.c 1.302 + + sigactsunshare(): set reference count in a case of new sigacts + allocation. + Bug (e.g. memory leak) can happen when using clone(2) call. + [rmind, ticket #1238] + +sys/kern/kern_runq.c 1.28 + + sched_catchlwp: fix the case when other CPU might see + curlwp->l_cpu != curcpu() while LWP is finishing context switch. + Should fix PR/42539, tested by mar...@. + [rmind, ticket #1240] + +sys/kern/kern_softint.c 1.30 + + softint_execute: release/re-acquire kernel-lock depending on + SOFTINT_MPSAFE flag. Keeping it held for MP-safe cases break the + lock order assumptions. Per discussion with <martin>. + [rmind, ticket #1241] +