diff options
Diffstat (limited to 'fs/nfs/filelayout/filelayoutdev.c')
| -rw-r--r-- | fs/nfs/filelayout/filelayoutdev.c | 469 |
1 files changed, 12 insertions, 457 deletions
diff --git a/fs/nfs/filelayout/filelayoutdev.c b/fs/nfs/filelayout/filelayoutdev.c index bfecac781f19..4f372e224603 100644 --- a/fs/nfs/filelayout/filelayoutdev.c +++ b/fs/nfs/filelayout/filelayoutdev.c | |||
| @@ -31,7 +31,6 @@ | |||
| 31 | #include <linux/nfs_fs.h> | 31 | #include <linux/nfs_fs.h> |
| 32 | #include <linux/vmalloc.h> | 32 | #include <linux/vmalloc.h> |
| 33 | #include <linux/module.h> | 33 | #include <linux/module.h> |
| 34 | #include <linux/sunrpc/addr.h> | ||
| 35 | 34 | ||
| 36 | #include "../internal.h" | 35 | #include "../internal.h" |
| 37 | #include "../nfs4session.h" | 36 | #include "../nfs4session.h" |
| @@ -42,183 +41,6 @@ | |||
| 42 | static unsigned int dataserver_timeo = NFS4_DEF_DS_TIMEO; | 41 | static unsigned int dataserver_timeo = NFS4_DEF_DS_TIMEO; |
| 43 | static unsigned int dataserver_retrans = NFS4_DEF_DS_RETRANS; | 42 | static unsigned int dataserver_retrans = NFS4_DEF_DS_RETRANS; |
| 44 | 43 | ||
| 45 | /* | ||
| 46 | * Data server cache | ||
| 47 | * | ||
| 48 | * Data servers can be mapped to different device ids. | ||
| 49 | * nfs4_pnfs_ds reference counting | ||
| 50 | * - set to 1 on allocation | ||
| 51 | * - incremented when a device id maps a data server already in the cache. | ||
| 52 | * - decremented when deviceid is removed from the cache. | ||
| 53 | */ | ||
| 54 | static DEFINE_SPINLOCK(nfs4_ds_cache_lock); | ||
| 55 | static LIST_HEAD(nfs4_data_server_cache); | ||
| 56 | |||
| 57 | /* Debug routines */ | ||
| 58 | void | ||
| 59 | print_ds(struct nfs4_pnfs_ds *ds) | ||
| 60 | { | ||
| 61 | if (ds == NULL) { | ||
| 62 | printk("%s NULL device\n", __func__); | ||
| 63 | return; | ||
| 64 | } | ||
| 65 | printk(" ds %s\n" | ||
| 66 | " ref count %d\n" | ||
| 67 | " client %p\n" | ||
| 68 | " cl_exchange_flags %x\n", | ||
| 69 | ds->ds_remotestr, | ||
| 70 | atomic_read(&ds->ds_count), ds->ds_clp, | ||
| 71 | ds->ds_clp ? ds->ds_clp->cl_exchange_flags : 0); | ||
| 72 | } | ||
| 73 | |||
| 74 | static bool | ||
| 75 | same_sockaddr(struct sockaddr *addr1, struct sockaddr *addr2) | ||
| 76 | { | ||
| 77 | struct sockaddr_in *a, *b; | ||
| 78 | struct sockaddr_in6 *a6, *b6; | ||
| 79 | |||
| 80 | if (addr1->sa_family != addr2->sa_family) | ||
| 81 | return false; | ||
| 82 | |||
| 83 | switch (addr1->sa_family) { | ||
| 84 | case AF_INET: | ||
| 85 | a = (struct sockaddr_in *)addr1; | ||
| 86 | b = (struct sockaddr_in *)addr2; | ||
| 87 | |||
| 88 | if (a->sin_addr.s_addr == b->sin_addr.s_addr && | ||
| 89 | a->sin_port == b->sin_port) | ||
| 90 | return true; | ||
| 91 | break; | ||
| 92 | |||
| 93 | case AF_INET6: | ||
| 94 | a6 = (struct sockaddr_in6 *)addr1; | ||
| 95 | b6 = (struct sockaddr_in6 *)addr2; | ||
| 96 | |||
| 97 | /* LINKLOCAL addresses must have matching scope_id */ | ||
| 98 | if (ipv6_addr_src_scope(&a6->sin6_addr) == | ||
| 99 | IPV6_ADDR_SCOPE_LINKLOCAL && | ||
| 100 | a6->sin6_scope_id != b6->sin6_scope_id) | ||
| 101 | return false; | ||
| 102 | |||
| 103 | if (ipv6_addr_equal(&a6->sin6_addr, &b6->sin6_addr) && | ||
| 104 | a6->sin6_port == b6->sin6_port) | ||
| 105 | return true; | ||
| 106 | break; | ||
| 107 | |||
| 108 | default: | ||
| 109 | dprintk("%s: unhandled address family: %u\n", | ||
| 110 | __func__, addr1->sa_family); | ||
| 111 | return false; | ||
| 112 | } | ||
| 113 | |||
| 114 | return false; | ||
| 115 | } | ||
| 116 | |||
| 117 | static bool | ||
| 118 | _same_data_server_addrs_locked(const struct list_head *dsaddrs1, | ||
| 119 | const struct list_head *dsaddrs2) | ||
| 120 | { | ||
| 121 | struct nfs4_pnfs_ds_addr *da1, *da2; | ||
| 122 | |||
| 123 | /* step through both lists, comparing as we go */ | ||
| 124 | for (da1 = list_first_entry(dsaddrs1, typeof(*da1), da_node), | ||
| 125 | da2 = list_first_entry(dsaddrs2, typeof(*da2), da_node); | ||
| 126 | da1 != NULL && da2 != NULL; | ||
| 127 | da1 = list_entry(da1->da_node.next, typeof(*da1), da_node), | ||
| 128 | da2 = list_entry(da2->da_node.next, typeof(*da2), da_node)) { | ||
| 129 | if (!same_sockaddr((struct sockaddr *)&da1->da_addr, | ||
| 130 | (struct sockaddr *)&da2->da_addr)) | ||
| 131 | return false; | ||
| 132 | } | ||
| 133 | if (da1 == NULL && da2 == NULL) | ||
| 134 | return true; | ||
| 135 | |||
| 136 | return false; | ||
| 137 | } | ||
| 138 | |||
| 139 | /* | ||
| 140 | * Lookup DS by addresses. nfs4_ds_cache_lock is held | ||
| 141 | */ | ||
| 142 | static struct nfs4_pnfs_ds * | ||
| 143 | _data_server_lookup_locked(const struct list_head *dsaddrs) | ||
| 144 | { | ||
| 145 | struct nfs4_pnfs_ds *ds; | ||
| 146 | |||
| 147 | list_for_each_entry(ds, &nfs4_data_server_cache, ds_node) | ||
| 148 | if (_same_data_server_addrs_locked(&ds->ds_addrs, dsaddrs)) | ||
| 149 | return ds; | ||
| 150 | return NULL; | ||
| 151 | } | ||
| 152 | |||
| 153 | /* | ||
| 154 | * Create an rpc connection to the nfs4_pnfs_ds data server | ||
| 155 | * Currently only supports IPv4 and IPv6 addresses | ||
| 156 | */ | ||
| 157 | static int | ||
| 158 | nfs4_ds_connect(struct nfs_server *mds_srv, struct nfs4_pnfs_ds *ds) | ||
| 159 | { | ||
| 160 | struct nfs_client *clp = ERR_PTR(-EIO); | ||
| 161 | struct nfs4_pnfs_ds_addr *da; | ||
| 162 | int status = 0; | ||
| 163 | |||
| 164 | dprintk("--> %s DS %s au_flavor %d\n", __func__, ds->ds_remotestr, | ||
| 165 | mds_srv->nfs_client->cl_rpcclient->cl_auth->au_flavor); | ||
| 166 | |||
| 167 | list_for_each_entry(da, &ds->ds_addrs, da_node) { | ||
| 168 | dprintk("%s: DS %s: trying address %s\n", | ||
| 169 | __func__, ds->ds_remotestr, da->da_remotestr); | ||
| 170 | |||
| 171 | clp = nfs4_set_ds_client(mds_srv->nfs_client, | ||
| 172 | (struct sockaddr *)&da->da_addr, | ||
| 173 | da->da_addrlen, IPPROTO_TCP, | ||
| 174 | dataserver_timeo, dataserver_retrans); | ||
| 175 | if (!IS_ERR(clp)) | ||
| 176 | break; | ||
| 177 | } | ||
| 178 | |||
| 179 | if (IS_ERR(clp)) { | ||
| 180 | status = PTR_ERR(clp); | ||
| 181 | goto out; | ||
| 182 | } | ||
| 183 | |||
| 184 | status = nfs4_init_ds_session(clp, mds_srv->nfs_client->cl_lease_time); | ||
| 185 | if (status) | ||
| 186 | goto out_put; | ||
| 187 | |||
| 188 | smp_wmb(); | ||
| 189 | ds->ds_clp = clp; | ||
| 190 | dprintk("%s [new] addr: %s\n", __func__, ds->ds_remotestr); | ||
| 191 | out: | ||
| 192 | return status; | ||
| 193 | out_put: | ||
| 194 | nfs_put_client(clp); | ||
| 195 | goto out; | ||
| 196 | } | ||
| 197 | |||
| 198 | static void | ||
| 199 | destroy_ds(struct nfs4_pnfs_ds *ds) | ||
| 200 | { | ||
| 201 | struct nfs4_pnfs_ds_addr *da; | ||
| 202 | |||
| 203 | dprintk("--> %s\n", __func__); | ||
| 204 | ifdebug(FACILITY) | ||
| 205 | print_ds(ds); | ||
| 206 | |||
| 207 | nfs_put_client(ds->ds_clp); | ||
| 208 | |||
| 209 | while (!list_empty(&ds->ds_addrs)) { | ||
| 210 | da = list_first_entry(&ds->ds_addrs, | ||
| 211 | struct nfs4_pnfs_ds_addr, | ||
| 212 | da_node); | ||
| 213 | list_del_init(&da->da_node); | ||
| 214 | kfree(da->da_remotestr); | ||
| 215 | kfree(da); | ||
| 216 | } | ||
| 217 | |||
| 218 | kfree(ds->ds_remotestr); | ||
| 219 | kfree(ds); | ||
| 220 | } | ||
| 221 | |||
| 222 | void | 44 | void |
| 223 | nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr) | 45 | nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr) |
| 224 | { | 46 | { |
| @@ -229,259 +51,13 @@ nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr) | |||
| 229 | 51 | ||
| 230 | for (i = 0; i < dsaddr->ds_num; i++) { | 52 | for (i = 0; i < dsaddr->ds_num; i++) { |
| 231 | ds = dsaddr->ds_list[i]; | 53 | ds = dsaddr->ds_list[i]; |
| 232 | if (ds != NULL) { | 54 | if (ds != NULL) |
| 233 | if (atomic_dec_and_lock(&ds->ds_count, | 55 | nfs4_pnfs_ds_put(ds); |
| 234 | &nfs4_ds_cache_lock)) { | ||
| 235 | list_del_init(&ds->ds_node); | ||
| 236 | spin_unlock(&nfs4_ds_cache_lock); | ||
| 237 | destroy_ds(ds); | ||
| 238 | } | ||
| 239 | } | ||
| 240 | } | 56 | } |
| 241 | kfree(dsaddr->stripe_indices); | 57 | kfree(dsaddr->stripe_indices); |
| 242 | kfree(dsaddr); | 58 | kfree(dsaddr); |
| 243 | } | 59 | } |
| 244 | 60 | ||
| 245 | /* | ||
| 246 | * Create a string with a human readable address and port to avoid | ||
| 247 | * complicated setup around many dprinks. | ||
| 248 | */ | ||
| 249 | static char * | ||
| 250 | nfs4_pnfs_remotestr(struct list_head *dsaddrs, gfp_t gfp_flags) | ||
| 251 | { | ||
| 252 | struct nfs4_pnfs_ds_addr *da; | ||
| 253 | char *remotestr; | ||
| 254 | size_t len; | ||
| 255 | char *p; | ||
| 256 | |||
| 257 | len = 3; /* '{', '}' and eol */ | ||
| 258 | list_for_each_entry(da, dsaddrs, da_node) { | ||
| 259 | len += strlen(da->da_remotestr) + 1; /* string plus comma */ | ||
| 260 | } | ||
| 261 | |||
| 262 | remotestr = kzalloc(len, gfp_flags); | ||
| 263 | if (!remotestr) | ||
| 264 | return NULL; | ||
| 265 | |||
| 266 | p = remotestr; | ||
| 267 | *(p++) = '{'; | ||
| 268 | len--; | ||
| 269 | list_for_each_entry(da, dsaddrs, da_node) { | ||
| 270 | size_t ll = strlen(da->da_remotestr); | ||
| 271 | |||
| 272 | if (ll > len) | ||
| 273 | goto out_err; | ||
| 274 | |||
| 275 | memcpy(p, da->da_remotestr, ll); | ||
| 276 | p += ll; | ||
| 277 | len -= ll; | ||
| 278 | |||
| 279 | if (len < 1) | ||
| 280 | goto out_err; | ||
| 281 | (*p++) = ','; | ||
| 282 | len--; | ||
| 283 | } | ||
| 284 | if (len < 2) | ||
| 285 | goto out_err; | ||
| 286 | *(p++) = '}'; | ||
| 287 | *p = '\0'; | ||
| 288 | return remotestr; | ||
| 289 | out_err: | ||
| 290 | kfree(remotestr); | ||
| 291 | return NULL; | ||
| 292 | } | ||
| 293 | |||
| 294 | static struct nfs4_pnfs_ds * | ||
| 295 | nfs4_pnfs_ds_add(struct list_head *dsaddrs, gfp_t gfp_flags) | ||
| 296 | { | ||
| 297 | struct nfs4_pnfs_ds *tmp_ds, *ds = NULL; | ||
| 298 | char *remotestr; | ||
| 299 | |||
| 300 | if (list_empty(dsaddrs)) { | ||
| 301 | dprintk("%s: no addresses defined\n", __func__); | ||
| 302 | goto out; | ||
| 303 | } | ||
| 304 | |||
| 305 | ds = kzalloc(sizeof(*ds), gfp_flags); | ||
| 306 | if (!ds) | ||
| 307 | goto out; | ||
| 308 | |||
| 309 | /* this is only used for debugging, so it's ok if its NULL */ | ||
| 310 | remotestr = nfs4_pnfs_remotestr(dsaddrs, gfp_flags); | ||
| 311 | |||
| 312 | spin_lock(&nfs4_ds_cache_lock); | ||
| 313 | tmp_ds = _data_server_lookup_locked(dsaddrs); | ||
| 314 | if (tmp_ds == NULL) { | ||
| 315 | INIT_LIST_HEAD(&ds->ds_addrs); | ||
| 316 | list_splice_init(dsaddrs, &ds->ds_addrs); | ||
| 317 | ds->ds_remotestr = remotestr; | ||
| 318 | atomic_set(&ds->ds_count, 1); | ||
| 319 | INIT_LIST_HEAD(&ds->ds_node); | ||
| 320 | ds->ds_clp = NULL; | ||
| 321 | list_add(&ds->ds_node, &nfs4_data_server_cache); | ||
| 322 | dprintk("%s add new data server %s\n", __func__, | ||
| 323 | ds->ds_remotestr); | ||
| 324 | } else { | ||
| 325 | kfree(remotestr); | ||
| 326 | kfree(ds); | ||
| 327 | atomic_inc(&tmp_ds->ds_count); | ||
| 328 | dprintk("%s data server %s found, inc'ed ds_count to %d\n", | ||
| 329 | __func__, tmp_ds->ds_remotestr, | ||
| 330 | atomic_read(&tmp_ds->ds_count)); | ||
| 331 | ds = tmp_ds; | ||
| 332 | } | ||
| 333 | spin_unlock(&nfs4_ds_cache_lock); | ||
| 334 | out: | ||
| 335 | return ds; | ||
| 336 | } | ||
| 337 | |||
| 338 | /* | ||
| 339 | * Currently only supports ipv4, ipv6 and one multi-path address. | ||
| 340 | */ | ||
| 341 | static struct nfs4_pnfs_ds_addr * | ||
| 342 | decode_ds_addr(struct net *net, struct xdr_stream *streamp, gfp_t gfp_flags) | ||
| 343 | { | ||
| 344 | struct nfs4_pnfs_ds_addr *da = NULL; | ||
| 345 | char *buf, *portstr; | ||
| 346 | __be16 port; | ||
| 347 | int nlen, rlen; | ||
| 348 | int tmp[2]; | ||
| 349 | __be32 *p; | ||
| 350 | char *netid, *match_netid; | ||
| 351 | size_t len, match_netid_len; | ||
| 352 | char *startsep = ""; | ||
| 353 | char *endsep = ""; | ||
| 354 | |||
| 355 | |||
| 356 | /* r_netid */ | ||
| 357 | p = xdr_inline_decode(streamp, 4); | ||
| 358 | if (unlikely(!p)) | ||
| 359 | goto out_err; | ||
| 360 | nlen = be32_to_cpup(p++); | ||
| 361 | |||
| 362 | p = xdr_inline_decode(streamp, nlen); | ||
| 363 | if (unlikely(!p)) | ||
| 364 | goto out_err; | ||
| 365 | |||
| 366 | netid = kmalloc(nlen+1, gfp_flags); | ||
| 367 | if (unlikely(!netid)) | ||
| 368 | goto out_err; | ||
| 369 | |||
| 370 | netid[nlen] = '\0'; | ||
| 371 | memcpy(netid, p, nlen); | ||
| 372 | |||
| 373 | /* r_addr: ip/ip6addr with port in dec octets - see RFC 5665 */ | ||
| 374 | p = xdr_inline_decode(streamp, 4); | ||
| 375 | if (unlikely(!p)) | ||
| 376 | goto out_free_netid; | ||
| 377 | rlen = be32_to_cpup(p); | ||
| 378 | |||
| 379 | p = xdr_inline_decode(streamp, rlen); | ||
| 380 | if (unlikely(!p)) | ||
| 381 | goto out_free_netid; | ||
| 382 | |||
| 383 | /* port is ".ABC.DEF", 8 chars max */ | ||
| 384 | if (rlen > INET6_ADDRSTRLEN + IPV6_SCOPE_ID_LEN + 8) { | ||
| 385 | dprintk("%s: Invalid address, length %d\n", __func__, | ||
| 386 | rlen); | ||
| 387 | goto out_free_netid; | ||
| 388 | } | ||
| 389 | buf = kmalloc(rlen + 1, gfp_flags); | ||
| 390 | if (!buf) { | ||
| 391 | dprintk("%s: Not enough memory\n", __func__); | ||
| 392 | goto out_free_netid; | ||
| 393 | } | ||
| 394 | buf[rlen] = '\0'; | ||
| 395 | memcpy(buf, p, rlen); | ||
| 396 | |||
| 397 | /* replace port '.' with '-' */ | ||
| 398 | portstr = strrchr(buf, '.'); | ||
| 399 | if (!portstr) { | ||
| 400 | dprintk("%s: Failed finding expected dot in port\n", | ||
| 401 | __func__); | ||
| 402 | goto out_free_buf; | ||
| 403 | } | ||
| 404 | *portstr = '-'; | ||
| 405 | |||
| 406 | /* find '.' between address and port */ | ||
| 407 | portstr = strrchr(buf, '.'); | ||
| 408 | if (!portstr) { | ||
| 409 | dprintk("%s: Failed finding expected dot between address and " | ||
| 410 | "port\n", __func__); | ||
| 411 | goto out_free_buf; | ||
| 412 | } | ||
| 413 | *portstr = '\0'; | ||
| 414 | |||
| 415 | da = kzalloc(sizeof(*da), gfp_flags); | ||
| 416 | if (unlikely(!da)) | ||
| 417 | goto out_free_buf; | ||
| 418 | |||
| 419 | INIT_LIST_HEAD(&da->da_node); | ||
| 420 | |||
| 421 | if (!rpc_pton(net, buf, portstr-buf, (struct sockaddr *)&da->da_addr, | ||
| 422 | sizeof(da->da_addr))) { | ||
| 423 | dprintk("%s: error parsing address %s\n", __func__, buf); | ||
| 424 | goto out_free_da; | ||
| 425 | } | ||
| 426 | |||
| 427 | portstr++; | ||
| 428 | sscanf(portstr, "%d-%d", &tmp[0], &tmp[1]); | ||
| 429 | port = htons((tmp[0] << 8) | (tmp[1])); | ||
| 430 | |||
| 431 | switch (da->da_addr.ss_family) { | ||
| 432 | case AF_INET: | ||
| 433 | ((struct sockaddr_in *)&da->da_addr)->sin_port = port; | ||
| 434 | da->da_addrlen = sizeof(struct sockaddr_in); | ||
| 435 | match_netid = "tcp"; | ||
| 436 | match_netid_len = 3; | ||
| 437 | break; | ||
| 438 | |||
| 439 | case AF_INET6: | ||
| 440 | ((struct sockaddr_in6 *)&da->da_addr)->sin6_port = port; | ||
| 441 | da->da_addrlen = sizeof(struct sockaddr_in6); | ||
| 442 | match_netid = "tcp6"; | ||
| 443 | match_netid_len = 4; | ||
| 444 | startsep = "["; | ||
| 445 | endsep = "]"; | ||
| 446 | break; | ||
| 447 | |||
| 448 | default: | ||
| 449 | dprintk("%s: unsupported address family: %u\n", | ||
| 450 | __func__, da->da_addr.ss_family); | ||
| 451 | goto out_free_da; | ||
| 452 | } | ||
| 453 | |||
| 454 | if (nlen != match_netid_len || strncmp(netid, match_netid, nlen)) { | ||
| 455 | dprintk("%s: ERROR: r_netid \"%s\" != \"%s\"\n", | ||
| 456 | __func__, netid, match_netid); | ||
| 457 | goto out_free_da; | ||
| 458 | } | ||
| 459 | |||
| 460 | /* save human readable address */ | ||
| 461 | len = strlen(startsep) + strlen(buf) + strlen(endsep) + 7; | ||
| 462 | da->da_remotestr = kzalloc(len, gfp_flags); | ||
| 463 | |||
| 464 | /* NULL is ok, only used for dprintk */ | ||
| 465 | if (da->da_remotestr) | ||
| 466 | snprintf(da->da_remotestr, len, "%s%s%s:%u", startsep, | ||
| 467 | buf, endsep, ntohs(port)); | ||
| 468 | |||
| 469 | dprintk("%s: Parsed DS addr %s\n", __func__, da->da_remotestr); | ||
| 470 | kfree(buf); | ||
| 471 | kfree(netid); | ||
| 472 | return da; | ||
| 473 | |||
| 474 | out_free_da: | ||
| 475 | kfree(da); | ||
| 476 | out_free_buf: | ||
| 477 | dprintk("%s: Error parsing DS addr: %s\n", __func__, buf); | ||
| 478 | kfree(buf); | ||
| 479 | out_free_netid: | ||
| 480 | kfree(netid); | ||
| 481 | out_err: | ||
| 482 | return NULL; | ||
| 483 | } | ||
| 484 | |||
| 485 | /* Decode opaque device data and return the result */ | 61 | /* Decode opaque device data and return the result */ |
| 486 | struct nfs4_file_layout_dsaddr * | 62 | struct nfs4_file_layout_dsaddr * |
| 487 | nfs4_fl_alloc_deviceid_node(struct nfs_server *server, struct pnfs_device *pdev, | 63 | nfs4_fl_alloc_deviceid_node(struct nfs_server *server, struct pnfs_device *pdev, |
| @@ -584,8 +160,8 @@ nfs4_fl_alloc_deviceid_node(struct nfs_server *server, struct pnfs_device *pdev, | |||
| 584 | 160 | ||
| 585 | mp_count = be32_to_cpup(p); /* multipath count */ | 161 | mp_count = be32_to_cpup(p); /* multipath count */ |
| 586 | for (j = 0; j < mp_count; j++) { | 162 | for (j = 0; j < mp_count; j++) { |
| 587 | da = decode_ds_addr(server->nfs_client->cl_net, | 163 | da = nfs4_decode_mp_ds_addr(server->nfs_client->cl_net, |
| 588 | &stream, gfp_flags); | 164 | &stream, gfp_flags); |
| 589 | if (da) | 165 | if (da) |
| 590 | list_add_tail(&da->da_node, &dsaddrs); | 166 | list_add_tail(&da->da_node, &dsaddrs); |
| 591 | } | 167 | } |
| @@ -681,22 +257,7 @@ nfs4_fl_select_ds_fh(struct pnfs_layout_segment *lseg, u32 j) | |||
| 681 | return flseg->fh_array[i]; | 257 | return flseg->fh_array[i]; |
| 682 | } | 258 | } |
| 683 | 259 | ||
| 684 | static void nfs4_wait_ds_connect(struct nfs4_pnfs_ds *ds) | 260 | /* Upon return, either ds is connected, or ds is NULL */ |
| 685 | { | ||
| 686 | might_sleep(); | ||
| 687 | wait_on_bit_action(&ds->ds_state, NFS4DS_CONNECTING, | ||
| 688 | nfs_wait_bit_killable, TASK_KILLABLE); | ||
| 689 | } | ||
| 690 | |||
| 691 | static void nfs4_clear_ds_conn_bit(struct nfs4_pnfs_ds *ds) | ||
| 692 | { | ||
| 693 | smp_mb__before_atomic(); | ||
| 694 | clear_bit(NFS4DS_CONNECTING, &ds->ds_state); | ||
| 695 | smp_mb__after_atomic(); | ||
| 696 | wake_up_bit(&ds->ds_state, NFS4DS_CONNECTING); | ||
| 697 | } | ||
| 698 | |||
| 699 | |||
| 700 | struct nfs4_pnfs_ds * | 261 | struct nfs4_pnfs_ds * |
| 701 | nfs4_fl_prepare_ds(struct pnfs_layout_segment *lseg, u32 ds_idx) | 262 | nfs4_fl_prepare_ds(struct pnfs_layout_segment *lseg, u32 ds_idx) |
| 702 | { | 263 | { |
| @@ -704,29 +265,23 @@ nfs4_fl_prepare_ds(struct pnfs_layout_segment *lseg, u32 ds_idx) | |||
| 704 | struct nfs4_pnfs_ds *ds = dsaddr->ds_list[ds_idx]; | 265 | struct nfs4_pnfs_ds *ds = dsaddr->ds_list[ds_idx]; |
| 705 | struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg); | 266 | struct nfs4_deviceid_node *devid = FILELAYOUT_DEVID_NODE(lseg); |
| 706 | struct nfs4_pnfs_ds *ret = ds; | 267 | struct nfs4_pnfs_ds *ret = ds; |
| 268 | struct nfs_server *s = NFS_SERVER(lseg->pls_layout->plh_inode); | ||
| 707 | 269 | ||
| 708 | if (ds == NULL) { | 270 | if (ds == NULL) { |
| 709 | printk(KERN_ERR "NFS: %s: No data server for offset index %d\n", | 271 | printk(KERN_ERR "NFS: %s: No data server for offset index %d\n", |
| 710 | __func__, ds_idx); | 272 | __func__, ds_idx); |
| 711 | filelayout_mark_devid_invalid(devid); | 273 | pnfs_generic_mark_devid_invalid(devid); |
| 712 | goto out; | 274 | goto out; |
| 713 | } | 275 | } |
| 714 | smp_rmb(); | 276 | smp_rmb(); |
| 715 | if (ds->ds_clp) | 277 | if (ds->ds_clp) |
| 716 | goto out_test_devid; | 278 | goto out_test_devid; |
| 717 | 279 | ||
| 718 | if (test_and_set_bit(NFS4DS_CONNECTING, &ds->ds_state) == 0) { | 280 | nfs4_pnfs_ds_connect(s, ds, devid, dataserver_timeo, |
| 719 | struct nfs_server *s = NFS_SERVER(lseg->pls_layout->plh_inode); | 281 | dataserver_retrans, 4, |
| 720 | int err; | 282 | s->nfs_client->cl_minorversion, |
| 721 | 283 | s->nfs_client->cl_rpcclient->cl_auth->au_flavor); | |
| 722 | err = nfs4_ds_connect(s, ds); | 284 | |
| 723 | if (err) | ||
| 724 | nfs4_mark_deviceid_unavailable(devid); | ||
| 725 | nfs4_clear_ds_conn_bit(ds); | ||
| 726 | } else { | ||
| 727 | /* Either ds is connected, or ds is NULL */ | ||
| 728 | nfs4_wait_ds_connect(ds); | ||
| 729 | } | ||
| 730 | out_test_devid: | 285 | out_test_devid: |
| 731 | if (filelayout_test_devid_unavailable(devid)) | 286 | if (filelayout_test_devid_unavailable(devid)) |
| 732 | ret = NULL; | 287 | ret = NULL; |
