accel/qaic: Add AIC200 support
[drm/drm-misc.git] / tools / testing / selftests / rcutorture / bin / jitterstop.sh
blob576a4cf4b79a57d917405d4df10efd7bcf9aef3f
1 #!/bin/bash
2 # SPDX-License-Identifier: GPL-2.0+
4 # Remove the "jittering" file, signaling the jitter.sh scripts to stop,
5 # then wait for them to terminate.
7 # Usage: . jitterstop.sh jittering-dir
9 # jittering-dir: Directory containing "jittering" file.
11 # Copyright (C) 2021 Facebook, Inc.
13 # Authors: Paul E. McKenney <paulmck@kernel.org>
15 jittering_dir=$1
16 if test -z "$jittering_dir"
17 then
18 echo jitterstop.sh: Missing directory in which to place jittering file.
19 exit 34
22 rm -f ${jittering_dir}/jittering
23 wait