Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 362162
b: refs/heads/master
c: 94f9852
h: refs/heads/master
v: v3
  • Loading branch information
Wei Yongjun authored and Martin Schwidefsky committed Mar 21, 2013
1 parent 0f46eec commit 630dd60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3bff6038f1938d2541943dfde604a9b92f347650
refs/heads/master: 94f9852de86447088e8e3c12d8b5a8f996acee32
7 changes: 5 additions & 2 deletions trunk/drivers/s390/block/scm_blk.c
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,15 @@ static int __init scm_blk_init(void)
goto out;

scm_major = ret;
if (scm_alloc_rqs(nr_requests))
ret = scm_alloc_rqs(nr_requests);
if (ret)
goto out_unreg;

scm_debug = debug_register("scm_log", 16, 1, 16);
if (!scm_debug)
if (!scm_debug) {
ret = -ENOMEM;
goto out_free;
}

debug_register_view(scm_debug, &debug_hex_ascii_view);
debug_set_level(scm_debug, 2);
Expand Down

0 comments on commit 630dd60

Please sign in to comment.