svn commit: r246899 - projects/amd64_xen_pv/sys/xen

Cherry G. Mathew cherry at FreeBSD.org
Sun Feb 17 07:37:07 UTC 2013


Author: cherry
Date: Sun Feb 17 07:37:06 2013
New Revision: 246899
URL: http://svnweb.freebsd.org/changeset/base/246899

Log:
  Fix event mask handling.
  
  Missed out from r246898 by mistake.
  
  Approved by: gibbs(implicit)

Modified:
  projects/amd64_xen_pv/sys/xen/evtchn.h

Modified: projects/amd64_xen_pv/sys/xen/evtchn.h
==============================================================================
--- projects/amd64_xen_pv/sys/xen/evtchn.h	Sun Feb 17 06:34:51 2013	(r246898)
+++ projects/amd64_xen_pv/sys/xen/evtchn.h	Sun Feb 17 07:37:06 2013	(r246899)
@@ -54,7 +54,7 @@ static inline void 
 clear_evtchn(int port)
 {
 	shared_info_t *s = HYPERVISOR_shared_info;
-	synch_clear_bit(port, &s->evtchn_pending[0]);
+	synch_clear_bit(port, s->evtchn_pending);
 }
 
 static inline void 


More information about the svn-src-projects mailing list