From owner-cvs-sys Sun Mar 3 13:11:33 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA13579 for cvs-sys-outgoing; Sun, 3 Mar 1996 13:11:33 -0800 (PST) Received: (from dyson@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id NAA13550 Sun, 3 Mar 1996 13:11:11 -0800 (PST) Date: Sun, 3 Mar 1996 13:11:11 -0800 (PST) From: John Dyson Message-Id: <199603032111.NAA13550@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/sys rlist.h src/sys/kern subr_rlist.c src/sys/vm swap_pager.c swap_pager.h vm_swap.c Sender: owner-cvs-sys@FreeBSD.ORG Precedence: bulk dyson 96/03/03 13:11:09 Modified: sys/kern subr_rlist.c sys/sys rlist.h sys/vm swap_pager.c swap_pager.h vm_swap.c Log: In order to fix some concurrency problems with the swap pager early on in the FreeBSD development, I had made a global lock around the rlist code. This was bogus, and now the lock is maintained on a per resource list basis. This now allows the rlist code to be used for almost any non-interrupt level application. Revision Changes Path 1.17 +31 -29 src/sys/kern/subr_rlist.c 1.9 +13 -5 src/sys/sys/rlist.h 1.62 +2 -2 src/sys/vm/swap_pager.c 1.15 +2 -1 src/sys/vm/swap_pager.h 1.35 +2 -1 src/sys/vm/vm_swap.c