From mboxrd@z Thu Jan 1 00:00:00 1970 From: teigland@sourceware.org Date: 4 Sep 2007 19:23:38 -0000 Subject: [Cluster-devel] cluster/gfs2/mount util.c Message-ID: <20070904192338.16756.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: cluster Changes by: teigland at sourceware.org 2007-09-04 19:23:38 Modified files: gfs2/mount : util.c Log message: report that a mount fails due to an in-progress unmount Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/mount/util.c.diff?cvsroot=cluster&r1=1.25&r2=1.26 --- cluster/gfs2/mount/util.c 2007/06/28 17:58:31 1.25 +++ cluster/gfs2/mount/util.c 2007/09/04 19:23:38 1.26 @@ -497,6 +497,10 @@ warn("fs name too long"); goto out; + case -ESTALE: + warn("fs is being unmounted"); + goto out; + case -EADDRINUSE: warn("different fs appears to exist with the same name"); goto out;