From: Dave Airlie Date: Mon, 29 Mar 2010 11:01:50 +0000 (+0100) Subject: slow-work: use get_ref wrapper instead of directly calling get_ref X-Git-Tag: accepted/tizen/common/20141203.182822~12096 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=88be12c440cfa2fa3f5be83507360aac9ea1c54e;p=platform%2Fkernel%2Flinux-arm64.git slow-work: use get_ref wrapper instead of directly calling get_ref Otherwise we can get an oops if the user has no get_ref/put_ref requirement. Signed-off-by: Dave Airlie Signed-off-by: David Howells Signed-off-by: Linus Torvalds --- diff --git a/kernel/slow-work.c b/kernel/slow-work.c index 7494bbf..7d3f4fa 100644 --- a/kernel/slow-work.c +++ b/kernel/slow-work.c @@ -637,7 +637,7 @@ int delayed_slow_work_enqueue(struct delayed_slow_work *dwork, goto cancelled; /* the timer holds a reference whilst it is pending */ - ret = work->ops->get_ref(work); + ret = slow_work_get_ref(work); if (ret < 0) goto cant_get_ref;