Tag: c7d1ba417c7cb7297d14dd47a390ec90ce548d5c

block: replace IS_ERR and PTR_ERR with PTR_ERR_OR_ZERO

Author: Duan Jiong <duanj.fnst@cn.fujitsu.com> This patch fixes coccinelle error regarding usage of IS_ERR and PTR_ERR instead of PTR_ERR_OR_ZERO. Signed-off-by: Duan Jiong Signed-off-by: Jens Axboe — block/ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)   diff –git a/block/ioctl.c b/block/ioctl.c index a31d91d9b..7d5c3b2 100644 — a/block/ioctl.c +++ b/block/ioctl.c @@ -64,7 +64,7 @@ static int blkpg_ioctl(struct …

Continue reading