1. 03 Jun, 2010 25 commits
  2. 02 Jun, 2010 9 commits
  3. 01 Jun, 2010 6 commits
    • Linus Torvalds's avatar
      Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc · aef4b9aa
      Linus Torvalds authored
      * 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc:
        powerpc: Don't export cvt_fd & _df when CONFIG_PPC_FPU is not set
        powerpc/44x: icon: select SM502 and frame buffer console support
        powerpc/85xx: Add P1021MDS board support
        powerpc/85xx: Change MPC8572DS camp dtses for MSI sharing
        powerpc/fsl_msi: add removal path and probe failing path
        powerpc/fsl_msi: enable msi sharing through AMP OSes
        powerpc/fsl_msi: enable msi allocation in all banks
        powerpc/fsl_msi: fix the conflict of virt_msir's chip_data
        powerpc/fsl_msi: Add multiple MSI bank support
        powerpc/kexec: Add support for FSL-BookE
        powerpc/fsl-booke: Move the entry setup code into a seperate file
        powerpc/fsl-booke: fix the case where we are not in the first page
        powerpc/85xx: Enable support for ports 3 and 4 on 8548 CDS
        powerpc/fsl-booke: Add hibernation support for FSL BookE processors
        powerpc/e500mc: Implement machine check handler.
        powerpc/44x: Add basic ICON PPC440SPe board support
        powerpc/44x: Fix UART clocks on 440SPe
        powerpc/44x: Add reset-type to katmai.dts
        powerpc/44x: Adding PCI-E support for PowerPC 460SX based SOC.
      aef4b9aa
    • Linus Torvalds's avatar
      Merge branch 'drm-intel-next' of git://git.kernel.org/pub/scm/linux/kernel/git/anholt/drm-intel · 709d015b
      Linus Torvalds authored
      * 'drm-intel-next' of git://git.kernel.org/pub/scm/linux/kernel/git/anholt/drm-intel: (41 commits)
        drm/i915: add HAS_BSD check to i915_getparam
        drm/i915: Honor sync polarity from VBT panel timing descriptors
        drm/i915: Unmask interrupt for render engine on Sandybridge
        drm/i915: Fix PIPE_CONTROL command on Sandybridge
        drm/i915: Fix up address spaces in slow_kernel_write()
        drm/i915: Use non-atomic kmap for slow copy paths
        drm/i915: Avoid moving from CPU domain during pwrite
        drm/i915: Cleanup after failed initialization of ringbuffers
        drm/i915: Reject bind_to_gtt() early if object > aperture
        drm/i915: Check error code whilst moving buffer to GTT domain.
        drm/i915: Remove spurious warning "Failure to install fence"
        drm/i915: Rebind bo if currently bound with incorrect alignment.
        drm/i915: Include pitch in set_base debug statement.
        drm/i915: Only print "nothing to do" debug message as required.
        drm/i915: Propagate error from unbinding an unfenceable object.
        drm/i915: Avoid nesting of domain changes when setting display plane
        drm/i915: Hold the spinlock whilst resetting unpin_work along error path
        drm/i915: Only print an message if there was an error
        drm/i915: Clean up leftover bits from hws move to ring structure.
        drm/i915: Add CxSR support on Pineview DDR3
        ...
      709d015b
    • Dan Carpenter's avatar
      FS-Cache: Remove unneeded null checks · 08a66859
      Dan Carpenter authored
      fscache_write_op() makes unnecessary checks of the page variable to see if it
      is NULL.  It can't be NULL at those points as the kernel would already have
      crashed a little higher up where we examined page->index.
      
      Furthermore, unless radix_tree_gang_lookup_tag() can return 1 but no page, a
      NULL pointer crash should not be encountered there as we can only get there if
      r_t_g_l_t() returned 1.
      Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      08a66859
    • Zou Nan hai's avatar
      drm/i915: add HAS_BSD check to i915_getparam · e3a815fc
      Zou Nan hai authored
      This will let userland only try to use the new media decode
      functionality when the appropriate kernel is present.
      Signed-off-by: default avatarZou Nan hai <nanhai.zou@intel.com>
      Signed-off-by: default avatarEric Anholt <eric@anholt.net>
      e3a815fc
    • Adam Jackson's avatar
      drm/i915: Honor sync polarity from VBT panel timing descriptors · 9bc35499
      Adam Jackson authored
      I'm actually kind of shocked that it works at all otherwise.
      Signed-off-by: default avatarAdam Jackson <ajax@redhat.com>
      Signed-off-by: default avatarEric Anholt <eric@anholt.net>
      9bc35499
    • Jeff Layton's avatar
      cifs: fix page refcount leak · 06b43672
      Jeff Layton authored
      Commit 315e995c is causing OOM kills
      when stress-testing a CIFS filesystem. The VFS readpages operation takes
      a page reference. The older code just handed this reference off to the
      page cache, but the new code takes an extra one. The simplest fix is to
      put the new reference after add_to_page_cache_lru.
      Signed-off-by: default avatarJeff Layton <jlayton@redhat.com>
      Acked-by: default avatarNick Piggin <npiggin@suse.de>
      Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
      06b43672