diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2017-10-11 11:56:19 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-10-19 22:17:12 -0400 |
commit | 20250c0b1f6de53b2bfddd1c714fb8c97e655ce2 (patch) | |
tree | 3d67d0922a68c11bc71218880844233604ebf50d /src/usr/errl | |
parent | 281503375a8c02c78b8fa188c58c6207affe3713 (diff) | |
download | talos-hostboot-20250c0b1f6de53b2bfddd1c714fb8c97e655ce2.tar.gz talos-hostboot-20250c0b1f6de53b2bfddd1c714fb8c97e655ce2.zip |
Ensure AbaPtr is not used in runtime code
The AbaPtr makes assumptions that we have pointer values that
are only 32-bits long. In our runtime (HBRT) environment that
assumption is not true so we need to make sure none of the code
that runs there is trying to use the AbaPtr code.
Change-Id: I0a26558f305fada723bf3cb3447a2bdfddb194d0
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/48248
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/errl')
-rw-r--r-- | src/usr/errl/errlmanager.C | 1 | ||||
-rw-r--r-- | src/usr/errl/errlprvt.C | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/usr/errl/errlmanager.C b/src/usr/errl/errlmanager.C index 17cc11dd6..2f465a049 100644 --- a/src/usr/errl/errlmanager.C +++ b/src/usr/errl/errlmanager.C @@ -39,6 +39,7 @@ #include <errl/errlentry.H> #include <initservice/taskargs.H> #include <sys/task.h> +#include <arch/ppc.H> #include <stdlib.h> #include <string.h> #include <mbox/mbox_queues.H> diff --git a/src/usr/errl/errlprvt.C b/src/usr/errl/errlprvt.C index bf4ab0d33..7ae87b645 100644 --- a/src/usr/errl/errlprvt.C +++ b/src/usr/errl/errlprvt.C @@ -5,7 +5,9 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* COPYRIGHT International Business Machines Corp. 2011,2014 */ +/* Contributors Listed Below - COPYRIGHT 2011,2017 */ +/* [+] International Business Machines Corp. */ +/* */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ @@ -35,7 +37,7 @@ #include <hbotcompid.H> #include <errl/errlentry.H> #include <errl/errlmanager.H> - +#include <arch/ppc.H> |