mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
lockdep: Avoid out of bounds array reference in save_trace()
ia64 found this the hard way (because we currently have a stub for save_stack_trace() that does nothing). But it would be a good idea to be cautious in case a real save_stack_trace() bailed out with an error before it set trace->nr_entries. Signed-off-by: Tony Luck <tony.luck@intel.com> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: luming.yu@intel.com LKML-Reference: <4b2024d085302c2a2@agluck-desktop.sc.intel.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
722d017237
commit
ea5b41f9d5
1 changed files with 2 additions and 1 deletions
|
@ -386,7 +386,8 @@ static int save_trace(struct stack_trace *trace)
|
|||
* complete trace that maxes out the entries provided will be reported
|
||||
* as incomplete, friggin useless </rant>
|
||||
*/
|
||||
if (trace->entries[trace->nr_entries-1] == ULONG_MAX)
|
||||
if (trace->nr_entries != 0 &&
|
||||
trace->entries[trace->nr_entries-1] == ULONG_MAX)
|
||||
trace->nr_entries--;
|
||||
|
||||
trace->max_entries = trace->nr_entries;
|
||||
|
|
Loading…
Reference in a new issue