Date: Thu, 6 Aug 1998 01:33:20 -0700 (PDT) From: Doug Rabson <dfr@FreeBSD.ORG> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_bio.c vfs_cluster.c src/sys/vm vm_fault.c vm_map.c vm_object.c vm_object.h vm_pageout.c Message-ID: <199808060833.BAA21631@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
dfr 1998/08/06 01:33:19 PDT Modified files: sys/kern vfs_bio.c vfs_cluster.c sys/vm vm_fault.c vm_map.c vm_object.c vm_object.h vm_pageout.c Log: Protect all modifications to paging_in_progress with splvm(). The i386 managed to avoid corruption of this variable by luck (the compiler used a memory read-modify-write instruction which wasn't interruptable) but other architectures cannot. With this change, I am now able to 'make buildworld' on the alpha (sfx: the crowd goes wild...) Revision Changes Path 1.168 +7 -3 src/sys/kern/vfs_bio.c 1.67 +6 -2 src/sys/kern/vfs_cluster.c 1.86 +3 -3 src/sys/vm/vm_fault.c 1.133 +3 -3 src/sys/vm/vm_map.c 1.126 +5 -5 src/sys/vm/vm_object.c 1.50 +12 -1 src/sys/vm/vm_object.h 1.124 +2 -2 src/sys/vm/vm_pageout.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199808060833.BAA21631>