* configure.in: don't "discover" inheritance file system any more,
authorErez Zadok <ezk@cs.sunysb.edu>
Sun, 6 Mar 2005 02:21:28 +0000 (02:21 +0000)
committerErez Zadok <ezk@cs.sunysb.edu>
Sun, 6 Mar 2005 02:21:28 +0000 (02:21 +0000)
since we don't have the .c file for it.

* amd/get_args.c (get_version_string): hack to still show that we
support the inherit file system in output of amd -v.

ChangeLog
NEWS
amd/get_args.c
configure.in

index d4f177e4f3fce76def091cd9c33e1e2a682f4ce1..ab83c722b796a8d6dadc5a66c6e519902c670a50 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-03-05  Erez Zadok  <ezk@cs.sunysb.edu>
+
+       * configure.in: don't "discover" inheritance file system any more,
+       since we don't have the .c file for it.
+
+       * amd/get_args.c (get_version_string): hack to still show that we
+       support the inherit file system in output of amd -v.
+
 2005-03-05  Ion Badulescu  <ionut@moisil.badula.org>
 
        * amd/amfs_inherit.c: removed, dead code
diff --git a/NEWS b/NEWS
index ccb8e284b5b58261c851e004b8e89c7db808ea83..7c83593979459a7ed01b94ab37a20b260293130b 100644 (file)
--- a/NEWS
+++ b/NEWS
   TCP mounts, because even a hung TCP mount can cause user processes to
   hang.
 
+- file system inheritance code restructured, so it's no longer a pseudo file
+  system, but actually integrated into Amd (as it should have been).
+
 - bugs fixed:
        * various memory management problems (leaks, etc)
        * fixed nfsx support
index a5d926fc439d584bbfbb1b50f9a7ecdab9505798..b09cdd11bfdd9272d49dd4e24d4a357dc0a6eb97 100644 (file)
@@ -37,7 +37,7 @@
  * SUCH DAMAGE.
  *
  *
- * $Id: get_args.c,v 1.28 2005/03/04 18:42:43 ezk Exp $
+ * $Id: get_args.c,v 1.29 2005/03/06 02:21:28 ezk Exp $
  *
  */
 
@@ -109,7 +109,7 @@ get_version_string(void)
   strcat(vers, ".\nAMFS: ");
   ops_showamfstypes(tmpbuf);
   strcat(vers, tmpbuf);
-  strcat(vers, ".\nFS: ");
+  strcat(vers, ", inherit.\nFS: "); /* hack: "show" that we support type:=inherit */
   ops_showfstypes(tmpbuf);
   strcat(vers, tmpbuf);
 
index 6a5d53cca52362a93a4d8bbca3c045655ad2d3a3..1f8c4a75d48f8c05f189d23a0d24efa7e42436fc 100644 (file)
@@ -53,7 +53,7 @@ AH_BOTTOM([
 dnl
 dnl AC_CONFIG_AUX_DIR(m4)
 AC_PREREQ(2.52)
-AC_REVISION($Revision: 1.77 $)
+AC_REVISION($Revision: 1.78 $)
 AC_COPYRIGHT([Copyright (c) 1997-2005 Erez Zadok])
 dnl find out system type
 AC_MSG_NOTICE(*** SYSTEM TYPES ***)
@@ -866,7 +866,7 @@ AMU_CHECK_AMU_FS(auto, automounter)
 AMU_CHECK_AMU_FS(direct, direct automount)
 AMU_CHECK_AMU_FS(toplvl, top-level)
 AMU_CHECK_AMU_FS(error, error)
-AMU_CHECK_AMU_FS(inherit, inheritance)
+dnl AMU_CHECK_AMU_FS(inherit, inheritance)
 AMU_CHECK_AMU_FS(program, program)
 AMU_CHECK_AMU_FS(link, symlink)
 AMU_CHECK_AMU_FS(linkx, symlink with existence check)