* configure.in (AC_CHECK_MNT2_NFS_OPTS): check for NFS mount
authorErez Zadok <ezk@cs.sunysb.edu>
Sun, 26 Nov 2000 02:15:29 +0000 (02:15 +0000)
committerErez Zadok <ezk@cs.sunysb.edu>
Sun, 26 Nov 2000 02:15:29 +0000 (02:15 +0000)
options kerb, rdirplus, readdirsize, and xlatecookie
(NetBSD-1.5K).

* acconfig.h: recognize NFS mount options rdirplus, readdirsize,
and xlatecookie (NetBSD-1.5K)

ChangeLog
acconfig.h
configure.in

index d739f02d8e38a3745bd94f0e21de27385fb4b82d..f413cb095e5482e53c7bcaee6bcd762a2ec3ee04 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2000-11-26  Erez Zadok  <ezk@dmath5.geometrie.tuwien.ac.at>
+
+       * configure.in (AC_CHECK_MNT2_NFS_OPTS): check for NFS mount
+       options kerb, rdirplus, readdirsize, and xlatecookie
+       (NetBSD-1.5K).
+
+       * acconfig.h: recognize NFS mount options rdirplus, readdirsize,
+       and xlatecookie (NetBSD-1.5K)
+
 2000-11-24  Erez Zadok  <ezk@shekel.mcl.cs.columbia.edu>
 
        * amd/srvr_nfs.c: comment on NFS proto search order.
index 2a09745f022b8f9db8127c26caa6648eeb8168d9..6ee3bd6d3695f327bf7328387a8923886531e630 100644 (file)
 /* Do lookup with readdir (nqnfs) */
 #undef MNT2_NFS_OPT_RDIRALOOK
 
-/* allow property list operations */
+/* allow property list operations (ACLs over NFS) */
 #undef MNT2_NFS_OPT_PROPLIST
 
+/* Use Readdirplus for NFSv3 */
+#undef MNT2_NFS_OPTS_RDIRPLUS
+
 /* set read ahead */
 #undef MNT2_NFS_OPT_READAHEAD
 
+/* Set readdir size */
+#undef MNT2_NFS_OPT_READDIRSIZE
+
 /* Allocate a reserved port */
 #undef MNT2_NFS_OPT_RESVPORT
 
 /* paging threshold */
 #undef MNT2_NFS_OPT_PGTHRESH
 
+/* 32<->64 dir cookie translation */
+#undef MNT2_NFS_OPT_XLATECOOKIE
+
 /*
  * CDFS-specific mount(2) options (hex numbers)
  */
index 292f1bbfbee5ef7d0f110be5034a98be7c3a17be..f47099b509dad08b5042ac4244ff91d304e0f117 100644 (file)
@@ -877,6 +877,7 @@ AC_CHECK_MNT2_NFS_OPTS(     \
        ignore          \
        int             \
        intr            \
+       kerb            \
        knconf          \
        leaseterm       \
        maxgrps         \
@@ -889,7 +890,9 @@ AC_CHECK_MNT2_NFS_OPTS(     \
        pgthresh        \
        posix           \
        proplist        \
+       rdirplus        \
        readahead       \
+       readdirsize     \
        resvport        \
        retrans         \
        ronly           \
@@ -901,6 +904,7 @@ AC_CHECK_MNT2_NFS_OPTS(     \
        timeo           \
        ver3            \
        wsize           \
+       xlatecookie     \
        )
 dnl ======================================================================