public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
 messages from 2016-01-08 21:47:26 to 2016-01-11 10:47:06 UTC [more...]

[PATCH 001/190] drm: Release driver references to handle before making it available again
 2016-01-11 10:45 UTC  (120+ messages)
` [PATCH 002/190] drm/i915: Move the mb() following release-mmap into release-mmap
` [PATCH 003/190] drm/i915: Add an optional selection from i915 of CONFIG_MMU_NOTIFIER
` [PATCH 004/190] drm/i915: Fix some invalid requests cancellations
` [PATCH 005/190] drm/i915: Force clean compilation with -Werror
` [PATCH 006/190] drm/i915: Add GEM debugging Kconfig option
` [PATCH 007/190] drm/i915: Hide the atomic_read(reset_counter) behind a helper
` [PATCH 008/190] drm/i915: Simplify checking of GPU reset_counter in display pageflips
` [PATCH 009/190] drm/i915: Tighten reset_counter for reset status
` [PATCH 010/190] drm/i915: Store the reset counter when constructing a request
` [PATCH 011/190] drm/i915: Simplify reset_counter handling during atomic modesetting
` [PATCH 012/190] drm/i915: Prevent leaking of -EIO from i915_wait_request()
` [PATCH 013/190] drm/i915: Suppress error message when GPU resets are disabled
` [PATCH 014/190] drm/i915: Delay queuing hangcheck to wait-request
` [PATCH 015/190] drm/i915: Remove the dedicated hangcheck workqueue
` [PATCH 016/190] drm/i915: Make queueing the hangcheck work inline
` [PATCH 017/190] drm/i915: Remove forcewake dance from seqno/irq barrier on legacy gen6+
` [PATCH 018/190] drm/i915: Slaughter the thundering i915_wait_request herd
` [PATCH 019/190] drm/i915: Separate out the seqno-barrier from engine->get_seqno
` [PATCH 020/190] drm/i915: Remove the lazy_coherency parameter from request-completed?
` [PATCH 021/190] drm/i915: Use HWS for seqno tracking everywhere
` [PATCH 022/190] drm/i915: Check the CPU cached value of seqno after waking the waiter
` [PATCH 023/190] drm/i915: Only apply one barrier after a breadcrumb interrupt is posted
` [PATCH 024/190] drm/i915: Replace manual barrier() with READ_ONCE() in HWS accessor
` [PATCH 025/190] drm/i915: Broadwell execlists needs exactly the same seqno w/a as legacy
` [PATCH 026/190] drm/i915: Stop setting wraparound seqno on initialisation
` [PATCH 027/190] drm/i915: Only query timestamp when measuring elapsed time
` [PATCH 028/190] drm/i915: On GPU reset, set the HWS breadcrumb to the last seqno
` [PATCH 029/190] drm/i915: Convert trace-irq to the breadcrumb waiter
` [PATCH 030/190] drm/i915: Move the get/put irq locking into the caller
` [PATCH 031/190] drm/i915: Harden detection of missed interrupts
` [PATCH 032/190] drm/i915: Remove debug noise on detecting fault-injection "
` [PATCH 033/190] drm/i915: Only start retire worker when idle
` [PATCH 034/190] drm/i915: Do not keep postponing the idle-work
` [PATCH 035/190] drm/i915: Remove redundant queue_delayed_work() from throttle ioctl
` [PATCH 036/190] drm/i915: Restore waitboost credit to the synchronous waiter
` [PATCH 037/190] drm/i915: Add background commentary to "waitboosting"
` [PATCH 038/190] drm/i915: Flush the RPS bottom-half when the GPU idles
` [PATCH 039/190] drm/i915: Remove stop-rings debugfs interface
` [PATCH 040/190] drm/i915: Record the ringbuffer associated with the request
` [PATCH 041/190] drm/i915: Allow userspace to request no-error-capture upon GPU hangs
` [PATCH 042/190] drm/i915: Clean up GPU hang message
` [PATCH 043/190] drm/i915: Skip capturing an error state if we already have one
` [PATCH 044/190] drm/i915: Move GEM request routines to i915_gem_request.c
` [PATCH 045/190] drm/i915: Move releasing of the GEM request from free to retire/cancel
` [PATCH 046/190] drm/i915: Derive GEM requests from dma-fence
` [PATCH 047/190] drm/i915: Rename request reference/unreference to get/put
` [PATCH 048/190] drm/i915: Disable waitboosting for fence_wait()
` [PATCH 049/190] drm/i915: Disable waitboosting for mmioflips/semaphores
` [PATCH 050/190] drm/i915: Refactor duplicate object vmap functions
` [PATCH 051/190] drm,i915: Introduce drm_malloc_gfp()
` [PATCH 052/190] drm/i915: Treat ringbuffer writes as write to normal memory
` [PATCH 053/190] drm/i915: Convert i915_semaphores_is_enabled over to early sanitize
` [PATCH 054/190] drm/i915: Use the new rq->i915 field where appropriate
` [PATCH 055/190] drm/i915: Unify intel_logical_ring_emit and intel_ring_emit
` [PATCH 056/190] drm/i915: Unify intel_ring_begin()
` [PATCH 057/190] drm/i915: Remove the identical implementations of request space reservation
` [PATCH 058/190] drm/i915: Rename request->ring to request->engine
` [PATCH 059/190] drm/i915: Rename request->ringbuf to request->ring
` [PATCH 060/190] drm/i915: Rename backpointer from intel_ringbuffer to intel_engine_cs
` [PATCH 061/190] drm/i915: Rename intel_context[engine].ringbuf
` [PATCH 062/190] drm/i915: Rename extern functions operating on intel_engine_cs
` [PATCH 063/190] drm/i915: Rename struct intel_ringbuffer to intel_ring
` [PATCH 064/190] drm/i915: Rename intel_pin_and_map_ring()
` [PATCH 065/190] drm/i915: Remove obsolete engine->gpu_caches_dirty
` [PATCH 066/190] drm/i915: Simplify request_alloc by returning the allocated request
` [PATCH 067/190] drm/i915: Unify legacy/execlists emission of MI_BATCHBUFFER_START
` [PATCH 068/190] drm/i915: Unify adding requests between ringbuffer and execlists
` [PATCH 069/190] drm/i915: Remove duplicate golden render state init from execlists
` [PATCH 070/190] drm/i915: Unify legacy/execlists submit_execbuf callbacks
` [PATCH 071/190] drm/i915: Simplify calling engine->sync_to
` [PATCH 072/190] drm/i915: Execlists cannot pin a context without the object
` [PATCH 073/190] drm/i915: Introduce i915_gem_active for request tracking
` [PATCH 074/190] drm/i915: Rename request->list to link for consistency
` [PATCH 075/190] drm/i915: Refactor activity tracking for requests
` [PATCH 076/190] drm/i915: Rename vma->*_list to *_link for consistency
` [PATCH 077/190] drm/i915: Amalgamate GGTT/ppGTT vma debug list walkers
` [PATCH 078/190] drm/i915: Split early global GTT initialisation
` [PATCH 079/190] drm/i915: Reduce the pointer dance of i915_is_ggtt()
` [PATCH 080/190] drm/i915: Store owning file on the i915_address_space
` [PATCH 081/190] drm/i915: i915_vma_move_to_active prep patch
` [PATCH 082/190] drm/i915: Count how many VMA are bound for an object
` [PATCH 083/190] drm/i915: Be more careful when unbinding vma
` [PATCH 084/190] drm/i915: Track active vma requests
` [PATCH 085/190] drm/i915: Release vma when the handle is closed
` [PATCH 086/190] drm/i915: Mark the context and address space as closed
` [PATCH 087/190] Revert "drm/i915: Clean up associated VMAs on context destruction"
  ` [PATCH 088/190] drm/i915: Move execlists interrupt based submission to a bottom-half
  ` [PATCH 089/190] drm/i915: Tidy execlists submission and tracking
  ` [PATCH 090/190] drm/i915: Refactor execlists default context pinning
  ` [PATCH 091/190] drm/i915: Move context initialisation to first-use
  ` [PATCH 092/190] drm/i915: Move the magical deferred context allocation into the request
  ` [PATCH 093/190] drm/i915: Move the forced switch back to the kernel context into eviction
  ` [PATCH 094/190] drm/i915: Remove early l3-remap
  ` [PATCH 095/190] drm/i915: Rearrange switch_context to load the aliasing ppgtt on first use
  ` [PATCH 096/190] drm/i915: Eliminate early submission of context enabling request
  ` [PATCH 097/190] drm/i915/shrinker: Flush active on objects before counting
  ` [PATCH 098/190] drm/i915: Double check the active status on the batch pool
  ` [PATCH 099/190] drm/i915: Check for request completion before choosing CS flips
  ` [PATCH 100/190] drm/i915: Remove request retirement before each batch
  ` [PATCH 101/190] drm/i915: Only retire if necessary when creating a userptr
  ` [PATCH 102/190] drm/i915: Move the "per-ring" default_context to the device
  ` [PATCH 103/190] drm/i915: Move pinning of dev_priv->kernel_context into its creator
  ` [PATCH 104/190] drm/i915: Remove i915_gem_execbuffer_retire_commands()
  ` [PATCH 105/190] drm/i915: Pad GTT views of exec objects up to user specified size
  ` [PATCH 106/190] drm/i915: Split insertion/binding of an object into the VM
  ` [PATCH 107/190] drm/i915: Record allocated vma size
  ` [PATCH 108/190] drm/i915: Start passing around i915_vma from execbuffer
  ` [PATCH 109/190] drm/i915: Remove highly confusing i915_gem_obj_ggtt_pin()
  ` [PATCH 110/190] drm/i915: Move vma->pin_count:4 to vma->flags
  ` [PATCH 111/190] drm/i915: Make fb_tracking.lock a spinlock
  ` [PATCH 112/190] drm/i915: Move obj->active:5 to obj->flags
  ` [PATCH 113/190] drm/i915: Enable lockless lookup of request tracking via RCU
  ` [PATCH 114/190] drm/i915: Remove (struct_mutex) locking for wait-ioctl
  ` [PATCH 115/190] drm/i915: Remove (struct_mutex) locking for busy-ioctl
  ` [PATCH 116/190] drm/i915: Reduce locking inside swfinish ioctl
  ` [PATCH 117/190] drm/i915: Remove pinned check from madvise ioctl
  ` [PATCH 118/190] drm/i915: Remove locking for get_tiling
  ` [PATCH 119/190] drm/i915: Reduce amount of duplicate buffer information captured on error
  ` [PATCH 120/190] drm/i915: Stop the machine whilst capturing the GPU crash dump

[PATCH 1/2] drm/i915: Store edram capabilities instead of fixed size
 2016-01-11 10:27 UTC  (6+ messages)
` [PATCH 2/2] drm/i915/gen9: Calculate edram size
` ✗ failure: Fi.CI.BAT
` ✗ warning: Fi.CI.BAT

[PATCH 17/21] drm/shmob: Nuke preclose hook
 2016-01-11 10:20 UTC  (8+ messages)
` [PATCH 1/5] "
  ` [PATCH 2/5] drm/tegra: Stop cancelling page flip events
  ` [PATCH 3/5] drm/tilcdc: Nuke preclose hook
  ` [PATCH 4/5] drm/vc4: "
  ` [PATCH 5/5] drm/vmwgfx: "

[PATCH 0/3] Enabling GuC Loading on Broxton
 2016-01-11 10:13 UTC  (2+ messages)
` ✗ warning: Fi.CI.BAT

[PATCH 1/2] drm/i915: Enable mmio_debug for vlv/chv
 2016-01-11  9:59 UTC  (2+ messages)
` ✗ failure: Fi.CI.BAT

[PATCH v2 00/13] Misc cleanups and locking fixes
 2016-01-11  9:51 UTC  (26+ messages)
` [PATCH 01/13] drm/i915/bdw+: Replace list_del+list_add_tail with list_move_tail
` [PATCH 02/13] drm/i915: Don't need a timer to wake us up
` [PATCH 03/13] drm/i915: Avoid invariant conditionals in lrc interrupt handler
` [PATCH 04/13] drm/i915: Fail engine initialization if LRCA is incorrectly aligned
` [PATCH 05/13] drm/i915: Cache LRCA in the context
` [PATCH 06/13] drm/i915: Only grab timestamps when needed
` [PATCH 07/13] drm/i915: Introduce dedicated object VMA iterator
` [PATCH 09/13] drm/i915: Remove two impossible asserts
` [PATCH 11/13] drm/i915: Cache ringbuffer GTT address
` ✗ failure: Fi.CI.BAT

[PATCH 0/6] Misc cleanups
 2016-01-11  9:27 UTC  (2+ messages)
` ✓ success: Fi.CI.BAT

[PATCH] drm/i915: Init power domains early in driver load
 2016-01-11  9:12 UTC  (2+ messages)
` ✗ failure: Fi.CI.BAT

[PATCH igt] gem_concurrent_blit: Don't call igt_require() outside of a subtest/fixture
 2016-01-11  9:08 UTC  (4+ messages)

[PATCH igt] core/sighelper: Interrupt everyone in the process group
 2016-01-11  9:06 UTC  (4+ messages)

[PATCH 0/7] Explicitly pass crtc_state and plane_state to plane update functions
 2016-01-11  8:53 UTC  (2+ messages)
` ✗ failure: Fi.CI.BAT

[PATCH 0/5] Add encoder_mask to crtc_state, v2
 2016-01-11  8:52 UTC  (2+ messages)
` ✗ warning: Fi.CI.BAT

[PATCH] drm/i915: Support to enable TRTT on GEN9
 2016-01-11  8:49 UTC  (4+ messages)

[PATCH 00/39] GPU scheduler for i915 driver
 2016-01-11  7:47 UTC  (4+ messages)
` [PATCH 02/39] drm/i915: Updating assorted register and status page definitions

[PATCH] drm/i915: Reject invalid-pad for context-destroy ioctl
 2016-01-11  7:34 UTC  (2+ messages)

[PATCH 00/21] drm_event cleanup
 2016-01-11  7:10 UTC  (16+ messages)
` [PATCH 15/21] drm/omap: Nuke close hooks
` [PATCH 16/21] drm/rcar: Nuke preclose hook
` [PATCH 21/21] drm/vmwgfx: "
  ` [PATCH] "

[PATCH 09/21] drm: Clean up pending events in the core
 2016-01-10 23:48 UTC  (3+ messages)
` [PATCH] "

Updated drm-intel-testing
 2016-01-10 23:29 UTC 

Xorg[9132]: segfault at 0 ip 00007fbc84d6fb0d sp 00007ffca3765610 error 4 in intel_drv.so[7fbc84d4d000+18b000]
 2016-01-10 22:45 UTC  (10+ messages)
        ` Intel graphics on Thinkpad T540p is most unsuable now :( (Intel(R) HD Graphics 4600)

[PATCH] Add NULL checking for drawable in sna_dri2_flip_event
 2016-01-10 22:41 UTC  (2+ messages)

i915 Skylake: "Invalid ROM contents"
 2016-01-10 19:12 UTC  (6+ messages)
  ` [Intel-gfx] "

Regression report] Weekly regression report WW45
 2016-01-10  6:11 UTC  (6+ messages)
` [Regression report] Weekly regression report WW46
  ` [Regression report] Weekly regression report WW48
    ` [Regression report] Weekly regression report WW50
      ` [Regression report] Weekly regression report WW51
        ` [Regression report] Weekly regression report WW2

[PATCH 05/21] drm: Create drm_send_event helpers
 2016-01-09 13:28 UTC  (2+ messages)
` [PATCH] "

[PATCH 02/21] drm: Add functions to setup/tear down drm_events
 2016-01-09 13:27 UTC  (2+ messages)
` [PATCH] "

[PATCH] igt/gem_trtt: Exercise the TRTT hardware
 2016-01-09 11:31 UTC 

[PATCH] drm/i915/skl: Use proper plane dimensions for DDB and WM calculations
 2016-01-09  2:09 UTC  (2+ messages)

[PATCH 00/13] Convert requests to use struct fence
 2016-01-09  0:30 UTC  (22+ messages)
` [PATCH 05/13] drm/i915: "
` [PATCH 0/7] "
  ` [PATCH 1/7] drm/i915: "
  ` [PATCH 3/7] drm/i915: Add per context timelines to fence object
  ` [PATCH 4/7] drm/i915: Delay the freeing of requests until retire time
  ` [PATCH 5/7] drm/i915: Interrupt driven fences
  ` [PATCH 6/7] drm/i915: Updated request structure tracing

[PATCH] drm: Release driver references to handle before making it available again
 2016-01-08 23:19 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox