[coreboot-gerrit] Change in coreboot[master]: exception: Fix segment error code mask

Raul Rangel (Code Review) gerrit at coreboot.org
Thu Aug 2 23:12:41 CEST 2018


Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/27812


Change subject: exception: Fix segment error code mask
......................................................................

exception: Fix segment error code mask

The segment error descriptor is actually 13 bits long.

BUG=b:109749762
TEST=Verified by causing a segment error

Change-Id: I3439f9ce1e8cf0c472c4eb82d74a787718c9609f
Signed-off-by: Raul E Rangel <rrangel at chromium.org>
---
M payloads/libpayload/arch/x86/exception.c
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/12/27812/1

diff --git a/payloads/libpayload/arch/x86/exception.c b/payloads/libpayload/arch/x86/exception.c
index f6bb8c9..b562660 100644
--- a/payloads/libpayload/arch/x86/exception.c
+++ b/payloads/libpayload/arch/x86/exception.c
@@ -59,7 +59,7 @@
 
 static void print_segment_error_code(u32 code)
 {
-	printf("%#x - descriptor %#x in the ", code, (code >> 3) & 0x1f);
+	printf("%#x - descriptor %#x in the ", code, (code >> 3) & 0x1FFF);
 	if (code & (0x1 << 1)) {
 		printf("IDT");
 	} else {

-- 
To view, visit https://review.coreboot.org/27812
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I3439f9ce1e8cf0c472c4eb82d74a787718c9609f
Gerrit-Change-Number: 27812
Gerrit-PatchSet: 1
Gerrit-Owner: Raul Rangel <rrangel at chromium.org>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180802/4c1f8edf/attachment.html>


More information about the coreboot-gerrit mailing list