From 9165c02c662bc5bc239f9fd1fc30a667244d6fd5 Mon Sep 17 00:00:00 2001 From: braam Date: Mon, 3 Jun 2002 07:25:29 +0000 Subject: [PATCH] This is a check on the mds locking branch. status: - mkdir, create, open, close now seem to work on existing and non-existing files - readdir still causes a problem - iozone is now broken new code: - intent code related to create/open: postpone object creation to open and include it in mds_open. - intent code when files exist: return attributes from mds_reint_create. - locking for readdir (which is failing) - minor fix to main kernel patch (to be checked in momentarily) - added mknod create test program mcreate.c (to be checked in momentarily) - cleanup mds namespace initialization - fixes to makefile for "lustre" module --- lustre/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lustre/Makefile.am b/lustre/Makefile.am index 718468b..c355db4 100644 --- a/lustre/Makefile.am +++ b/lustre/Makefile.am @@ -4,8 +4,10 @@ # See the file COPYING in this distribution AUTOMAKE_OPTIONS = foreign -SUBDIRS = ptlrpc llite lib ldlm obdecho mdc osc mds ost utils tests obdfilter -SUBDIRS+= obdclass obdext2 obdfs demos doc scripts extN + +# NOTE: keep extN before mds +SUBDIRS = ptlrpc llite lib ldlm obdecho mdc osc extN mds ost +SUBDIRS+= obdclass obdext2 obdfs demos doc scripts utils tests obdfilter EXTRA_DIST = BUGS FDL Rules include patches # We get the version from the spec file. -- 1.8.3.1