NetBSD-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: kern/38646 (-current panic with veriexec)



The following reply was made to PR kern/38646; it has been noted by GNATS.

From: christos%zoulas.com@localhost (Christos Zoulas)
To: gnats-bugs%NetBSD.org@localhost, blymn%NetBSD.org@localhost, 
gnats-admin%netbsd.org@localhost, 
        netbsd-bugs%netbsd.org@localhost, ascizo%fiveam.org@localhost
Cc: 
Subject: Re: kern/38646 (-current panic with veriexec)
Date: Mon, 23 Jun 2008 13:22:33 -0400

 On Jun 23, 12:55pm, blymn%baesystems.com.au@localhost (Brett Lymn) wrote:
 -- Subject: Re: kern/38646 (-current panic with veriexec)
 
 |  +#define RW_UPGRADE(lock)           do {                            \
 |  +   /* Nothing */                                                   \
 |  +} while((rw_tryupgrade(lock)) == 0);                                       
\
 
 Why not:
 
        
 #define RW_UPGRADE(lock) while((rw_tryupgrade(lock)) == 0) continue
 
 
 christos
 


Home | Main Index | Thread Index | Old Index