From: Christos Zoulas Date: Thu, 15 Dec 2011 21:43:23 +0000 (-0500) Subject: add lustre X-Git-Url: https://git.fsl.cs.stonybrook.edu/?a=commitdiff_plain;h=312e142cd6c35ab75c67bcb8257cd2ab2d2cefff;p=am-utils-6.2.git add lustre --- diff --git a/amd/Makefile.am b/amd/Makefile.am index f1318f21..6e672ae5 100644 --- a/amd/Makefile.am +++ b/amd/Makefile.am @@ -99,6 +99,7 @@ EXTRA_amd_SOURCES = \ ops_cdfs.c \ ops_efs.c \ ops_lofs.c \ + ops_lustre.c \ ops_mfs.c \ ops_nfs.c \ ops_nfs3.c \ diff --git a/amd/am_ops.c b/amd/am_ops.c index 4cf0cf1e..22fbf37f 100644 --- a/amd/am_ops.c +++ b/amd/am_ops.c @@ -126,6 +126,9 @@ static am_ops *vops[] = #ifdef HAVE_FS_UDF &udf_ops, /* UDF F/S */ #endif /* HAVE_FS_UDF */ +#ifdef HAVE_FS_LUSTRE + &lustre_ops, /* Lustre */ +#endif /* HAVE_FS_LUSTRE */ /* * These 4 should be last, in the order: diff --git a/amd/amd.h b/amd/amd.h index 98a10742..5aa55f23 100644 --- a/amd/amd.h +++ b/amd/amd.h @@ -756,6 +756,10 @@ extern am_ops pcfs_ops; extern am_ops udf_ops; #endif /* HAVE_FS_UDF */ +#ifdef HAVE_FS_LUSTRE +extern am_ops lustre_ops; +#endif /* HAVE_FS_LUSTRE */ + /* * Caching File System (Solaris) */