Message ID | 20181017064524.GA32311@ls3530.fritz.box (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
Series | [GIT,PULL] parisc fix for kernel v4.19 | expand |
On Wed, Oct 17, 2018 at 08:45:24AM +0200, Helge Deller wrote: > Hi Greg, > > would you please include the trivial patch below for 4.19? > My older cross-compiler didn't complained, so it went unnoticed for me until > now and the faulty code was added during the 4.19 merge window. > > It can be pulled from my git tree as well: > > git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git parisc-4.19-3 Now merged, thanks. greg k-h
diff --git a/arch/parisc/kernel/unwind.c b/arch/parisc/kernel/unwind.c index f329b466e68f..2d14f17838d2 100644 --- a/arch/parisc/kernel/unwind.c +++ b/arch/parisc/kernel/unwind.c @@ -426,7 +426,7 @@ void unwind_frame_init_task(struct unwind_frame_info *info, r.gr[30] = get_parisc_stackpointer(); regs = &r; } - unwind_frame_init(info, task, &r); + unwind_frame_init(info, task, regs); } else { unwind_frame_init_from_blocked_task(info, task); }