Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
a0fe0515
Commit
a0fe0515
authored
Aug 15, 2016
by
Martin Brandenburg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
orangefs: make devreq_mutex static
Signed-off-by:
Martin Brandenburg
<
martin@omnibond.com
>
parent
c27889cd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
fs/orangefs/devorangefs-req.c
fs/orangefs/devorangefs-req.c
+2
-0
fs/orangefs/orangefs-kernel.h
fs/orangefs/orangefs-kernel.h
+0
-1
fs/orangefs/orangefs-mod.c
fs/orangefs/orangefs-mod.c
+0
-3
No files found.
fs/orangefs/devorangefs-req.c
View file @
a0fe0515
...
...
@@ -20,6 +20,8 @@
static
int
open_access_count
;
static
DEFINE_MUTEX
(
devreq_mutex
);
#define DUMP_DEVICE_ERROR() \
do { \
gossip_err("*****************************************************\n");\
...
...
fs/orangefs/orangefs-kernel.h
View file @
a0fe0515
...
...
@@ -510,7 +510,6 @@ bool orangefs_cancel_op_in_progress(struct orangefs_kernel_op_s *op);
int
orangefs_normalize_to_errno
(
__s32
error_code
);
extern
struct
mutex
devreq_mutex
;
extern
struct
mutex
request_mutex
;
extern
int
debug
;
extern
int
op_timeout_secs
;
...
...
fs/orangefs/orangefs-mod.c
View file @
a0fe0515
...
...
@@ -54,9 +54,6 @@ module_param(module_parm_debug_mask, ulong, 0644);
module_param
(
op_timeout_secs
,
int
,
0
);
module_param
(
slot_timeout_secs
,
int
,
0
);
/* synchronizes the request device file */
DEFINE_MUTEX
(
devreq_mutex
);
/*
* Blocks non-priority requests from being queued for servicing. This
* could be used for protecting the request list data structure, but
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment