Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Jul 2002 01:23:08 -0700 (PDT)
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 14593 for review
Message-ID:  <200207210823.g6L8N8JK013791@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=14593

Change 14593 by peter@peter_daintree on 2002/07/21 01:23:04

	I think Doug deserves the pointy hat for this.  (hint: it is an
	8-bit value).  It is amazing how unhappy the system gets when
	the sapics fill up their queues to non-existing cpu targets.

Affected files ...

.. //depot/projects/ia64/sys/ia64/ia64/sapic.c#8 edit

Differences ...

==== //depot/projects/ia64/sys/ia64/ia64/sapic.c#8 (text+ko) ====

@@ -138,8 +138,8 @@
 	u_int64_t lid = ia64_get_lid();
 
 	bzero(&rte, sizeof(rte));
-	rte.rte_destination_id = (lid >> 24) & 15;
-	rte.rte_destination_eid = (lid >> 16) & 15;
+	rte.rte_destination_id = (lid >> 24) & 255;
+	rte.rte_destination_eid = (lid >> 16) & 255;
 	rte.rte_trigger_mode = trigger_mode;
 	rte.rte_polarity = polarity;
 	rte.rte_delivery_mode = 0; /* fixed */

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




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