]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
NFS: pnfs: loop over multipath addrs on connect
authorWeston Andros Adamson <dros@netapp.com>
Tue, 31 May 2011 22:48:58 +0000 (18:48 -0400)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Tue, 12 Jul 2011 17:40:27 +0000 (13:40 -0400)
Don't just use the first addr in the multipath list - instead, loop
over addresses when calling nfs4_set_ds_client() (which calls connect)
until it is successful.

Although this is not real multipath support, it's a quick fix to handle when
an MDS sends a list of addresses for a DS and some of the addr families are
unsupported or misconfigured (like no routable ipv6 addr assigned).
This will attempt all paths to the DS before giving up, instead of immediately
falling back to the MDS.

As before, an error encountered after a successful connect() will cause all
i/o to fall back to the MDS.

Signed-off-by: Weston Andros Adamson <dros@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/nfs4filelayoutdev.c

index 610808a96f254c63bde882a108b7a18e88f803ca..61c173b0aab384e9915531c53ad367890f247f5f 100644 (file)
@@ -169,7 +169,7 @@ _data_server_match_all_addrs_locked(struct list_head *dsaddrs1,
 static int
 nfs4_ds_connect(struct nfs_server *mds_srv, struct nfs4_pnfs_ds *ds)
 {
-       struct nfs_client *clp;
+       struct nfs_client *clp = ERR_PTR(-EIO);
        struct nfs4_pnfs_ds_addr *da;
        int status = 0;
 
@@ -178,13 +178,17 @@ nfs4_ds_connect(struct nfs_server *mds_srv, struct nfs4_pnfs_ds *ds)
 
        BUG_ON(list_empty(&ds->ds_addrs));
 
-       da = list_first_entry(&ds->ds_addrs, struct nfs4_pnfs_ds_addr, da_node);
-       dprintk("%s: using the first address for DS %s: %s\n",
-               __func__, ds->ds_remotestr, da->da_remotestr);
+       list_for_each_entry(da, &ds->ds_addrs, da_node) {
+               dprintk("%s: DS %s: trying address %s\n",
+                       __func__, ds->ds_remotestr, da->da_remotestr);
 
-       clp = nfs4_set_ds_client(mds_srv->nfs_client,
+               clp = nfs4_set_ds_client(mds_srv->nfs_client,
                                 (struct sockaddr *)&da->da_addr,
                                 da->da_addrlen, IPPROTO_TCP);
+               if (!IS_ERR(clp))
+                       break;
+       }
+
        if (IS_ERR(clp)) {
                status = PTR_ERR(clp);
                goto out;