diff options
author | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2006-08-21 21:37:43 +0200 |
---|---|---|
committer | Thomas Hellstrom <thomas-at-tungstengraphics-dot-com> | 2006-08-21 21:37:43 +0200 |
commit | 8d5b7c77f9b31aa9bcf81536d39769f4f3feeb63 (patch) | |
tree | ef542eb84b4dbfbbac7570e6cbbc9da3970d22e1 | |
parent | e089de33e8efd87b30d59c571b9ab9aa302b23e1 (diff) |
Allow longer sequence lifetimes.
-rw-r--r-- | linux-core/i915_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/i915_drv.c b/linux-core/i915_drv.c index d1b8d2d2..56ac5fc7 100644 --- a/linux-core/i915_drv.c +++ b/linux-core/i915_drv.c @@ -41,7 +41,7 @@ static struct pci_device_id pciidlist[] = { static drm_fence_driver_t i915_fence_driver = { .no_types = 2, .wrap_diff = (1 << 30), - .flush_diff = 200, + .flush_diff = (1 << 29), .sequence_mask = 0xffffffffU, .lazy_capable = 1, .emit = i915_fence_emit_sequence, |