Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 100397
b: refs/heads/master
c: b7e3e1f
h: refs/heads/master
i:
  100395: 200212c
v: v3
  • Loading branch information
Jonathan Corbet committed Jul 2, 2008
1 parent fe24865 commit 4b4d2ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: 9465efc9e96135a2cec8154c0c766fa59984a298
refs/heads/master: b7e3e1fbf69d1b6abfd337460ea17d7230e3a6e5
6 changes: 5 additions & 1 deletion trunk/drivers/message/fusion/mptctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -548,11 +548,15 @@ static int
mptctl_fasync(int fd, struct file *filep, int mode)
{
MPT_ADAPTER *ioc;
int ret;

lock_kernel();
list_for_each_entry(ioc, &ioc_list, list)
ioc->aen_event_read_flag=0;

return fasync_helper(fd, filep, mode, &async_queue);
ret = fasync_helper(fd, filep, mode, &async_queue);
unlock_kernel();
return ret;
}

static int
Expand Down

0 comments on commit 4b4d2ce

Please sign in to comment.