Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Aug 1998 02:22:47 -0500 (EST)
From:      "John S. Dyson" <dyson@iquest.net>
To:        current@FreeBSD.ORG
Subject:   Serious bug in vm_page.h in current
Message-ID:  <199808250722.CAA04575@dyson.iquest.net>

next in thread | raw e-mail | index | archive | help

--ELM904029767-4563-0_
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit


PAGE_BUSY is used to set the busy flag, and not the busy
bitmask.  Attachment contains patch.

-- 
John                  | Never try to teach a pig to sing,
dyson@iquest.net      | it makes one look stupid
jdyson@nc.com         | and it irritates the pig.

--ELM904029767-4563-0_
Content-Type: text/plain; charset=ISO-8859-1
Content-Disposition: attachment; filename=tmp1
Content-Description: /tmp/tmp1
Content-Transfer-Encoding: 7bit

Index: vm_page.h
===================================================================
RCS file: /local/home/ncvs/src/sys/vm/vm_page.h,v
retrieving revision 1.44
diff -C2 -r1.44 vm_page.h
*** vm_page.h	1998/08/24 08:39:38	1.44
--- vm_page.h	1998/08/25 07:20:55
***************
*** 299,303 ****
  }
  
! #define PAGE_BUSY(m)	atomic_add_char(&(m)->busy, 1)
  
  #define PAGE_BWAKEUP(m) { \
--- 299,303 ----
  }
  
! #define PAGE_BUSY(m)	PAGE_SET_FLAG(m, PG_BUSY)
  
  #define PAGE_BWAKEUP(m) { \

--ELM904029767-4563-0_--

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199808250722.CAA04575>