Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
OpenBMC Firmware
talos-obmc-linux
Commits
0cf90ab5
Commit
0cf90ab5
authored
15 years ago
by
Sage Weil
Browse files
Options
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"
:
"fail
ing
"
);
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
);
}
...
...
This diff is collapsed.
Click to expand it.
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