Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e26207a3 authored by Tom Zanussi's avatar Tom Zanussi Committed by Frederic Weisbecker
Browse files

perf/scripts: Fix bug in Util.pm



Fix bogus calculation.

Signed-off-by: default avatarTom 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: default avatarFrederic Weisbecker <fweisbec@gmail.com>
parent f526d68b
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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 {