From mboxrd@z Thu Jan 1 00:00:00 1970 From: teigland@sourceware.org Date: 4 Sep 2007 19:28:12 -0000 Subject: [Cluster-devel] cluster/gfs2/mount util.c Message-ID: <20070904192812.20537.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 Branch: RHEL5 Changes by: teigland at sourceware.org 2007-09-04 19:28:12 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&only_with_tag=RHEL5&r1=1.18.2.7&r2=1.18.2.8 --- cluster/gfs2/mount/util.c 2007/07/19 20:22:08 1.18.2.7 +++ cluster/gfs2/mount/util.c 2007/09/04 19:28:11 1.18.2.8 @@ -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;