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
da5f2db0
Commit
da5f2db0
authored
20 years ago
by
jacob
Browse files
Options
Downloads
Patches
Plain Diff
remove arch symlink
parent
d63c9fc5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lnet/autoMakefile.am
+1
-16
1 addition, 16 deletions
lnet/autoMakefile.am
lnet/include/libcfs/kp30.h
+7
-1
7 additions, 1 deletion
lnet/include/libcfs/kp30.h
lnet/include/libcfs/libcfs.h
+9
-1
9 additions, 1 deletion
lnet/include/libcfs/libcfs.h
with
17 additions
and
18 deletions
lnet/autoMakefile.am
+
1
−
16
View file @
da5f2db0
...
...
@@ -6,20 +6,5 @@
SUBDIRS = libcfs portals knals unals router tests doc utils include \
autoconf
sources:
include/libcfs/arch
sources:
$(MAKE) sources -C libcfs
all-recursive: include/libcfs/arch
include/libcfs/arch:
case `uname` in \
Linux) \
ln -s linux include/libcfs/arch \
;; \
Darwin) \
ln -s darwin include/libcfs/arch \
;; \
*) \
echo "Platform `uname` is not supported" \
;; \
esac
This diff is collapsed.
Click to expand it.
lnet/include/libcfs/kp30.h
+
7
−
1
View file @
da5f2db0
...
...
@@ -7,7 +7,13 @@
#define PORTAL_DEBUG
#include
<libcfs/libcfs.h>
#include
<libcfs/arch/kp30.h>
#if defined(__linux__)
#include
<libcfs/linux/kp30.h>
#elif defined(__APPLE__)
#include
<libcfs/darwin/kp30.h>
#else
#error Unsupported operating system
#endif
#ifdef __KERNEL__
...
...
This diff is collapsed.
Click to expand it.
lnet/include/libcfs/libcfs.h
+
9
−
1
View file @
da5f2db0
...
...
@@ -8,7 +8,14 @@
#define __attribute__(x)
#endif
#include
<libcfs/arch/libcfs.h>
#if defined(__linux__)
#include
<libcfs/linux/libcfs.h>
#elif defined(__APPLE__)
#include
<libcfs/darwin/libcfs.h>
#else
#error Unsupported operating system.
#endif
#include
"curproc.h"
#define PORTAL_DEBUG
...
...
@@ -90,6 +97,7 @@ extern unsigned int portal_printk;
#define D_READA 0x00400000
/* read-ahead */
#define D_MMAP 0x00800000
#define D_CONFIG 0x01000000
#define D_CONSOLE 0x02000000
/* If you change these values, please keep these files up to date...
* portals/utils/debug.c
* utils/lconf
...
...
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