Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 41162
b: refs/heads/master
c: 93e06b4
h: refs/heads/master
v: v3
  • Loading branch information
Eric Sesterhenn authored and Adrian Bunk committed Nov 30, 2006
1 parent 6bb383e commit 93be202
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 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: d99c5909859625f3c9c6dfee6caa3b2a7c0ef163
refs/heads/master: 93e06b4140cc018826bce4d97b0bf7c9ba05ae6e
6 changes: 2 additions & 4 deletions trunk/fs/aio.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,7 @@ void fastcall __put_ioctx(struct kioctx *ctx)
{
unsigned nr_events = ctx->max_reqs;

if (unlikely(ctx->reqs_active))
BUG();
BUG_ON(ctx->reqs_active);

cancel_delayed_work(&ctx->wq);
flush_workqueue(aio_wq);
Expand Down Expand Up @@ -505,8 +504,7 @@ static int __aio_put_req(struct kioctx *ctx, struct kiocb *req)
assert_spin_locked(&ctx->ctx_lock);

req->ki_users --;
if (unlikely(req->ki_users < 0))
BUG();
BUG_ON(req->ki_users < 0);
if (likely(req->ki_users))
return 0;
list_del(&req->ki_list); /* remove from active_reqs */
Expand Down

0 comments on commit 93be202

Please sign in to comment.