#!/bin/bash # description: syscall top # args: [comm] [interval] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 2 ] ; then echo "usage: sctop-report [comm] [interval]" exit fi if [ "$n_args" -gt 1 ] ; then comm=$1 interval=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then interval=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval g src='/cgit.png' alt='cgit logo'/> index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/lib/math
AgeCommit message (Expand)Author
2021-09-08math: make RATIONAL tristateGeert Uytterhoeven
2021-07-01lib/math/rational: add Kunit test casesTrent Piepho
2021-07-01lib/math/rational.c: fix divide by zeroTrent Piepho
2021-04-29Merge tag 'mips_5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/l...Linus Torvalds
2021-04-23lib/math/test_div64: Correct the spelling of "dividend"Maciej W. Rozycki
2021-04-21lib/math/test_div64: Fix error message formattingMaciej W. Rozycki
2021-04-21lib/math: Add a `do_div' test moduleMaciej W. Rozycki
2021-03-24math: Export mul_u64_u64_div_u64David S. Miller
2020-12-15kernel.h: split out mathematical helpersAndy Shevchenko
2020-10-16kernel.h: split out min()/max() et al. helpersAndy Shevchenko
2020-08-12lib/: replace HTTP links with HTTPS onesAlexander A. Klimov
2020-06-15sched/cputime: Improve cputime_adjust()Oleg Nesterov
2020-06-09Merge tag 'linux-kselftest-5.8-rc1' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds
2020-06-04lib/math: avoid trailing newline hidden in pr_fmt()Christophe JAILLET
2020-06-02lib: Make prime number generator independently selectableMasami Hiramatsu
2019-12-04lib/math/rational.c: fix possible incorrect result from rational fractions he...Trent Piepho