diff options
author | Ian Romanick <idr@us.ibm.com> | 2007-08-31 10:48:13 -0700 |
---|---|---|
committer | Ian Romanick <idr@us.ibm.com> | 2007-08-31 10:48:13 -0700 |
commit | bb3da88601749cd647632eed86fb57dfd7cb81ee (patch) | |
tree | f2720c2cb5ec4a55cd43dbfdf507a86a0a4ca381 | |
parent | 9c5b9d458bc618fb9d7d8590c866655e92f9cb0b (diff) |
Acutally emit the IRQ (duh) when setting the fence post.
-rw-r--r-- | linux-core/xgi_fence.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linux-core/xgi_fence.c b/linux-core/xgi_fence.c index 42ed814d..adedf300 100644 --- a/linux-core/xgi_fence.c +++ b/linux-core/xgi_fence.c @@ -87,7 +87,9 @@ int xgi_fence_emit_sequence(struct drm_device * dev, uint32_t class, info->next_sequence = 1; } DRM_SPINUNLOCK(&info->fence_lock); - + + + xgi_emit_irq(info); *sequence = (uint32_t) info->next_sequence; *native_type = DRM_FENCE_TYPE_EXE; |