From mboxrd@z Thu Jan 1 00:00:00 1970 From: Petr Vorel Date: Wed, 16 Jun 2021 16:36:45 +0200 Subject: [LTP] [PATCH v3] ssh-stress: Convert to new api In-Reply-To: References: <20210616081856.3026223-1-lkml@jv-coder.de> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ltp@lists.linux.it Hi Joerg, Alexey, ... > > cleanup() > > { > > + local pids > > + > > # Stop the ssh daemon > > - test -s sshd.pid && kill $(cat sshd.pid) > > - pkill 'netstress$' > > - tst_rmdir > > - [ "$rtmpdir" ] && tst_rhost_run -c "rm -rf $rtmpdir" > > - TMPDIR= > > + [ -s sshd.pid ] && kill $(cat sshd.pid) > > + [ -n "$NETSTRESS_PID" ] && kill -2 $NETSTRESS_PID >/dev/null 2>&1 > > + > > + tst_rhost_run -c "kill $RHOST_PIDS" >/dev/null 2>&1 And check also $RHOST_PIDS, right? [ -n "$RHOST_PIDS" ] && tst_rhost_run -c "kill $RHOST_PIDS" >/dev/null 2>&1 > > + > > + # Kill all remaining ssh processes > > + tst_rhost_run -c "pkill -f '^ssh $RHOST_SSH_CONF'" > Perhaps we should check that $RHOST_SSH_CONF is set before running > pkill. [ -n "$RHOST_SSH_CONF" ] && tst_rhost_run -c "pkill -f '^ssh $RHOST_SSH_CONF'" No need to repost, I'll fix it before merge. > For the rest: > Reviewed-by: Alexey Kodanev Thanks! Kind regards, Petr