From b094a4a9bccc20f59548f188d87f8878dd1a87f8 Mon Sep 17 00:00:00 2001 From: yury Date: Mon, 23 Oct 2006 08:34:54 +0000 Subject: [PATCH] - fixed typo in fid_be_to_cpu() --- lustre/fid/fid_lib.c | 2 +- lustre/tests/test-framework.sh | 2 +- lustre/utils/libiam.c | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lustre/fid/fid_lib.c b/lustre/fid/fid_lib.c index b66a04b..9759489 100644 --- a/lustre/fid/fid_lib.c +++ b/lustre/fid/fid_lib.c @@ -116,7 +116,7 @@ void fid_be_to_cpu(struct lu_fid *dst, const struct lu_fid *src) dst->f_seq = be64_to_cpu(fid_seq(src)); dst->f_oid = be32_to_cpu(fid_oid(src)); dst->f_ver = be32_to_cpu(fid_ver(src)); - LASSERTF(fid_is_igif(dst) || fid_ver(dst) == 0i, DFID"\n", PFID(dst)); + LASSERTF(fid_is_igif(dst) || fid_ver(dst) == 0, DFID"\n", PFID(dst)); } EXPORT_SYMBOL(fid_be_to_cpu); #endif diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index ef69c1d..2df57c8 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -7,7 +7,7 @@ trap 'echo "test-framework exiting on error"' ERR export REFORMAT="" -export VERBOSE=false +export VERBOSE=${VERBOSE:-false} export GMNALNID=${GMNALNID:-/usr/sbin/gmlndnid} export CATASTROPHE=${CATASTROPHE:-/proc/sys/lnet/catastrophe} diff --git a/lustre/utils/libiam.c b/lustre/utils/libiam.c index 37f95d6..1480bda 100644 --- a/lustre/utils/libiam.c +++ b/lustre/utils/libiam.c @@ -300,7 +300,6 @@ static unsigned char *packdigit(unsigned char *number) return area; } - static char *iam_convert(int size, int need_convert, char *source) { char *ptr; -- 1.8.3.1