From: Weston Andros Adamson Date: Tue, 23 Oct 2012 14:43:36 +0000 (-0400) Subject: SUNRPC: remove BUG_ON calls from cache_read X-Git-Tag: v3.8-rc1~72^2~78 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0db74d9a2d2b312dd2cff066c5b97b8e626e403a;p=platform%2Fkernel%2Flinux-stable.git SUNRPC: remove BUG_ON calls from cache_read Replace BUG_ON() with WARN_ON_ONCE() in two parts of cache_read(). Signed-off-by: Weston Andros Adamson Signed-off-by: Trond Myklebust --- diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c index fc2f7aa..9afa439 100644 --- a/net/sunrpc/cache.c +++ b/net/sunrpc/cache.c @@ -775,11 +775,11 @@ static ssize_t cache_read(struct file *filp, char __user *buf, size_t count, if (rp->q.list.next == &cd->queue) { spin_unlock(&queue_lock); mutex_unlock(&inode->i_mutex); - BUG_ON(rp->offset); + WARN_ON_ONCE(rp->offset); return 0; } rq = container_of(rp->q.list.next, struct cache_request, q.list); - BUG_ON(rq->q.reader); + WARN_ON_ONCE(rq->q.reader); if (rp->offset == 0) rq->readers++; spin_unlock(&queue_lock);