From 3fa2d4f8b0c4a0dadc54935fa4200eac60b961d4 Mon Sep 17 00:00:00 2001 From: "Brian J. Murrell" Date: Wed, 6 Oct 2010 17:13:36 -0400 Subject: [PATCH] b=23804 LC_WALK_SPACE_HAS_DATA_SEM on servers only The LC_WALK_SPACE_HAS_DATA_SEM check is only needed on servers so guard it for server configures only. i=Sheng Yang i=Andreas Dilger --- lustre/autoconf/lustre-core.m4 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lustre/autoconf/lustre-core.m4 b/lustre/autoconf/lustre-core.m4 index 0633797..c8e1264 100644 --- a/lustre/autoconf/lustre-core.m4 +++ b/lustre/autoconf/lustre-core.m4 @@ -1987,16 +1987,18 @@ AC_DEFUN([LC_PROG_LINUX], # 2.6.31 LC_BLK_QUEUE_LOG_BLK_SIZE - + # 2.6.32 LC_NEW_BACKING_DEV_INFO - LC_WALK_SPACE_HAS_DATA_SEM + if test x$enable_server = xyes ; then + LC_WALK_SPACE_HAS_DATA_SEM + fi LC_DQUOT_INIT LC_REQUEST_QUEUE_LIMITS - # + # if test x$enable_server = xyes ; then - LC_QUOTA64 # must after LC_HAVE_QUOTAIO_V1_H + LC_QUOTA64 # must after LC_HAVE_QUOTAIO_V1_H fi ]) -- 1.8.3.1