remove the #if 0'ed NFS_ATTRTIMEO() macro since it was
authorthib <thib@openbsd.org>
Sun, 31 Aug 2008 16:58:01 +0000 (16:58 +0000)
committerthib <thib@openbsd.org>
Sun, 31 Aug 2008 16:58:01 +0000 (16:58 +0000)
replaced by a function long ago..

ok blambert@

sys/nfs/nfs.h

index 158a9b2..ad85bfa 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: nfs.h,v 1.33 2008/07/05 17:34:26 thib Exp $   */
+/*     $OpenBSD: nfs.h,v 1.34 2008/08/31 16:58:01 thib Exp $   */
 /*     $NetBSD: nfs.h,v 1.10.4.1 1996/05/27 11:23:56 fvdl Exp $        */
 
 /*
 #define IO_METASYNC    0
 #endif
 
-/*
- * Set the attribute timeout based on how recently the file has been modified.
- */
-#if 0 /* replaced by nfs_attrtimeo() in nfs_subs.c */
-#define        NFS_ATTRTIMEO(np) \
-       ((((np)->n_flag & NMODIFIED) || \
-        (time_second - (np)->n_mtime) / 10 < NFS_MINATTRTIMO) ? NFS_MINATTRTIMO : \
-        ((time_second - (np)->n_mtime) / 10 > NFS_MAXATTRTIMO ? NFS_MAXATTRTIMO : \
-         (time_second - (np)->n_mtime) / 10))
-#endif
-
 /*
  * Structures for the nfssvc(2) syscall. Not that anyone but nfsd and mount_nfs
  * should ever try and use it.