976008e29e
And bring the big-endian patches up-to-date with what has been submitted upstream by Al Stone <ahs3@redhat.com>. Upstream has yet to accept them. Resolves: rhbz#1967794 Signed-off-by: Dean Nelson <dnelson@redhat.com>
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From 70d1047abe010c80c2dd74f6afdc7005b91e6163 Mon Sep 17 00:00:00 2001
|
|
From: Al Stone <ahs3@redhat.com>
|
|
Date: Sat, 19 Sep 2020 15:50:19 -0600
|
|
Subject: [PATCH 14/45] Support EINJ in a big-endian world
|
|
|
|
Signed-off-by: Al Stone <ahs3@redhat.com>
|
|
---
|
|
source/common/dmtbdump1.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
Index: acpica-unix2-20210604/source/common/dmtbdump1.c
|
|
===================================================================
|
|
--- acpica-unix2-20210604.orig/source/common/dmtbdump1.c
|
|
+++ acpica-unix2-20210604/source/common/dmtbdump1.c
|
|
@@ -882,7 +882,7 @@ AcpiDmDumpEinj (
|
|
{
|
|
ACPI_STATUS Status;
|
|
ACPI_WHEA_HEADER *Subtable;
|
|
- UINT32 Length = Table->Length;
|
|
+ UINT32 Length = AcpiUtReadUint32 (&Table->Length);
|
|
UINT32 Offset = sizeof (ACPI_TABLE_EINJ);
|
|
|
|
|
|
@@ -897,7 +897,7 @@ AcpiDmDumpEinj (
|
|
/* Subtables */
|
|
|
|
Subtable = ACPI_ADD_PTR (ACPI_WHEA_HEADER, Table, Offset);
|
|
- while (Offset < Table->Length)
|
|
+ while (Offset < Length)
|
|
{
|
|
AcpiOsPrintf ("\n");
|
|
Status = AcpiDmDumpTable (Length, Offset, Subtable,
|