arm64: Scalable Vector Extension (SVE) support.
Change-Id: I3568687913f583edfaa297d5cf5ac91d319d97e9
This commit is contained in:
committed by
Masamichi Takagi
parent
dac99f708c
commit
07aa96ef95
@@ -183,8 +183,8 @@ void fill_auxv(struct note *head, struct thread *thread, void *regs)
|
||||
|
||||
int get_note_size(void)
|
||||
{
|
||||
return get_prstatus_size() + get_prpsinfo_size()
|
||||
+ get_auxv_size();
|
||||
return get_prstatus_size() + arch_get_thread_core_info_size()
|
||||
+ get_prpsinfo_size() + get_auxv_size();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -199,8 +199,13 @@ void fill_note(void *note, struct thread *thread, void *regs)
|
||||
{
|
||||
fill_prstatus(note, thread, regs);
|
||||
note += get_prstatus_size();
|
||||
|
||||
arch_fill_thread_core_info(note, thread, regs);
|
||||
note += arch_get_thread_core_info_size();
|
||||
|
||||
fill_prpsinfo(note, thread, regs);
|
||||
note += get_prpsinfo_size();
|
||||
|
||||
fill_auxv(note, thread, regs);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user