4 AC_DEFUN([LDISKFS_LINUX_SERIES], [
6 AC_MSG_CHECKING([which ldiskfs series to use])
7 AS_IF([test x$RHEL_KERNEL = xyes], [
8 AS_VERSION_COMPARE([$RHEL_KERNEL_VERSION],[2.6.32-431],[
9 AS_VERSION_COMPARE([$RHEL_KERNEL_VERSION],[2.6.32-343],[
10 AS_VERSION_COMPARE([$RHEL_KERNEL_VERSION],[2.6.32],[],
11 [LDISKFS_SERIES="2.6-rhel6.series"], [LDISKFS_SERIES="2.6-rhel6.series"])],
12 [LDISKFS_SERIES="2.6-rhel6.4.series"],[LDISKFS_SERIES="2.6-rhel6.4.series"])],
13 [LDISKFS_SERIES="2.6-rhel6.5.series"],[LDISKFS_SERIES="2.6-rhel6.5.series"])
14 ], [test x$SUSE_KERNEL = xyes], [
15 AS_VERSION_COMPARE([$LINUXRELEASE],[3.0.0],[
16 AS_VERSION_COMPARE([$LINUXRELEASE],[2.6.32], [],
17 [LDISKFS_SERIES="2.6-sles11.series"],[LDISKFS_SERIES="2.6-sles11.series"])],
18 [LDISKFS_SERIES="3.0-sles11.series"],[
19 PLEV=$(grep PATCHLEVEL /etc/SuSE-release | sed -e 's/.*= *//')
21 2) LDISKFS_SERIES="3.0-sles11.series"
23 3) LDISKFS_SERIES="3.0-sles11sp3.series"
28 AS_IF([test -z "$LDISKFS_SERIES"],
29 [AC_MSG_WARN([Unknown kernel version $LDISKFS_VERSIONRELEASE])])
30 AC_MSG_RESULT([$LDISKFS_SERIES])
31 AC_SUBST(LDISKFS_SERIES)
32 ]) # LDISKFS_LINUX_SERIES
35 # LB_EXT_FREE_BLOCKS_WITH_BUFFER_HEAD
37 # 2.6.32-rc7 ext4_free_blocks requires struct buffer_head
38 # Note that RHEL6 is pre 2.6.32-rc7 so this check is still needed.
40 AC_DEFUN([LB_EXT_FREE_BLOCKS_WITH_BUFFER_HEAD], [
41 LB_CHECK_COMPILE([if 'ext4_free_blocks' needs 'struct buffer_head'],
42 ext4_free_blocks_with_buffer_head, [
44 #include "$EXT4_SRC_DIR/ext4.h"
46 ext4_free_blocks(NULL, NULL, NULL, 0, 0, 0);
48 AC_DEFINE(HAVE_EXT_FREE_BLOCK_WITH_BUFFER_HEAD, 1,
49 [ext4_free_blocks do not require struct buffer_head])
51 ]) # LB_EXT_FREE_BLOCKS_WITH_BUFFER_HEAD
56 # 2.6.35 renamed ext_pblock to ext4_ext_pblock(ex)
58 AC_DEFUN([LB_EXT_PBLOCK], [
59 LB_CHECK_COMPILE([if Linux kernel has 'ext_pblock'],
62 #include "$EXT4_SRC_DIR/ext4_extents.h"
66 AC_DEFINE(HAVE_EXT_PBLOCK, 1, [Linux kernel has ext_pblock])
71 # LB_EXT4_JOURNAL_START_3ARGS
73 # 3.9 added a type argument to ext4_journal_start and friends
75 AC_DEFUN([LB_EXT4_JOURNAL_START_3ARGS], [
76 LB_CHECK_COMPILE([if ext4_journal_start takes 3 arguments],
79 #include "$EXT4_SRC_DIR/ext4_jbd2.h"
81 ext4_journal_start(NULL, 0, 0);
83 AC_DEFINE(JOURNAL_START_HAS_3ARGS, 1, [ext4_journal_start takes 3 arguments])
85 ]) # LB_EXT4_JOURNAL_START_3ARGS
88 # LB_LDISKFS_MAP_BLOCKS
90 # Since 2.6.35 brought ext4_map_blocks() for IO.
91 # We just check this function whether existed.
92 # it must be exported by ldiskfs patches.
94 AC_DEFUN([LB_LDISKFS_MAP_BLOCKS], [
95 LB_CHECK_COMPILE([if kernel has ext4_map_blocks],
98 #include "$EXT4_SRC_DIR/ext4.h"
100 ext4_map_blocks(NULL, NULL, NULL, 0);
102 AC_DEFINE(HAVE_LDISKFS_MAP_BLOCKS, 1, [kernel has ext4_map_blocks])
107 # LDISKFS_AC_PATCH_PROGRAM
109 # Determine which program should be used to apply the patches to
110 # the ext4 source code to produce the ldiskfs source code.
112 AC_DEFUN([LDISKFS_AC_PATCH_PROGRAM], [
113 AC_ARG_ENABLE([quilt],
114 [AC_HELP_STRING([--disable-quilt],
115 [disable use of quilt for ldiskfs])],
116 [AS_IF([test "x$enableval" = xno],
122 AS_IF([test x$use_quilt = xmaybe], [
123 AC_PATH_PROG([quilt_avail], [quilt], [no])
124 AS_IF([test x$quilt_avail = xno], [
131 AS_IF([test x$use_quilt = xno], [
132 AC_PATH_PROG([patch_avail], [patch], [no])
133 AS_IF([test x$patch_avail = xno], [
134 AC_MSG_ERROR([*** Need "quilt" or "patch" command])
137 ]) # LDISKFS_AC_PATCH_PROGRAM
142 AC_DEFUN([LB_CONFIG_LDISKFS], [
143 # --with-ldiskfs is deprecated now that ldiskfs is fully merged with lustre.
144 # However we continue to support this option through Lustre 2.5.
145 AC_ARG_WITH([ldiskfs],
147 [AC_MSG_WARN([--with-ldiskfs is deprecated, please use --enable-ldiskfs])
148 AS_IF([test x$withval != xyes -a x$withval != xno],
151 The ldiskfs option is deprecated,
152 and no longer supports paths to external ldiskfs source
156 AC_ARG_ENABLE([ldiskfs],
157 [AS_HELP_STRING([--disable-ldiskfs],
158 [disable ldiskfs osd (default is enable)])],
159 [AS_IF([test x$enable_ldiskfs != xyes -a x$enable_ldiskfs != xno],
160 [AC_MSG_ERROR([ldiskfs valid options are "yes" or "no"])])],
161 [AS_IF([test "${with_ldiskfs+set}" = set],
162 [enable_ldiskfs=$with_ldiskfs],
163 [enable_ldiskfs=maybe])
166 AS_IF([test x$enable_server = xno],
167 [AS_CASE([$enable_ldiskfs],
168 [maybe], [enable_ldiskfs=no],
169 [yes], [AC_MSG_ERROR([cannot build ldiskfs when servers are disabled])]
172 AS_IF([test x$enable_ldiskfs != xno],[
173 # In the future, we chould change enable_ldiskfs from maybe to
174 # either yes or no based on additional tests, e.g. whether a patch
175 # set is available for the detected kernel. For now, we just always
177 AS_IF([test x$enable_ldiskfs = xmaybe], [enable_ldiskfs=yes])
180 LDISKFS_AC_PATCH_PROGRAM
181 LB_EXT_FREE_BLOCKS_WITH_BUFFER_HEAD
183 LB_EXT4_JOURNAL_START_3ARGS
184 LB_LDISKFS_MAP_BLOCKS
185 AC_DEFINE(CONFIG_LDISKFS_FS_POSIX_ACL, 1, [posix acls for ldiskfs])
186 AC_DEFINE(CONFIG_LDISKFS_FS_SECURITY, 1, [fs security for ldiskfs])
187 AC_DEFINE(CONFIG_LDISKFS_FS_XATTR, 1, [extened attributes for ldiskfs])
188 AC_DEFINE(CONFIG_LDISKFS_FS_RW, 1, [enable rw access for ldiskfs])
189 AC_SUBST(LDISKFS_SUBDIR, ldiskfs)
190 AC_DEFINE(HAVE_LDISKFS_OSD, 1, Enable ldiskfs osd)
193 AC_MSG_CHECKING([whether to build ldiskfs])
194 AC_MSG_RESULT([$enable_ldiskfs])
196 AM_CONDITIONAL([LDISKFS_ENABLED], [test x$enable_ldiskfs = xyes])
197 ]) # LB_CONFIG_LDISKFS
200 # LB_VALIDATE_EXT4_SRC_DIR
202 # Spot check the existance of several source files common to ext4.
203 # Detecting this at configure time allows us to avoid a potential build
204 # failure and provide a useful error message to explain what is wrong.
206 AC_DEFUN([LB_VALIDATE_EXT4_SRC_DIR], [
207 enable_ldiskfs_build="no"
208 AS_IF([test -n "$EXT4_SRC_DIR"], [
209 enable_ldiskfs_build="yes"
210 LB_CHECK_FILE([$EXT4_SRC_DIR/dir.c], [], [
211 enable_ldiskfs_build="no"
212 AC_MSG_WARN([ext4 must exist for ldiskfs build])
214 LB_CHECK_FILE([$EXT4_SRC_DIR/file.c], [], [
215 enable_ldiskfs_build="no"
216 AC_MSG_WARN([ext4 must exist for ldiskfs build])
218 LB_CHECK_FILE([$EXT4_SRC_DIR/inode.c], [], [
219 enable_ldiskfs_build="no"
220 AC_MSG_WARN([ext4 must exist for ldiskfs build])
222 LB_CHECK_FILE([$EXT4_SRC_DIR/super.c], [], [
223 enable_ldiskfs_build="no"
224 AC_MSG_WARN([ext4 must exist for ldiskfs build])
228 AS_IF([test "x$enable_ldiskfs_build" = xno], [
233 Disabling ldiskfs support because complete ext4 source does not exist.
235 If you are building using kernel-devel packages and require ldiskfs
236 server support then ensure that the matching kernel-debuginfo-common
237 and kernel-debuginfo-common-<arch> packages are installed.
240 ]) # LB_VALIDATE_EXT4_SRC_DIR
245 # Determine the location of the ext4 source code. It it required
246 # for several configure tests and to build ldiskfs.
248 AC_DEFUN([LB_EXT4_SRC_DIR], [
249 AC_MSG_CHECKING([ext4 source directory])
250 # Kernel ext source located with devel headers
252 AS_IF([test -e "$linux_src/fs/ext4/super.c"], [
253 EXT4_SRC_DIR="$linux_src/fs/ext4"
255 # Kernel ext source provided by kernel-debuginfo-common package
256 linux_src=$(ls -1d /usr/src/debug/*/linux-$LINUXRELEASE \
257 2>/dev/null | tail -1)
258 AS_IF([test -e "$linux_src/fs/ext4/super.c"],
259 [EXT4_SRC_DIR="$linux_src/fs/ext4"],
262 AC_MSG_RESULT([$EXT4_SRC_DIR])
263 AC_SUBST(EXT4_SRC_DIR)
265 LB_VALIDATE_EXT4_SRC_DIR
269 # LB_DEFINE_E2FSPROGS_NAMES
271 # Enable the use of alternate naming of ldiskfs-enabled e2fsprogs package.
273 AC_DEFUN([LB_DEFINE_E2FSPROGS_NAMES], [
274 AC_MSG_CHECKING([whether to use alternate names for e2fsprogs])
275 AC_ARG_WITH([ldiskfsprogs],
276 AC_HELP_STRING([--with-ldiskfsprogs],
277 [use alternate names for ldiskfs-enabled e2fsprogs]),
280 AS_IF([test "x$withval" = xyes], [
281 AC_MSG_RESULT([enabled])
282 AC_DEFINE(HAVE_LDISKFSPROGS, 1, [enable use of ldiskfsprogs package])
283 E2FSPROGS="ldiskfsprogs"
284 MKE2FS="mkfs.ldiskfs"
285 DEBUGFS="debugfs.ldiskfs"
286 TUNE2FS="tunefs.ldiskfs"
287 E2LABEL="label.ldiskfs"
288 DUMPE2FS="dumpfs.ldiskfs"
289 E2FSCK="fsck.ldiskfs"
290 PFSCK="pfsck.ldiskfs"
292 AC_MSG_RESULT([disabled])
293 E2FSPROGS="e2fsprogs"
303 AC_DEFINE_UNQUOTED(E2FSPROGS, "$E2FSPROGS", [name of ldiskfs e2fsprogs package])
304 AC_DEFINE_UNQUOTED(MKE2FS, "$MKE2FS", [name of ldiskfs mkfs program])
305 AC_DEFINE_UNQUOTED(DEBUGFS, "$DEBUGFS", [name of ldiskfs debug program])
306 AC_DEFINE_UNQUOTED(TUNE2FS, "$TUNE2FS", [name of ldiskfs tune program])
307 AC_DEFINE_UNQUOTED(E2LABEL, "$E2LABEL", [name of ldiskfs label program])
308 AC_DEFINE_UNQUOTED(DUMPE2FS,"$DUMPE2FS", [name of ldiskfs dump program])
309 AC_DEFINE_UNQUOTED(E2FSCK, "$E2FSCK", [name of ldiskfs fsck program])
310 AC_DEFINE_UNQUOTED(PFSCK, "$PFSCK", [name of parallel fsck program])
312 AC_SUBST([E2FSPROGS], [$E2FSPROGS])
313 AC_SUBST([MKE2FS], [$MKE2FS])
314 AC_SUBST([DEBUGFS], [$DEBUGFS])
315 AC_SUBST([TUNE2FS], [$TUNE2FS])
316 AC_SUBST([E2LABEL], [$E2LABEL])
317 AC_SUBST([DUMPE2FS], [$DUMPE2FS])
318 AC_SUBST([E2FSCK], [$E2FSCK])
319 AC_SUBST([PFSCK], [$PFSCK])
320 ]) # LB_DEFINE_E2FSPROGS_NAMES