Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lustre-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
debian-packages
lustre-release
Commits
015fb2f9
Commit
015fb2f9
authored
17 years ago
by
alex
Browse files
Options
Downloads
Patches
Plain Diff
- to be able to choose between DMU and POSIX osd
parent
67633604
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build/autoconf/lustre-build.m4
+51
-23
51 additions, 23 deletions
build/autoconf/lustre-build.m4
with
51 additions
and
23 deletions
build/autoconf/lustre-build.m4
+
51
−
23
View file @
015fb2f9
...
@@ -112,26 +112,6 @@ fi
...
@@ -112,26 +112,6 @@ fi
])
])
])
])
#
# LB_PATH_DMU
# Support for --with-dmu
#
AC_DEFUN([LB_PATH_DMU],
[AC_ARG_WITH([dmu],
AC_HELP_STRING([--with-dmu=path],
[set path to a built dmu]),
[
DMU_SRC=$with_dmu
dmu=true
],
[
dmu=false
DMU_SRC=""
])
AM_CONDITIONAL([ENABLE_DMU], [test x$dmu = xtrue])
AC_SUBST(DMU_SRC)
])
#
#
# LB_PATH_LIBSYSIO
# LB_PATH_LIBSYSIO
#
#
...
@@ -287,14 +267,61 @@ AC_ARG_ENABLE([uoss],
...
@@ -287,14 +267,61 @@ AC_ARG_ENABLE([uoss],
AC_HELP_STRING([--enable-uoss],
AC_HELP_STRING([--enable-uoss],
[enable building of user-level oss]),
[enable building of user-level oss]),
[enable_uoss='yes'],[enable_uoss='no'])
[enable_uoss='yes'],[enable_uoss='no'])
AC_MSG_RESULT([$enable_uoss])
if test x$enable_uoss != xno; then
if test x$enable_uoss != xno; then
AC_DEFINE(UOSS_SUPPORT, 1, Enable user-level OSS)
AC_DEFINE(UOSS_SUPPORT, 1, Enable user-level OSS)
AC_DEFINE(LUSTRE_ULEVEL_MT, 1, Multi-threaded user-level lustre port)
AC_DEFINE(LUSTRE_ULEVEL_MT, 1, Multi-threaded user-level lustre port)
enable_ulevel_mt='yes'
enable_ulevel_mt='yes'
enable_modules='no'
enable_modules='no'
enable_client='no'
enable_tests='no'
enable_liblustre='no'
with_ldiskfs=no
fi
fi
])
])
#
# LB_PATH_DMU
# Support for --with-dmu
#
AC_DEFUN([LB_PATH_DMU],
[AC_ARG_WITH([dmu],
AC_HELP_STRING([--with-dmu=path],
[set path to a built dmu]),
[
DMU_SRC=$with_dmu
dmu=true
],
[
dmu=false
DMU_SRC=""
])
AM_CONDITIONAL([ENABLE_DMU], [test x$dmu = xtrue])
AC_SUBST(DMU_SRC)
AC_DEFINE(DMU_OSD, 1, Enable DMU OSD)
])
#
# Support for --enable-posix-dmu
#
AC_DEFUN([LB_POSIX_OSD],
[AC_MSG_CHECKING([whether to posix osd])
AC_ARG_ENABLE([posix-osd],
AC_HELP_STRING([--enable-posix-osd],
[enable using of posix osd]),
[enable_posix_osd='yes'],[enable_posix_osd='no'])
AC_MSG_RESULT([$enable_posix_osd])
if test x$enable_posix_osd != xno; then
AC_DEFINE(POSIX_OSD, 1, Enable POSIX OSD)
AC_DEFINE(LUSTRE_ULEVEL_MT, 1, Multi-threaded user-level lustre port)
enable_ulevel_mt='yes'
enable_modules='no'
enable_client='no'
enable_tests='no'
enable_liblustre='no'
with_ldiskfs=no
fi
])
#
#
# LB_PATH_SNMP
# LB_PATH_SNMP
...
@@ -606,6 +633,10 @@ LB_PATH_DEFAULTS
...
@@ -606,6 +633,10 @@ LB_PATH_DEFAULTS
LB_PROG_CC
LB_PROG_CC
LB_PATH_DMU
LB_CONFIG_UOSS
LB_POSIX_OSD
LB_CONFIG_DOCS
LB_CONFIG_DOCS
LB_CONFIG_UTILS
LB_CONFIG_UTILS
LB_CONFIG_TESTS
LB_CONFIG_TESTS
...
@@ -618,9 +649,6 @@ LN_CONFIG_CDEBUG
...
@@ -618,9 +649,6 @@ LN_CONFIG_CDEBUG
LB_CONFIG_MODULES
LB_CONFIG_MODULES
LB_PATH_DMU
LB_CONFIG_UOSS
LB_PATH_LIBSYSIO
LB_PATH_LIBSYSIO
LB_PATH_SNMP
LB_PATH_SNMP
LB_PATH_LDISKFS
LB_PATH_LDISKFS
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment