From 5550a8d3a549d3577be4cd639afe2139ba6203ed Mon Sep 17 00:00:00 2001 From: zab Date: Fri, 23 May 2003 21:34:06 +0000 Subject: [PATCH] - add mdc, obdfilter, and lov to the mix - static out more duplicate lprocfs symbols, xprocfs too - move lustre code to the 2.5 d_hash hlist_ api and have compat map it back to 2.4's list_heads - ->bmap now enjoys sector_t --- lustre/lov/Makefile.mk | 9 +++++++++ lustre/mdc/Makefile.mk | 9 +++++++++ lustre/obdfilter/Makefile.mk | 9 +++++++++ 3 files changed, 27 insertions(+) create mode 100644 lustre/lov/Makefile.mk create mode 100644 lustre/mdc/Makefile.mk create mode 100644 lustre/obdfilter/Makefile.mk diff --git a/lustre/lov/Makefile.mk b/lustre/lov/Makefile.mk new file mode 100644 index 0000000..9d8450e --- /dev/null +++ b/lustre/lov/Makefile.mk @@ -0,0 +1,9 @@ +# Copyright (C) 2003 Cluster File Systems, Inc. +# +# This code is issued under the GNU General Public License. +# See the file COPYING in this distribution + +include $(src)/../portals/Kernelenv + +obj-y += lov.o +lov-objs := lov_obd.o lov_pack.o lproc_lov.o diff --git a/lustre/mdc/Makefile.mk b/lustre/mdc/Makefile.mk new file mode 100644 index 0000000..3fba39c --- /dev/null +++ b/lustre/mdc/Makefile.mk @@ -0,0 +1,9 @@ +# Copyright (C) 2003 Cluster File Systems, Inc. +# +# This code is issued under the GNU General Public License. +# See the file COPYING in this distribution + +include $(src)/../portals/Kernelenv + +obj-y += mdc.o +mdc-objs := mdc_request.o mdc_reint.o lproc_mdc.o diff --git a/lustre/obdfilter/Makefile.mk b/lustre/obdfilter/Makefile.mk new file mode 100644 index 0000000..3cf6fbd --- /dev/null +++ b/lustre/obdfilter/Makefile.mk @@ -0,0 +1,9 @@ +# Copyright (C) 2003 Cluster File Systems, Inc. +# +# This code is issued under the GNU General Public License. +# See the file COPYING in this distribution + +include $(src)/../portals/Kernelenv + +obj-y += obdfilter.o +obdfilter-objs := filter.o lproc_obdfilter.o -- 1.8.3.1