Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Nov 2002 13:32:46 -0800 (PST)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 21424 for review
Message-ID:  <200211232132.gANLWkTS096691@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=21424

Change 21424 by marcel@marcel_nfs on 2002/11/23 13:32:39

	Dump the SAL AP wakeup descriptor so that we can see what
	the AP wakeup mechanism is and (if applicable) the vector.

Affected files ...

.. //depot/projects/ia64/sys/boot/efi/loader/main.c#5 edit

Differences ...

==== //depot/projects/ia64/sys/boot/efi/loader/main.c#5 (text+ko) ====

@@ -386,9 +386,15 @@
 			       dp->sale_physical_address);
 			printf("Length 0x%x\n",
 			       dp->sale_length);
-		} else {
+		} else if (*p == 5) {
+			struct sal_ap_wakeup_descriptor *dp;
+			dp = (struct sal_ap_wakeup_descriptor *) p;
+			printf("\n");
+			printf("    Mechanism %d\n", dp->sale_mechanism);
+			printf("    Vector 0x%lx\n", dp->sale_vector);
+		} else
 			printf("\n");
-		}
+
 		p += sizes[*p];
 	}
 

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?200211232132.gANLWkTS096691>