2 * Device operations for the pnfs nfs4 file layout driver.
5 * The Regents of the University of Michigan
8 * Dean Hildebrand <dhildebz@umich.edu>
9 * Garth Goodson <Garth.Goodson@netapp.com>
11 * Permission is granted to use, copy, create derivative works, and
12 * redistribute this software and such derivative works for any purpose,
13 * so long as the name of the University of Michigan is not used in
14 * any advertising or publicity pertaining to the use or distribution
15 * of this software without specific, written prior authorization. If
16 * the above copyright notice or any other identification of the
17 * University of Michigan is included in any copy of any portion of
18 * this software, then the disclaimer below must also be included.
20 * This software is provided as is, without representation or warranty
21 * of any kind either express or implied, including without limitation
22 * the implied warranties of merchantability, fitness for a particular
23 * purpose, or noninfringement. The Regents of the University of
24 * Michigan shall not be liable for any damages, including special,
25 * indirect, incidental, or consequential damages, with respect to any
26 * claim arising out of or in connection with the use of the software,
27 * even if it has been or is hereafter advised of the possibility of
31 #include <linux/nfs_fs.h>
32 #include <linux/vmalloc.h>
33 #include <linux/module.h>
36 #include "nfs4filelayout.h"
38 #define NFSDBG_FACILITY NFSDBG_PNFS_LD
40 static unsigned int dataserver_timeo
= NFS4_DEF_DS_TIMEO
;
41 static unsigned int dataserver_retrans
= NFS4_DEF_DS_RETRANS
;
46 * Data servers can be mapped to different device ids.
47 * nfs4_pnfs_ds reference counting
48 * - set to 1 on allocation
49 * - incremented when a device id maps a data server already in the cache.
50 * - decremented when deviceid is removed from the cache.
52 static DEFINE_SPINLOCK(nfs4_ds_cache_lock
);
53 static LIST_HEAD(nfs4_data_server_cache
);
57 print_ds(struct nfs4_pnfs_ds
*ds
)
60 printk("%s NULL device\n", __func__
);
66 " cl_exchange_flags %x\n",
68 atomic_read(&ds
->ds_count
), ds
->ds_clp
,
69 ds
->ds_clp
? ds
->ds_clp
->cl_exchange_flags
: 0);
73 same_sockaddr(struct sockaddr
*addr1
, struct sockaddr
*addr2
)
75 struct sockaddr_in
*a
, *b
;
76 struct sockaddr_in6
*a6
, *b6
;
78 if (addr1
->sa_family
!= addr2
->sa_family
)
81 switch (addr1
->sa_family
) {
83 a
= (struct sockaddr_in
*)addr1
;
84 b
= (struct sockaddr_in
*)addr2
;
86 if (a
->sin_addr
.s_addr
== b
->sin_addr
.s_addr
&&
87 a
->sin_port
== b
->sin_port
)
92 a6
= (struct sockaddr_in6
*)addr1
;
93 b6
= (struct sockaddr_in6
*)addr2
;
95 /* LINKLOCAL addresses must have matching scope_id */
96 if (ipv6_addr_scope(&a6
->sin6_addr
) ==
97 IPV6_ADDR_SCOPE_LINKLOCAL
&&
98 a6
->sin6_scope_id
!= b6
->sin6_scope_id
)
101 if (ipv6_addr_equal(&a6
->sin6_addr
, &b6
->sin6_addr
) &&
102 a6
->sin6_port
== b6
->sin6_port
)
107 dprintk("%s: unhandled address family: %u\n",
108 __func__
, addr1
->sa_family
);
116 _same_data_server_addrs_locked(const struct list_head
*dsaddrs1
,
117 const struct list_head
*dsaddrs2
)
119 struct nfs4_pnfs_ds_addr
*da1
, *da2
;
121 /* step through both lists, comparing as we go */
122 for (da1
= list_first_entry(dsaddrs1
, typeof(*da1
), da_node
),
123 da2
= list_first_entry(dsaddrs2
, typeof(*da2
), da_node
);
124 da1
!= NULL
&& da2
!= NULL
;
125 da1
= list_entry(da1
->da_node
.next
, typeof(*da1
), da_node
),
126 da2
= list_entry(da2
->da_node
.next
, typeof(*da2
), da_node
)) {
127 if (!same_sockaddr((struct sockaddr
*)&da1
->da_addr
,
128 (struct sockaddr
*)&da2
->da_addr
))
131 if (da1
== NULL
&& da2
== NULL
)
138 * Lookup DS by addresses. nfs4_ds_cache_lock is held
140 static struct nfs4_pnfs_ds
*
141 _data_server_lookup_locked(const struct list_head
*dsaddrs
)
143 struct nfs4_pnfs_ds
*ds
;
145 list_for_each_entry(ds
, &nfs4_data_server_cache
, ds_node
)
146 if (_same_data_server_addrs_locked(&ds
->ds_addrs
, dsaddrs
))
152 * Lookup DS by nfs_client pointer. Zero data server client pointer
154 void nfs4_ds_disconnect(struct nfs_client
*clp
)
156 struct nfs4_pnfs_ds
*ds
;
157 struct nfs_client
*found
= NULL
;
159 dprintk("%s clp %p\n", __func__
, clp
);
160 spin_lock(&nfs4_ds_cache_lock
);
161 list_for_each_entry(ds
, &nfs4_data_server_cache
, ds_node
)
162 if (ds
->ds_clp
&& ds
->ds_clp
== clp
) {
166 spin_unlock(&nfs4_ds_cache_lock
);
168 set_bit(NFS_CS_STOP_RENEW
, &clp
->cl_res_state
);
174 * Create an rpc connection to the nfs4_pnfs_ds data server
175 * Currently only supports IPv4 and IPv6 addresses
178 nfs4_ds_connect(struct nfs_server
*mds_srv
, struct nfs4_pnfs_ds
*ds
)
180 struct nfs_client
*clp
= ERR_PTR(-EIO
);
181 struct nfs4_pnfs_ds_addr
*da
;
184 dprintk("--> %s DS %s au_flavor %d\n", __func__
, ds
->ds_remotestr
,
185 mds_srv
->nfs_client
->cl_rpcclient
->cl_auth
->au_flavor
);
187 BUG_ON(list_empty(&ds
->ds_addrs
));
189 list_for_each_entry(da
, &ds
->ds_addrs
, da_node
) {
190 dprintk("%s: DS %s: trying address %s\n",
191 __func__
, ds
->ds_remotestr
, da
->da_remotestr
);
193 clp
= nfs4_set_ds_client(mds_srv
->nfs_client
,
194 (struct sockaddr
*)&da
->da_addr
,
195 da
->da_addrlen
, IPPROTO_TCP
,
196 dataserver_timeo
, dataserver_retrans
);
202 status
= PTR_ERR(clp
);
206 status
= nfs4_init_ds_session(clp
, mds_srv
->nfs_client
->cl_lease_time
);
211 dprintk("%s [new] addr: %s\n", __func__
, ds
->ds_remotestr
);
220 destroy_ds(struct nfs4_pnfs_ds
*ds
)
222 struct nfs4_pnfs_ds_addr
*da
;
224 dprintk("--> %s\n", __func__
);
229 nfs_put_client(ds
->ds_clp
);
231 while (!list_empty(&ds
->ds_addrs
)) {
232 da
= list_first_entry(&ds
->ds_addrs
,
233 struct nfs4_pnfs_ds_addr
,
235 list_del_init(&da
->da_node
);
236 kfree(da
->da_remotestr
);
240 kfree(ds
->ds_remotestr
);
245 nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr
*dsaddr
)
247 struct nfs4_pnfs_ds
*ds
;
250 nfs4_print_deviceid(&dsaddr
->id_node
.deviceid
);
252 for (i
= 0; i
< dsaddr
->ds_num
; i
++) {
253 ds
= dsaddr
->ds_list
[i
];
255 if (atomic_dec_and_lock(&ds
->ds_count
,
256 &nfs4_ds_cache_lock
)) {
257 list_del_init(&ds
->ds_node
);
258 spin_unlock(&nfs4_ds_cache_lock
);
263 kfree(dsaddr
->stripe_indices
);
268 * Create a string with a human readable address and port to avoid
269 * complicated setup around many dprinks.
272 nfs4_pnfs_remotestr(struct list_head
*dsaddrs
, gfp_t gfp_flags
)
274 struct nfs4_pnfs_ds_addr
*da
;
279 len
= 3; /* '{', '}' and eol */
280 list_for_each_entry(da
, dsaddrs
, da_node
) {
281 len
+= strlen(da
->da_remotestr
) + 1; /* string plus comma */
284 remotestr
= kzalloc(len
, gfp_flags
);
291 list_for_each_entry(da
, dsaddrs
, da_node
) {
292 size_t ll
= strlen(da
->da_remotestr
);
297 memcpy(p
, da
->da_remotestr
, ll
);
316 static struct nfs4_pnfs_ds
*
317 nfs4_pnfs_ds_add(struct list_head
*dsaddrs
, gfp_t gfp_flags
)
319 struct nfs4_pnfs_ds
*tmp_ds
, *ds
= NULL
;
322 if (list_empty(dsaddrs
)) {
323 dprintk("%s: no addresses defined\n", __func__
);
327 ds
= kzalloc(sizeof(*ds
), gfp_flags
);
331 /* this is only used for debugging, so it's ok if its NULL */
332 remotestr
= nfs4_pnfs_remotestr(dsaddrs
, gfp_flags
);
334 spin_lock(&nfs4_ds_cache_lock
);
335 tmp_ds
= _data_server_lookup_locked(dsaddrs
);
336 if (tmp_ds
== NULL
) {
337 INIT_LIST_HEAD(&ds
->ds_addrs
);
338 list_splice_init(dsaddrs
, &ds
->ds_addrs
);
339 ds
->ds_remotestr
= remotestr
;
340 atomic_set(&ds
->ds_count
, 1);
341 INIT_LIST_HEAD(&ds
->ds_node
);
343 list_add(&ds
->ds_node
, &nfs4_data_server_cache
);
344 dprintk("%s add new data server %s\n", __func__
,
349 atomic_inc(&tmp_ds
->ds_count
);
350 dprintk("%s data server %s found, inc'ed ds_count to %d\n",
351 __func__
, tmp_ds
->ds_remotestr
,
352 atomic_read(&tmp_ds
->ds_count
));
355 spin_unlock(&nfs4_ds_cache_lock
);
361 * Currently only supports ipv4, ipv6 and one multi-path address.
363 static struct nfs4_pnfs_ds_addr
*
364 decode_ds_addr(struct net
*net
, struct xdr_stream
*streamp
, gfp_t gfp_flags
)
366 struct nfs4_pnfs_ds_addr
*da
= NULL
;
372 char *netid
, *match_netid
;
373 size_t len
, match_netid_len
;
379 p
= xdr_inline_decode(streamp
, 4);
382 nlen
= be32_to_cpup(p
++);
384 p
= xdr_inline_decode(streamp
, nlen
);
388 netid
= kmalloc(nlen
+1, gfp_flags
);
389 if (unlikely(!netid
))
393 memcpy(netid
, p
, nlen
);
395 /* r_addr: ip/ip6addr with port in dec octets - see RFC 5665 */
396 p
= xdr_inline_decode(streamp
, 4);
399 rlen
= be32_to_cpup(p
);
401 p
= xdr_inline_decode(streamp
, rlen
);
405 /* port is ".ABC.DEF", 8 chars max */
406 if (rlen
> INET6_ADDRSTRLEN
+ IPV6_SCOPE_ID_LEN
+ 8) {
407 dprintk("%s: Invalid address, length %d\n", __func__
,
411 buf
= kmalloc(rlen
+ 1, gfp_flags
);
413 dprintk("%s: Not enough memory\n", __func__
);
417 memcpy(buf
, p
, rlen
);
419 /* replace port '.' with '-' */
420 portstr
= strrchr(buf
, '.');
422 dprintk("%s: Failed finding expected dot in port\n",
428 /* find '.' between address and port */
429 portstr
= strrchr(buf
, '.');
431 dprintk("%s: Failed finding expected dot between address and "
437 da
= kzalloc(sizeof(*da
), gfp_flags
);
441 INIT_LIST_HEAD(&da
->da_node
);
443 if (!rpc_pton(net
, buf
, portstr
-buf
, (struct sockaddr
*)&da
->da_addr
,
444 sizeof(da
->da_addr
))) {
445 dprintk("%s: error parsing address %s\n", __func__
, buf
);
450 sscanf(portstr
, "%d-%d", &tmp
[0], &tmp
[1]);
451 port
= htons((tmp
[0] << 8) | (tmp
[1]));
453 switch (da
->da_addr
.ss_family
) {
455 ((struct sockaddr_in
*)&da
->da_addr
)->sin_port
= port
;
456 da
->da_addrlen
= sizeof(struct sockaddr_in
);
462 ((struct sockaddr_in6
*)&da
->da_addr
)->sin6_port
= port
;
463 da
->da_addrlen
= sizeof(struct sockaddr_in6
);
464 match_netid
= "tcp6";
471 dprintk("%s: unsupported address family: %u\n",
472 __func__
, da
->da_addr
.ss_family
);
476 if (nlen
!= match_netid_len
|| strncmp(netid
, match_netid
, nlen
)) {
477 dprintk("%s: ERROR: r_netid \"%s\" != \"%s\"\n",
478 __func__
, netid
, match_netid
);
482 /* save human readable address */
483 len
= strlen(startsep
) + strlen(buf
) + strlen(endsep
) + 7;
484 da
->da_remotestr
= kzalloc(len
, gfp_flags
);
486 /* NULL is ok, only used for dprintk */
487 if (da
->da_remotestr
)
488 snprintf(da
->da_remotestr
, len
, "%s%s%s:%u", startsep
,
489 buf
, endsep
, ntohs(port
));
491 dprintk("%s: Parsed DS addr %s\n", __func__
, da
->da_remotestr
);
499 dprintk("%s: Error parsing DS addr: %s\n", __func__
, buf
);
507 /* Decode opaque device data and return the result */
508 static struct nfs4_file_layout_dsaddr
*
509 decode_device(struct inode
*ino
, struct pnfs_device
*pdev
, gfp_t gfp_flags
)
517 struct nfs4_file_layout_dsaddr
*dsaddr
= NULL
;
518 struct xdr_stream stream
;
520 struct page
*scratch
;
521 struct list_head dsaddrs
;
522 struct nfs4_pnfs_ds_addr
*da
;
524 /* set up xdr stream */
525 scratch
= alloc_page(gfp_flags
);
529 xdr_init_decode_pages(&stream
, &buf
, pdev
->pages
, pdev
->pglen
);
530 xdr_set_scratch_buffer(&stream
, page_address(scratch
), PAGE_SIZE
);
532 /* Get the stripe count (number of stripe index) */
533 p
= xdr_inline_decode(&stream
, 4);
535 goto out_err_free_scratch
;
537 cnt
= be32_to_cpup(p
);
538 dprintk("%s stripe count %d\n", __func__
, cnt
);
539 if (cnt
> NFS4_PNFS_MAX_STRIPE_CNT
) {
540 printk(KERN_WARNING
"NFS: %s: stripe count %d greater than "
541 "supported maximum %d\n", __func__
,
542 cnt
, NFS4_PNFS_MAX_STRIPE_CNT
);
543 goto out_err_free_scratch
;
546 /* read stripe indices */
547 stripe_indices
= kcalloc(cnt
, sizeof(u8
), gfp_flags
);
549 goto out_err_free_scratch
;
551 p
= xdr_inline_decode(&stream
, cnt
<< 2);
553 goto out_err_free_stripe_indices
;
555 indexp
= &stripe_indices
[0];
556 max_stripe_index
= 0;
557 for (i
= 0; i
< cnt
; i
++) {
558 *indexp
= be32_to_cpup(p
++);
559 max_stripe_index
= max(max_stripe_index
, *indexp
);
563 /* Check the multipath list count */
564 p
= xdr_inline_decode(&stream
, 4);
566 goto out_err_free_stripe_indices
;
568 num
= be32_to_cpup(p
);
569 dprintk("%s ds_num %u\n", __func__
, num
);
570 if (num
> NFS4_PNFS_MAX_MULTI_CNT
) {
571 printk(KERN_WARNING
"NFS: %s: multipath count %d greater than "
572 "supported maximum %d\n", __func__
,
573 num
, NFS4_PNFS_MAX_MULTI_CNT
);
574 goto out_err_free_stripe_indices
;
577 /* validate stripe indices are all < num */
578 if (max_stripe_index
>= num
) {
579 printk(KERN_WARNING
"NFS: %s: stripe index %u >= num ds %u\n",
580 __func__
, max_stripe_index
, num
);
581 goto out_err_free_stripe_indices
;
584 dsaddr
= kzalloc(sizeof(*dsaddr
) +
585 (sizeof(struct nfs4_pnfs_ds
*) * (num
- 1)),
588 goto out_err_free_stripe_indices
;
590 dsaddr
->stripe_count
= cnt
;
591 dsaddr
->stripe_indices
= stripe_indices
;
592 stripe_indices
= NULL
;
593 dsaddr
->ds_num
= num
;
594 nfs4_init_deviceid_node(&dsaddr
->id_node
,
595 NFS_SERVER(ino
)->pnfs_curr_ld
,
596 NFS_SERVER(ino
)->nfs_client
,
599 INIT_LIST_HEAD(&dsaddrs
);
601 for (i
= 0; i
< dsaddr
->ds_num
; i
++) {
605 p
= xdr_inline_decode(&stream
, 4);
607 goto out_err_free_deviceid
;
609 mp_count
= be32_to_cpup(p
); /* multipath count */
610 for (j
= 0; j
< mp_count
; j
++) {
611 da
= decode_ds_addr(NFS_SERVER(ino
)->nfs_client
->cl_net
,
614 list_add_tail(&da
->da_node
, &dsaddrs
);
616 if (list_empty(&dsaddrs
)) {
617 dprintk("%s: no suitable DS addresses found\n",
619 goto out_err_free_deviceid
;
622 dsaddr
->ds_list
[i
] = nfs4_pnfs_ds_add(&dsaddrs
, gfp_flags
);
623 if (!dsaddr
->ds_list
[i
])
624 goto out_err_drain_dsaddrs
;
626 /* If DS was already in cache, free ds addrs */
627 while (!list_empty(&dsaddrs
)) {
628 da
= list_first_entry(&dsaddrs
,
629 struct nfs4_pnfs_ds_addr
,
631 list_del_init(&da
->da_node
);
632 kfree(da
->da_remotestr
);
637 __free_page(scratch
);
640 out_err_drain_dsaddrs
:
641 while (!list_empty(&dsaddrs
)) {
642 da
= list_first_entry(&dsaddrs
, struct nfs4_pnfs_ds_addr
,
644 list_del_init(&da
->da_node
);
645 kfree(da
->da_remotestr
);
648 out_err_free_deviceid
:
649 nfs4_fl_free_deviceid(dsaddr
);
650 /* stripe_indicies was part of dsaddr */
651 goto out_err_free_scratch
;
652 out_err_free_stripe_indices
:
653 kfree(stripe_indices
);
654 out_err_free_scratch
:
655 __free_page(scratch
);
657 dprintk("%s ERROR: returning NULL\n", __func__
);
662 * Decode the opaque device specified in 'dev' and add it to the cache of
665 static struct nfs4_file_layout_dsaddr
*
666 decode_and_add_device(struct inode
*inode
, struct pnfs_device
*dev
, gfp_t gfp_flags
)
668 struct nfs4_deviceid_node
*d
;
669 struct nfs4_file_layout_dsaddr
*n
, *new;
671 new = decode_device(inode
, dev
, gfp_flags
);
673 printk(KERN_WARNING
"NFS: %s: Could not decode or add device\n",
678 d
= nfs4_insert_deviceid_node(&new->id_node
);
679 n
= container_of(d
, struct nfs4_file_layout_dsaddr
, id_node
);
681 nfs4_fl_free_deviceid(new);
689 * Retrieve the information for dev_id, add it to the list
690 * of available devices, and return it.
692 struct nfs4_file_layout_dsaddr
*
693 get_device_info(struct inode
*inode
, struct nfs4_deviceid
*dev_id
, gfp_t gfp_flags
)
695 struct pnfs_device
*pdev
= NULL
;
698 struct page
**pages
= NULL
;
699 struct nfs4_file_layout_dsaddr
*dsaddr
= NULL
;
701 struct nfs_server
*server
= NFS_SERVER(inode
);
704 * Use the session max response size as the basis for setting
705 * GETDEVICEINFO's maxcount
707 max_resp_sz
= server
->nfs_client
->cl_session
->fc_attrs
.max_resp_sz
;
708 max_pages
= nfs_page_array_len(0, max_resp_sz
);
709 dprintk("%s inode %p max_resp_sz %u max_pages %d\n",
710 __func__
, inode
, max_resp_sz
, max_pages
);
712 pdev
= kzalloc(sizeof(struct pnfs_device
), gfp_flags
);
716 pages
= kzalloc(max_pages
* sizeof(struct page
*), gfp_flags
);
721 for (i
= 0; i
< max_pages
; i
++) {
722 pages
[i
] = alloc_page(gfp_flags
);
727 memcpy(&pdev
->dev_id
, dev_id
, sizeof(*dev_id
));
728 pdev
->layout_type
= LAYOUT_NFSV4_1_FILES
;
731 pdev
->pglen
= PAGE_SIZE
* max_pages
;
734 rc
= nfs4_proc_getdeviceinfo(server
, pdev
);
735 dprintk("%s getdevice info returns %d\n", __func__
, rc
);
740 * Found new device, need to decode it and then add it to the
741 * list of known devices for this mountpoint.
743 dsaddr
= decode_and_add_device(inode
, pdev
, gfp_flags
);
745 for (i
= 0; i
< max_pages
; i
++)
746 __free_page(pages
[i
]);
749 dprintk("<-- %s dsaddr %p\n", __func__
, dsaddr
);
754 nfs4_fl_put_deviceid(struct nfs4_file_layout_dsaddr
*dsaddr
)
756 nfs4_put_deviceid_node(&dsaddr
->id_node
);
760 * Want res = (offset - layout->pattern_offset)/ layout->stripe_unit
761 * Then: ((res + fsi) % dsaddr->stripe_count)
764 nfs4_fl_calc_j_index(struct pnfs_layout_segment
*lseg
, loff_t offset
)
766 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
769 tmp
= offset
- flseg
->pattern_offset
;
770 do_div(tmp
, flseg
->stripe_unit
);
771 tmp
+= flseg
->first_stripe_index
;
772 return do_div(tmp
, flseg
->dsaddr
->stripe_count
);
776 nfs4_fl_calc_ds_index(struct pnfs_layout_segment
*lseg
, u32 j
)
778 return FILELAYOUT_LSEG(lseg
)->dsaddr
->stripe_indices
[j
];
782 nfs4_fl_select_ds_fh(struct pnfs_layout_segment
*lseg
, u32 j
)
784 struct nfs4_filelayout_segment
*flseg
= FILELAYOUT_LSEG(lseg
);
787 if (flseg
->stripe_type
== STRIPE_SPARSE
) {
788 if (flseg
->num_fh
== 1)
790 else if (flseg
->num_fh
== 0)
791 /* Use the MDS OPEN fh set in nfs_read_rpcsetup */
794 i
= nfs4_fl_calc_ds_index(lseg
, j
);
797 return flseg
->fh_array
[i
];
800 struct nfs4_pnfs_ds
*
801 nfs4_fl_prepare_ds(struct pnfs_layout_segment
*lseg
, u32 ds_idx
)
803 struct nfs4_file_layout_dsaddr
*dsaddr
= FILELAYOUT_LSEG(lseg
)->dsaddr
;
804 struct nfs4_pnfs_ds
*ds
= dsaddr
->ds_list
[ds_idx
];
805 struct nfs4_deviceid_node
*devid
= FILELAYOUT_DEVID_NODE(lseg
);
807 if (filelayout_test_devid_invalid(devid
))
811 printk(KERN_ERR
"NFS: %s: No data server for offset index %d\n",
813 goto mark_dev_invalid
;
817 struct nfs_server
*s
= NFS_SERVER(lseg
->pls_layout
->plh_inode
);
820 err
= nfs4_ds_connect(s
, ds
);
822 goto mark_dev_invalid
;
827 filelayout_mark_devid_invalid(devid
);
831 module_param(dataserver_retrans
, uint
, 0644);
832 MODULE_PARM_DESC(dataserver_retrans
, "The number of times the NFSv4.1 client "
833 "retries a request before it attempts further "
834 " recovery action.");
835 module_param(dataserver_timeo
, uint
, 0644);
836 MODULE_PARM_DESC(dataserver_timeo
, "The time (in tenths of a second) the "
837 "NFSv4.1 client waits for a response from a "
838 " data server before it retries an NFS request.");