Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 363277
b: refs/heads/master
c: 7560645
h: refs/heads/master
i:
  363275: e961e19
v: v3
  • Loading branch information
Erik Gilling authored and Greg Kroah-Hartman committed Mar 4, 2013
1 parent 4454400 commit 13cf1ec
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 1d5db2ce93089db91d7997927b4cfd92a88c5aad
refs/heads/master: 7560645406b8341ab74644b505297e3e32fa6f3a
5 changes: 4 additions & 1 deletion trunk/drivers/staging/android/sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,11 @@ int sync_fence_wait(struct sync_fence *fence, long timeout)
if (err < 0)
return err;

if (fence->status < 0)
if (fence->status < 0) {
pr_info("fence error %d on [%p]\n", fence->status, fence);
sync_dump();
return fence->status;
}

if (fence->status == 0) {
pr_info("fence timeout on [%p] after %dms\n", fence,
Expand Down

0 comments on commit 13cf1ec

Please sign in to comment.