X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2FMakefile.am;h=69d5b5134342c2467db27194542d87c9be690d1e;hb=8602aad84cd0ae57ed1eade67c20d3e6c384d9f5;hp=425bed2c1babd8735e041f73b8352e4458c1909c;hpb=690ae88aa4e3934dc97c1d11218f9c91b0234922;p=fs%2Flustre-release.git diff --git a/lustre/Makefile.am b/lustre/Makefile.am index 425bed2..69d5b51 100644 --- a/lustre/Makefile.am +++ b/lustre/Makefile.am @@ -11,18 +11,30 @@ else DIRS24 = ptlbd endif +# just until things are farther along +if CRAY_PORTALS +UTILS_TESTS = +else +UTILS_TESTS = utils tests +endif + if LIBLUSTRE -SUBDIRS = portals obdclass lov ptlrpc obdecho ldlm osc utils mdc #liblustre +SUBDIRS = portals obdclass lov ptlrpc obdecho osc utils mdc lvfs liblustre else -# NOTE: keep extN before obdclass, mds, and obdfilter. Keep obdclass as early -# as possible, to have the best chance at stopping with "wrong kernel version" -# instead of some related build failure. -SUBDIRS = portals obdclass $(DIRS24) mds utils ldlm obdfilter mdc osc ost -SUBDIRS+= llite obdecho lov cobd tests doc scripts conf ptlrpc +SUBDIRS = lvfs portals obdclass include $(DIRS24) mds obdfilter mdc osc ost +SUBDIRS+= llite obdecho lov cobd doc scripts conf ptlrpc $(UTILS_TESTS) +endif + + +if SNAPFS +SUBDIRS+= snapfs endif -DIST_SUBDIRS = $(SUBDIRS) liblustre -EXTRA_DIST = BUGS FDL Rules include kernel_patches +if SMFS +SUBDIRS += smfs +endif +DIST_SUBDIRS = $(SUBDIRS) liblustre snapfs smfs +EXTRA_DIST = BUGS FDL Rules kernel_patches # We get the version from the spec file. CONFIGURE_DEPENDENCIES = scripts/lustre.spec.in @@ -36,3 +48,19 @@ include $(top_srcdir)/Rules rpms: dist Makefile rpmbuild -ta $(distdir).tar.gz +CSTK=/tmp/checkstack +CSTKO=/tmp/checkstack.orig + +checkstack: + [ -f ${CSTK} -a ! -s ${CSTKO} ] && mv ${CSTK} ${CSTKO} || true + for i in ${SUBDIRS} portals/knals/*; do \ + MOD=$$i/`basename $$i`.o; \ + [ -f $$MOD ] && objdump -d $$MOD | perl tests/checkstack.pl; \ + done | sort -nr > ${CSTK} + [ -f ${CSTKO} ] && ! diff -u ${CSTKO} ${CSTK} || head -30 ${CSTK} + +checkstack-update: + [ -f ${CSTK} ] && mv ${CSTK} ${CSTKO} + +checkstack-clean: + rm -f ${CSTK} ${CSTKO}