1. 06 Sep, 2012 8 commits
  2. 05 Sep, 2012 18 commits
  3. 28 Aug, 2012 10 commits
  4. 27 Aug, 2012 3 commits
    • Robert Richter's avatar
      oprofile: Remove 'WQ on CPUx, prefer CPUy' warning · 61bccf19
      Robert Richter authored
      Under certain workloads we see the following warnings:
      
       WQ on CPU0, prefer CPU1
       WQ on CPU0, prefer CPU2
       WQ on CPU0, prefer CPU3
      
      It warns the user that the wq to access a per-cpu buffers runs not on
      the same cpu. This happens if the wq is rescheduled on a different cpu
      than where the buffer is located. This was probably implemented to
      detect performance issues. Not sure if there actually is one as the
      buffers are copied to a single buffer anyway which should be the
      actual bottleneck.
      
      We wont change WQ implementation. Since a user can do nothing the
      warning is pointless. Removing it.
      
      Cc: Andi Kleen <andi@firstfloor.org>
      Signed-off-by: default avatarRobert Richter <robert.richter@amd.com>
      61bccf19
    • Robert Richter's avatar
      oprofile, s390: Fix uninitialized memory access when writing to oprofilefs · 81ff3478
      Robert Richter authored
      If oprofilefs_ulong_from_user() is called with count equals zero, *val
      remains unchanged. Depending on the implementation it might be
      uninitialized. Fixing users of oprofilefs_ulong_ from_user().
      
      We missed these s390 changes with:
      
       913050b9 oprofile: Fix uninitialized memory access when writing to writing to oprofilefs
      
      Cc: stable@vger.kernel.org  # 3.3+
      Signed-off-by: default avatarRobert Richter <robert.richter@amd.com>
      81ff3478
    • Stephane Eranian's avatar
      perf/x86: Fix microcode revision check for SNB-PEBS · e3e45c01
      Stephane Eranian authored
      The following patch makes the microcode update code path
      actually invoke the perf_check_microcode() function and
      thus potentially renabling SNB PEBS.
      
      By default, CONFIG_MICROCODE_OLD_INTERFACE is
      forced to Y in arch/x86/Kconfig. There is no
      way to disable this. That means that the code
      path used in arch/x86/kernel/microcode_core.c
      did not include the call to perf_check_microcode().
      
      Thus, even though the microcode was updated to a
      version that fixes the SNB PEBS problem, perf_event
      would still return EOPNOTSUPP when enabling precise
      sampling.
      
      This patch simply adds a call to perf_check_microcode()
      in the call path used when OLD_INTERFACE=y.
      Signed-off-by: default avatarStephane Eranian <eranian@google.com>
      Acked-by: default avatarBorislav Petkov <borislav.petkov@amd.com>
      Cc: peterz@infradead.org
      Cc: andi@firstfloor.org
      Link: http://lkml.kernel.org/r/20120824133434.GA8014@quadSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
      e3e45c01
  5. 26 Aug, 2012 1 commit
    • Linus Torvalds's avatar
      Merge tag 'fixes-3.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc · 9acb1725
      Linus Torvalds authored
      Pull arm-soc fixes from Arnd Bergmann:
       "Bug fixes for various ARM platforms.  About half of these are for OMAP
        and submitted before but did not make it into v3.6-rc2."
      
      * tag 'fixes-3.6-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (39 commits)
        ARM: ux500: don't select LEDS_GPIO for snowball
        ARM: imx: build i.MX6 functions only when needed
        ARM: imx: select CPU_FREQ_TABLE when needed
        ARM: imx: fix ksz9021rn_phy_fixup
        ARM: imx: build pm-imx5 code only when PM is enabled
        ARM: omap: allow building omap44xx without SMP
        ARM: dts: imx51-babbage: fix esdhc cd/wp properties
        ARM: imx6: spin the cpu until hardware takes it down
        ARM: ux500: Ensure probing of Audio devices when Device Tree is enabled
        ARM: ux500: Fix merge error, no matching driver name for 'snd_soc_u8500'
        ARM i.MX6q: Add virtual 1/3.5 dividers in the LDB clock path
        ARM: Kirkwood: fix Makefile.boot
        ARM: Kirkwood: Fix iconnect leds
        ARM: Orion: Set eth packet size csum offload limit
        ARM: mv78xx0: fix win_cfg_base prototype
        ARM: OMAP: dmtimers: Fix locking issue in omap_dm_timer_request*()
        ARM: mmp: fix potential NULL dereference
        ARM: OMAP4: Register the OPP table only for 4430 device
        cpufreq: OMAP: Handle missing frequency table on SMP systems
        ARM: OMAP4: sleep: Save the complete used register stack frame
        ...
      9acb1725