From eb5d4096f8d42ff394917f933eed5155e48cb471 Mon Sep 17 00:00:00 2001 From: zab Date: Fri, 23 May 2003 00:22:26 +0000 Subject: [PATCH] - this seems to pass runregression-net.sh.. - bring the osc and ost into the mix for the benefit of echo.sh - get lprocfs building into the kernel by not defining the same 3 symbols in every lprocfs object (sigh) - compat out path_lookup, we may need to EXPORT it for 2.5 later - s/uint flags/ulong flags/ in ptlrpc (eep) --- lustre/lib/Makefile.mk | 2 +- lustre/osc/Makefile.mk | 9 +++++++++ lustre/ost/Makefile.mk | 9 +++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 lustre/osc/Makefile.mk create mode 100644 lustre/ost/Makefile.mk diff --git a/lustre/lib/Makefile.mk b/lustre/lib/Makefile.mk index d83965a..ef46288 100644 --- a/lustre/lib/Makefile.mk +++ b/lustre/lib/Makefile.mk @@ -5,4 +5,4 @@ include $(src)/../portals/Kernelenv -obj-y += mds_updates.o simple.o target.o +obj-y += mds_updates.o obd_pack.o simple.o client.o target.o diff --git a/lustre/osc/Makefile.mk b/lustre/osc/Makefile.mk new file mode 100644 index 0000000..1d1efb0 --- /dev/null +++ b/lustre/osc/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 += osc.o +osc-objs := osc_request.o lproc_osc.o diff --git a/lustre/ost/Makefile.mk b/lustre/ost/Makefile.mk new file mode 100644 index 0000000..08c7dae --- /dev/null +++ b/lustre/ost/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 += ost.o +ost-objs := ost_handler.o lproc_ost.o -- 1.8.3.1