diff options
| author | 2022-06-09 18:52:16 +0000 | |
|---|---|---|
| committer | 2022-06-09 18:52:16 +0000 | |
| commit | c34fb538757bc9bf6e204b62e715824eacd07621 (patch) | |
| tree | b31ea5f4f27b583967a3d12b7096c22eebfd4b68 | |
| parent | 7635ebd85a6a32b9afb447a39eaaf754368c2001 (diff) | |
| parent | 8f4e41d679d67436ee3868cab8785a35b3cc613f (diff) | |
add explicit 32-bits of padding to UidTrackingInfo struct am: 8f4e41d679
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/18800447
Change-Id: I6b8eab68ff3f7bb362d7ca6e008e40713d8bcf0d
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | services/gpuservice/gpuwork/bpfprogs/include/gpuwork/gpu_work.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/services/gpuservice/gpuwork/bpfprogs/include/gpuwork/gpu_work.h b/services/gpuservice/gpuwork/bpfprogs/include/gpuwork/gpu_work.h index 57338f4c91..2affb60a0c 100644 --- a/services/gpuservice/gpuwork/bpfprogs/include/gpuwork/gpu_work.h +++ b/services/gpuservice/gpuwork/bpfprogs/include/gpuwork/gpu_work.h @@ -49,6 +49,8 @@ typedef struct { // negative duration. uint32_t error_count; + // Needed to make 32-bit arch struct size match 64-bit BPF arch struct size. + uint32_t padding0; } UidTrackingInfo; typedef struct { |