aboutsummaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python
diff options
context:
space:
mode:
authorGargi Sharma <[email protected]>2017-03-12 02:11:37 +0530
committerGreg Kroah-Hartman <[email protected]>2017-03-12 14:46:34 +0100
commit4d567cef1b573b5b976d55b9106a59b9fe85e532 (patch)
tree597aca82cac2d6712456898b5611121a24b35573 /tools/perf/scripts/python
parent2437a9e023fe1df77c053b222762357bb73212e8 (diff)
staging: lustre: Use min3 macro
Replace comparsions between three expressions using two min macros with min3 macro. Done using Coccinelle Script: @@ expression e1; expression e2; expression e3; @@ ( - min(min(e1, e2), e3) + min3(e1, e2, e3) | - min(e1, min(e2, e3)) + min3(e1, e2, e3) ) Signed-off-by: Gargi Sharma <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions