diff options
| author | Linux Build Service Account <lnxbuild@quicinc.com> | 2017-07-11 09:17:35 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-07-11 09:17:35 -0700 |
| commit | cd7893663a99c4d62a4c9e1823c72c367238d021 (patch) | |
| tree | 27c4d852295bcd389240cee11cf055e8055313bd | |
| parent | 04102f12e1a7f57c36faea24fbdd9fbbe79e631e (diff) | |
| parent | 54812d339b9a62be48d12ee5136c34882e8c2e8c (diff) | |
Merge "staging: android: sync: fix list corruption in fence struct"
| -rw-r--r-- | drivers/staging/android/sync_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/android/sync_debug.c b/drivers/staging/android/sync_debug.c index aaa96c3df45b..5fbd3766b981 100644 --- a/drivers/staging/android/sync_debug.c +++ b/drivers/staging/android/sync_debug.c @@ -87,7 +87,7 @@ static void sync_print_pt(struct seq_file *s, struct sync_pt *pt, bool fence) int status = 1; struct sync_timeline *parent = sync_pt_parent(pt); - if (fence_is_signaled_locked(&pt->base)) + if (test_bit(FENCE_FLAG_SIGNALED_BIT, &pt->base.flags)) status = pt->base.status; seq_printf(s, " %s%spt %s", |
