Return-Path: linux-nfs-owner@vger.kernel.org Received: from bombadil.infradead.org ([198.137.202.9]:45232 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751427AbaJ1NWw (ORCPT ); Tue, 28 Oct 2014 09:22:52 -0400 Date: Tue, 28 Oct 2014 06:22:52 -0700 From: Christoph Hellwig To: Eryu Guan Cc: fstests@vger.kernel.org, linux-nfs@vger.kernel.org Subject: Re: [PATCH 1/4] common: re-enable tests that require scratch dev on NFS Message-ID: <20141028132252.GA26453@infradead.org> References: <1414502171-10319-1-git-send-email-eguan@redhat.com> <1414502171-10319-2-git-send-email-eguan@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <1414502171-10319-2-git-send-email-eguan@redhat.com> Sender: linux-nfs-owner@vger.kernel.org List-ID: On Tue, Oct 28, 2014 at 09:16:08PM +0800, Eryu Guan wrote: > index 747cf72..8738da7 100644 > --- a/common/rc > +++ b/common/rc > @@ -558,7 +558,11 @@ _scratch_mkfs() > _scratch_mkfs_xfs $* > ;; > nfs*) > - # do nothing for nfs > + # unable to re-create NFS, just remove all files in $SCRATCH_MNT to > + # avoid EEXIST caused by the leftover files created in previous runs > + _scratch_mount > + rm -rf $SCRATCH_MNT/* > + _scratch_unmount Please move this into a helper, and wire it up for cifs as well.