Re: [PATCH] perf trace: Add mmap alias for s390

2017-06-01 Thread Arnaldo Carvalho de Melo
Em Wed, May 31, 2017 at 01:35:57PM +0200, Jiri Olsa escreveu: > The s390 architecture maps sys_mmap (nr 90) into sys_old_mmap. > For this reason perf trace can't find the proper syscall event > to get args format from and displays it wrong as 'continued'. > > To fix that fill "alias" field with "o

[PATCH] perf trace: Add mmap alias for s390

2017-05-31 Thread Jiri Olsa
The s390 architecture maps sys_mmap (nr 90) into sys_old_mmap. For this reason perf trace can't find the proper syscall event to get args format from and displays it wrong as 'continued'. To fix that fill "alias" field with "old_mmap" for trace's mmap record to get the correct translation. Before