projects
/
kernel
/
kernel-generic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
97597dc
)
block: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO
author
Duan Jiong
<duanj.fnst@cn.fujitsu.com>
Wed, 6 Nov 2013 07:55:44 +0000
(15:55 +0800)
committer
Jens Axboe
<axboe@kernel.dk>
Fri, 8 Nov 2013 16:05:30 +0000
(09:05 -0700)
This patch fixes coccinelle error regarding usage of IS_ERR and
PTR_ERR instead of PTR_ERR_OR_ZERO.
Signed-off-by: Duan Jiong <duanj.fnst@cn.fujitsu.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-timeout.c
patch
|
blob
|
history
diff --git
a/block/blk-timeout.c
b/block/blk-timeout.c
index
655ba90
..
abf725c
100644
(file)
--- a/
block/blk-timeout.c
+++ b/
block/blk-timeout.c
@@
-31,7
+31,7
@@
static int __init fail_io_timeout_debugfs(void)
struct dentry *dir = fault_create_debugfs_attr("fail_io_timeout",
NULL, &fail_io_timeout);
- return
IS_ERR(dir) ? PTR_ERR(dir) : 0
;
+ return
PTR_ERR_OR_ZERO(dir)
;
}
late_initcall(fail_io_timeout_debugfs);