1. 09 Apr, 2013 3 commits
  2. 08 Apr, 2013 15 commits
  3. 02 Apr, 2013 1 commit
  4. 28 Mar, 2013 1 commit
    • Arnd Bergmann's avatar
      Merge branch 'prima2/multiplatform' into next/multiplatform · 063ab6da
      Arnd Bergmann authored
      This series enables multiplatform support on the SIRF prima2/marco/atlas6
      platform. The code was already quite tidy, so this is a relatively simple
      change, and it follows similar changes we made to other ARMv7 based
      platforms recently.
      
      * prima2/multiplatform:
        ARM: sirf: enable support in multi_v7_defconfig
        ARM: sirf: enable multiplatform support
        ARM: sirf: use clocksource_of infrastructure
        ARM: sirf: move debug-macro.S to include/debug/sirf.S
        ARM: sirf: enable sparse IRQ
        ARM: sirf: move irq driver to drivers/irqchip
        ARM: sirf: fix prima2 interrupt lookup
        pinctrl: sirf: convert to linear irq domain
        clocksource: make CLOCKSOURCE_OF_DECLARE type safe
        ARM/dts: prima2: add .dtsi for atlas6 and .dts for atla6-evb board
        arm: prima2: add new SiRFatlas6 machine in common board
        ARM: smp_twd: convert to use CLKSRC_OF init
        clocksource: tegra20: use the device_node pointer passed to init
        clocksource: pass DT node pointer to init functions
        clocksource: add empty version of clocksource_of_init
      
      Conflicts:
      	arch/arm/configs/multi_v7_defconfig
      	arch/arm/mach-spear/spear13xx.c
      Tested-by: default avatarBarry Song <Barry.Song@csr.com>
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      063ab6da
  5. 25 Mar, 2013 8 commits
  6. 19 Mar, 2013 4 commits
  7. 18 Mar, 2013 2 commits
  8. 17 Mar, 2013 4 commits
    • Linus Torvalds's avatar
      Linux 3.9-rc3 · a937536b
      Linus Torvalds authored
      a937536b
    • David Rientjes's avatar
      perf,x86: fix link failure for non-Intel configs · 6c4d3bc9
      David Rientjes authored
      Commit 1d9d8639 ("perf,x86: fix kernel crash with PEBS/BTS after
      suspend/resume") introduces a link failure since
      perf_restore_debug_store() is only defined for CONFIG_CPU_SUP_INTEL:
      
      	arch/x86/power/built-in.o: In function `restore_processor_state':
      	(.text+0x45c): undefined reference to `perf_restore_debug_store'
      
      Fix it by defining the dummy function appropriately.
      Signed-off-by: default avatarDavid Rientjes <rientjes@google.com>
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      6c4d3bc9
    • Linus Torvalds's avatar
      perf,x86: fix wrmsr_on_cpu() warning on suspend/resume · 2a6e06b2
      Linus Torvalds authored
      Commit 1d9d8639 ("perf,x86: fix kernel crash with PEBS/BTS after
      suspend/resume") fixed a crash when doing PEBS performance profiling
      after resuming, but in using init_debug_store_on_cpu() to restore the
      DS_AREA mtrr it also resulted in a new WARN_ON() triggering.
      
      init_debug_store_on_cpu() uses "wrmsr_on_cpu()", which in turn uses CPU
      cross-calls to do the MSR update.  Which is not really valid at the
      early resume stage, and the warning is quite reasonable.  Now, it all
      happens to _work_, for the simple reason that smp_call_function_single()
      ends up just doing the call directly on the CPU when the CPU number
      matches, but we really should just do the wrmsr() directly instead.
      
      This duplicates the wrmsr() logic, but hopefully we can just remove the
      wrmsr_on_cpu() version eventually.
      Reported-and-tested-by: default avatarParag Warudkar <parag.lkml@gmail.com>
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      2a6e06b2
    • Linus Torvalds's avatar
      Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs · 08637024
      Linus Torvalds authored
      Pull btrfs fixes from Chris Mason:
       "Eric's rcu barrier patch fixes a long standing problem with our
        unmount code hanging on to devices in workqueue helpers.  Liu Bo
        nailed down a difficult assertion for in-memory extent mappings."
      
      * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs:
        Btrfs: fix warning of free_extent_map
        Btrfs: fix warning when creating snapshots
        Btrfs: return as soon as possible when edquot happens
        Btrfs: return EIO if we have extent tree corruption
        btrfs: use rcu_barrier() to wait for bdev puts at unmount
        Btrfs: remove btrfs_try_spin_lock
        Btrfs: get better concurrency for snapshot-aware defrag work
      08637024
  9. 16 Mar, 2013 2 commits