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
0cf90ab5
Commit
0cf90ab5
authored
Dec 22, 2009
by
Sage Weil
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ceph: more informative msgpool errors
Signed-off-by:
Sage Weil
<
sage@newdream.net
>
parent
350b1c32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
fs/ceph/msgpool.c
fs/ceph/msgpool.c
+2
-1
No files found.
fs/ceph/msgpool.c
View file @
0cf90ab5
...
...
@@ -140,7 +140,7 @@ struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool, int front_len)
return
msg
;
}
pr_err
(
"msgpool_get %p now %d/%d, %s
\n
"
,
pool
,
pool
->
num
,
pool
->
min
,
pool
->
blocking
?
"waiting"
:
"
failing
"
);
pool
->
min
,
pool
->
blocking
?
"waiting"
:
"
may fail
"
);
spin_unlock
(
&
pool
->
lock
);
if
(
!
pool
->
blocking
)
{
...
...
@@ -151,6 +151,7 @@ struct ceph_msg *ceph_msgpool_get(struct ceph_msgpool *pool, int front_len)
if
(
!
IS_ERR
(
msg
))
return
msg
;
pr_err
(
"msgpool_get %p empty + alloc failed
\n
"
,
pool
);
return
ERR_PTR
(
-
ENOMEM
);
}
...
...
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