diff options
| author | Rick Macklem <rmacklem@FreeBSD.org> | 2017-09-21 00:41:12 +0000 |
|---|---|---|
| committer | Rick Macklem <rmacklem@FreeBSD.org> | 2017-09-21 00:41:12 +0000 |
| commit | 6b43e060291b7510b162579fd8c8dd9d6a274d2e (patch) | |
| tree | bae83ad4f5223f371f87cfa0ea640857f5436a30 /sys/fs | |
| parent | 8c294161aaa42551cdfe1c74d04e212c5b887416 (diff) | |
Notes
Diffstat (limited to 'sys/fs')
| -rw-r--r-- | sys/fs/nfs/nfs.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/fs/nfs/nfs.h b/sys/fs/nfs/nfs.h index 2661e1270cdb..75439e370dba 100644 --- a/sys/fs/nfs/nfs.h +++ b/sys/fs/nfs/nfs.h @@ -177,6 +177,17 @@ struct nfsd_nfsd_args { }; /* + * NFSDEV_MIRRORSTR - string of digits that number the DSs 0->999. + * (To support more than 1000 DSs on an MDS, this needs to be increased.) + * NFSDEV_MAXMIRRORS - Maximum # of mirrors for a DS. + * (Most will only have a single mirror, but this setting allows up to 3.) + * NFSDEV_MAXVERS - maximum number of NFS versions supported by Flex File. + */ +#define NFSDEV_MIRRORSTR 3 +#define NFSDEV_MAXMIRRORS 4 +#define NFSDEV_MAXVERS 4 + +/* * Arguments for use by the callback daemon. */ struct nfsd_nfscbd_args { |
