From: zab Date: Fri, 23 May 2003 00:22:26 +0000 (+0000) Subject: - this seems to pass runregression-net.sh.. X-Git-Tag: v1_7_100~1^91~245 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=eb5d4096f8d42ff394917f933eed5155e48cb471;p=fs%2Flustre-release.git - 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) --- 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