linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] nfs-utils: mount: really return from errno test
@ 2011-10-11  9:44 Hamo
  2011-10-13  2:05 ` Hamo
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Hamo @ 2011-10-11  9:44 UTC (permalink / raw)
  To: linux-nfs; +Cc: linux-fsdevel, linux-kernel

We should only try next address family if we meet ECONNREFUSED or EHOSTUNREACH
for v4 or ECONNREFUSED or EOPNOTSUPP or EHOSTUNREACH for v3v2.
Before, only a break in swich can not make the program out of for loop.

Signed-off-by: Yang Bai <hamo.by@gmail.com>
---
 utils/mount/stropts.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/utils/mount/stropts.c b/utils/mount/stropts.c
index 314a806..4032bf3 100644
--- a/utils/mount/stropts.c
+++ b/utils/mount/stropts.c
@@ -665,9 +665,10 @@ static int nfs_try_mount_v3v2(struct nfsmount_info *mi)
 		case EHOSTUNREACH:
 			continue;
 		default:
-			break;
+			goto out;
 		}
 	}
+out:
 	return ret;
 }

@@ -751,9 +752,10 @@ static int nfs_try_mount_v4(struct nfsmount_info *mi)
 		case EHOSTUNREACH:
 			continue;
 		default:
-			break;
+			goto out;
 		}
 	}
+out:
 	return ret;
 }

-- 
1.7.1

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2011-10-18 16:08 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-11  9:44 [PATCH] nfs-utils: mount: really return from errno test Hamo
2011-10-13  2:05 ` Hamo
2011-10-13 14:53 ` Chuck Lever
2011-10-13 16:34   ` Steve Dickson
2011-10-13 16:37     ` Chuck Lever
2011-10-13 16:59     ` Steve Dickson
2011-10-13 17:19       ` Trond Myklebust
2011-10-13 17:54       ` Chuck Lever
2011-10-13 19:03         ` Steve Dickson
2011-10-15 13:12           ` Hamo
2011-10-18 15:17             ` Steve Dickson
2011-10-18 16:08 ` Steve Dickson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).