Projects
home:Eustace:branches:Eulaceura:Factory
Jailhouse
_service:obs_scm:0010-modify-stack-data-byte-or...
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File _service:obs_scm:0010-modify-stack-data-byte-order-of-hypervisor-dump-pars.patch of Package Jailhouse
From c4dcc764520194ff942ce148ecef7e46bf47027b Mon Sep 17 00:00:00 2001 From: cuiyanzhao <cuiyanzhao@kylinos.cn> Date: Thu, 24 Aug 2023 14:37:17 +0800 Subject: [PATCH 10/12] modify stack data byte order of hypervisor dump parse script [KEYWORDS] none [TO SOLVE] none [TEST SUGGESTION] [SUBMIT BY] cuiyanzhao [REVIEW BY] cuiyanzhao [TEST BY] cuiyanzhao --- scripts/arm64-parsedump.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/arm64-parsedump.py b/scripts/arm64-parsedump.py index 54f4fd66..18908673 100755 --- a/scripts/arm64-parsedump.py +++ b/scripts/arm64-parsedump.py @@ -112,8 +112,8 @@ class Dump: def stack_get64(self, addr): assert addr >= self.sp i = int((addr - self.sp) / 4) - hi32 = self.stack_mem[i] - lo32 = self.stack_mem[i + 1] + lo32 = self.stack_mem[i] + hi32 = self.stack_mem[i + 1] return lo32 + (hi32 << 32) def print_unwinded_stack(self): -- 2.25.1
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2