Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the right register type in arm64
As we were using thhe x86 one, `bpf_user_pt_regs_t` is defined in vmlinux as: ``` typedef struct pt_regs bpf_user_pt_regs_t; ``` in x86 and: ``` typedef struct user_pt_regs bpf_user_pt_regs_t; ``` in arm64 Future work =========== Ensure `retrieve_task_registers` is correct for arm64. Test Plan ========= Tested on my x86 and arm64 machines.
- Loading branch information