mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 13:15:57 +00:00
perf/scripts: Fix bug in Util.pm
Fix bogus calculation. Signed-off-by: Tom Zanussi <tzanussi@gmail.com> Cc: Ingo Molnar <mingo@elte.hu> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Keiichi KII <k-keiichi@bx.jp.nec.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Paul Mackerras <paulus@samba.org> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> LKML-Reference: <1264580883-15324-3-git-send-email-tzanussi@gmail.com> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
This commit is contained in:
parent
f526d68b6c
commit
e26207a381
@ -44,7 +44,7 @@ sub nsecs_secs {
|
|||||||
sub nsecs_nsecs {
|
sub nsecs_nsecs {
|
||||||
my ($nsecs) = @_;
|
my ($nsecs) = @_;
|
||||||
|
|
||||||
return $nsecs - nsecs_secs($nsecs);
|
return $nsecs % $NSECS_PER_SEC;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub nsecs_str {
|
sub nsecs_str {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user