1. 26 10月, 2012 10 次提交
  2. 24 10月, 2012 6 次提交
  3. 23 10月, 2012 20 次提交
  4. 22 10月, 2012 1 次提交
    • D
      Merge tag 'v3.7-rc2' into drm-intel-next-queued · c2fb7916
      Daniel Vetter 提交于
      Linux 3.7-rc2
      
      Backmerge to solve two ugly conflicts:
      - uapi. We've already added new ioctl definitions for -next. Do I need to say more?
      - wc support gtt ptes. We've had to revert this for snb+ for 3.7 and
        also fix a few other things in the code. Now we know how to make it
        work on snb+, but to avoid losing the other fixes do the backmerge
        first before re-enabling wc gtt ptes on snb+.
      
      And a few other minor things, among them git getting confused in
      intel_dp.c and seemingly causing a conflict out of nothing ...
      
      Conflicts:
      	drivers/gpu/drm/i915/i915_reg.h
      	drivers/gpu/drm/i915/intel_display.c
      	drivers/gpu/drm/i915/intel_dp.c
      	drivers/gpu/drm/i915/intel_modes.c
      	include/drm/i915_drm.h
      Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      c2fb7916
  5. 21 10月, 2012 2 次提交
  6. 20 10月, 2012 1 次提交
    • M
      arm64: fix alignment padding in assembly code · aeed41a9
      Marc Zyngier 提交于
      An interesting effect of using the generic version of linkage.h
      is that the padding is defined in terms of x86 NOPs, which can have
      even more interesting effects when the assembly code looks like this:
      
      ENTRY(func1)
      	mov	x0, xzr
      ENDPROC(func1)
      	// fall through
      ENTRY(func2)
      	mov	x0, #1
      	ret
      ENDPROC(func2)
      
      Admittedly, the code is not very nice. But having code from another
      architecture doesn't look completely sane either.
      
      The fix is to add arm64's version of linkage.h, which causes the insertion
      of proper AArch64 NOPs.
      Signed-off-by: NMarc Zyngier <marc.zyngier@arm.com>
      Signed-off-by: NCatalin Marinas <catalin.marinas@arm.com>
      aeed41a9