X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2FMakefile.am;h=045bace583a3c47868cae3498d365d31a6685372;hb=4680e5ac4158ce0006c6405d72684c05b224aad6;hp=47d3c28ac064543e83a55f74ed12674c2e257aac;hpb=96ec6856f91f7f9031cfce4273c714d72cfe59ae;p=fs%2Flustre-release.git diff --git a/lustre/Makefile.am b/lustre/Makefile.am index 47d3c28..045bace5 100644 --- a/lustre/Makefile.am +++ b/lustre/Makefile.am @@ -12,17 +12,21 @@ DIRS24 = ptlbd endif if LIBLUSTRE -SUBDIRS = portals lov obdclass 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 $(DIRS24) obdclass mds utils ldlm obdfilter mdc osc ost +SUBDIRS = lvfs portals obdclass include $(DIRS24) mds utils obdfilter mdc osc ost SUBDIRS+= llite obdecho lov cobd tests doc scripts conf ptlrpc endif -DIST_SUBDIRS = $(SUBDIRS) liblustre -EXTRA_DIST = BUGS FDL Rules include kernel_patches +if SNAPFS +SUBDIRS+= snapfs +endif + +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 +40,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}