14 May, 2013

28 commits

  • Pull powerpc fixes from Benjamin Herrenschmidt:
    "This is mostly bug fixes (some of them regressions, some of them I
    deemed worth merging now) along with some patches from Li Zhong
    hooking up the new context tracking stuff (for the new full NO_HZ)"

    * 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc: (25 commits)
    powerpc: Set show_unhandled_signals to 1 by default
    powerpc/perf: Fix setting of "to" addresses for BHRB
    powerpc/pmu: Fix order of interpreting BHRB target entries
    powerpc/perf: Move BHRB code into CONFIG_PPC64 region
    powerpc: select HAVE_CONTEXT_TRACKING for pSeries
    powerpc: Use the new schedule_user API on userspace preemption
    powerpc: Exit user context on notify resume
    powerpc: Exception hooks for context tracking subsystem
    powerpc: Syscall hooks for context tracking subsystem
    powerpc/booke64: Fix kernel hangs at kernel_dbg_exc
    powerpc: Fix irq_set_affinity() return values
    powerpc: Provide __bswapdi2
    powerpc/powernv: Fix starting of secondary CPUs on OPALv2 and v3
    powerpc/powernv: Detect OPAL v3 API version
    powerpc: Fix MAX_STACK_TRACE_ENTRIES too low warning again
    powerpc: Make CONFIG_RTAS_PROC depend on CONFIG_PROC_FS
    powerpc: Bring all threads online prior to migration/hibernation
    powerpc/rtas_flash: Fix validate_flash buffer overflow issue
    powerpc/kexec: Fix kexec when using VMX optimised memcpy
    powerpc: Fix build errors STRICT_MM_TYPECHECKS
    ...

    Linus Torvalds
     
  • Just like other architectures

    Signed-off-by: Benjamin Herrenschmidt

    Benjamin Herrenschmidt
     
  • Currently we only set the "to" address in the branch stack when the CPU
    explicitly gives us a value. Unfortunately it only does this for XL form
    branches (eg blr, bctr, bctar) and not I and B form branches (eg b, bc).

    Fortunately if we read the instruction from memory we can extract the offset of
    a branch and calculate the target address.

    This adds a function power_pmu_bhrb_to() to calculate the target/to address of
    the corresponding I and B form branches. It handles branches in both user and
    kernel spaces. It also plumbs this into the perf brhb reading code.

    Signed-off-by: Michael Neuling
    Signed-off-by: Benjamin Herrenschmidt

    Michael Neuling
     
  • The current Branch History Rolling Buffer (BHRB) code misinterprets the order
    of entries in the hardware buffer. It assumes that a branch target address
    will be read _after_ its corresponding branch. In reality the branch target
    comes before (lower mfbhrb entry) it's corresponding branch.

    This is a rewrite of the code to take this into account.

    Signed-off-by: Michael Neuling
    Signed-off-by: Benjamin Herrenschmidt

    Michael Neuling
     
  • The new Branch History Rolling buffer (BHRB) code is only useful on 64bit
    processors, so move it into the #ifdef CONFIG_PPC64 region.

    This avoids code bloat on 32bit systems.

    Signed-off-by: Michael Neuling
    Signed-off-by: Benjamin Herrenschmidt

    Michael Neuling
     
  • Start context tracking support from pSeries.

    Signed-off-by: Li Zhong
    Signed-off-by: Benjamin Herrenschmidt

    Li Zhong
     
  • This patch corresponds to
    [PATCH] x86: Use the new schedule_user API on userspace preemption
    commit 0430499ce9d78691f3985962021b16bf8f8a8048

    Signed-off-by: Li Zhong
    Signed-off-by: Benjamin Herrenschmidt

    Li Zhong
     
  • This patch allows RCU usage in do_notify_resume, e.g. signal handling.
    It corresponds to
    [PATCH] x86: Exit RCU extended QS on notify resume
    commit edf55fda35c7dc7f2d9241c3abaddaf759b457c6

    Signed-off-by: Li Zhong
    Signed-off-by: Benjamin Herrenschmidt

    Li Zhong
     
  • This is the exception hooks for context tracking subsystem, including
    data access, program check, single step, instruction breakpoint, machine check,
    alignment, fp unavailable, altivec assist, unknown exception, whose handlers
    might use RCU.

    This patch corresponds to
    [PATCH] x86: Exception hooks for userspace RCU extended QS
    commit 6ba3c97a38803883c2eee489505796cb0a727122

    But after the exception handling moved to generic code, and some changes in
    following two commits:
    56dd9470d7c8734f055da2a6bac553caf4a468eb
    context_tracking: Move exception handling to generic code
    6c1e0256fad84a843d915414e4b5973b7443d48d
    context_tracking: Restore correct previous context state on exception exit

    it is able for exception hooks to use the generic code above instead of a
    redundant arch implementation.

    Signed-off-by: Li Zhong
    Signed-off-by: Benjamin Herrenschmidt

    Li Zhong
     
  • This is the syscall slow path hooks for context tracking subsystem,
    corresponding to
    [PATCH] x86: Syscall hooks for userspace RCU extended QS
    commit bf5a3c13b939813d28ce26c01425054c740d6731

    TIF_MEMDIE is moved to the second 16-bits (with value 17), as it seems there
    is no asm code using it. TIF_NOHZ is added to _TIF_SYCALL_T_OR_A, so it is
    better for it to be in the same 16 bits with others in the group, so in the
    asm code, andi. with this group could work.

    Signed-off-by: Li Zhong
    Acked-by: Frederic Weisbecker
    Signed-off-by: Benjamin Herrenschmidt

    Li Zhong
     
  • MSR_DE is not cleared on entry to the kernel, and we don't clear it
    explicitly outside of debug code. If we have MSR_DE set in
    prime_debug_regs(), and the new thread has events enabled in DBCR0
    (e.g. ICMP is set in thread->dbsr0, even though it was cleared in the
    real DBCR0 when the thread got scheduled out), we'll end up taking a
    debug exception in the kernel when DBCR0 is loaded. DSRR0 will not
    point to an exception vector, and the kernel ends up hanging at
    kernel_dbg_exc. Fix this by always clearing MSR_DE when we load new
    debug state.

    Another observed source of kernel_dbg_exc hangs is with the branch
    taken event. If this event is active, but we take a non-debug trap
    (e.g. a TLB miss or an asynchronous interrupt) before the next branch.
    We end up taking a branch-taken debug exception on the initial branch
    instruction of the exception vector, but because the debug exception is
    DBSR_BT rather than DBSR_IC we branch to kernel_dbg_exc before even
    checking the DSRR0 address. Fix this by checking for DBSR_BT as well
    as DBSR_IC, which is what 32-bit does and what the comments suggest was
    intended in the 64-bit code as well.

    Signed-off-by: Scott Wood
    Signed-off-by: Benjamin Herrenschmidt

    Scott Wood
     
  • Signed-off-by: Alexander Gordeev
    Signed-off-by: Benjamin Herrenschmidt

    Alexander Gordeev
     
  • Some versions of GCC apparently expect this to be provided by libgcc.

    Updates from Mikey to fix 32 bit version and adding "r" to registers.

    Signed-off-by: David Woodhouse
    Signed-off-by: Michael Neuling
    Signed-off-by: Benjamin Herrenschmidt

    David Woodhouse
     
  • The current code fails to handle kexec on OPALv2. This fixes it
    and adds code to improve the situation on OPALv3 where we can
    query the CPU status from the firmware and decide what to do
    based on that.

    Signed-off-by: Benjamin Herrenschmidt

    Benjamin Herrenschmidt
     
  • Future firmwares will support that new version

    Signed-off-by: Benjamin Herrenschmidt

    Benjamin Herrenschmidt
     
  • Saw this warning again, and this time from the ret_from_fork path.

    It seems we could clear the back chain earlier in copy_thread(), which
    could cover both path, and also fix potential lockdep usage in
    schedule_tail(), or exception occurred before we clear the back chain.

    Signed-off-by: Li Zhong
    Signed-off-by: Benjamin Herrenschmidt

    Li Zhong
     
  • We are getting build errors with CONFIG_PROC_FS=n:

    arch/powerpc/kernel/rtas_flash.c
    In function 'rtas_flash_init':
    745:33: error: unused variable 'f' [-Werror=unused-variable]

    But rtas_flash.c should not be built when CONFIG_PROC_FS=n, beacause all
    it does is provide a /proc interface to the RTAS flash routines.

    CONFIG_RTAS_FLASH already depends on CONFIG_RTAS_PROC, to indicate that
    it depends on the RTAS proc support, but CONFIG_RTAS_PROC does not
    depend on CONFIG_PROC_FS. So fix that.

    Signed-off-by: Michael Ellerman
    Signed-off-by: Benjamin Herrenschmidt

    Michael Ellerman
     
  • This patch brings online all threads which are present but not online
    prior to migration/hibernation. After migration/hibernation those
    threads are taken back offline.

    During migration/hibernation all online CPUs must call H_JOIN, this is
    required by the hypervisor. Without this patch, threads that are offline
    (H_CEDE'd) will not be woken to make the H_JOIN call and the OS will be
    deadlocked (all threads either JOIN'd or CEDE'd).

    Cc:
    Signed-off-by: Robert Jennings
    Signed-off-by: Benjamin Herrenschmidt

    Robert Jennings
     
  • ibm,validate-flash-image RTAS call output buffer contains 150 - 200
    bytes of data on latest system. Presently we have output
    buffer size as 64 bytes and we use sprintf to copy data from
    RTAS buffer to local buffer. This causes kernel oops (see below
    call trace).

    This patch increases local buffer size to 256 and also uses
    snprintf instead of sprintf to copy data from RTAS buffer.

    Kernel call trace :
    -------------------
    Oops: Kernel access of bad area, sig: 11 [#1]
    SMP NR_CPUS=1024 NUMA pSeries
    Modules linked in: nfs fscache lockd auth_rpcgss nfs_acl sunrpc fuse loop dm_mod ipv6 ipv6_lib usb_storage ehea(X) sr_mod qlge ses cdrom enclosure st be2net sg ext3 jbd mbcache usbhid hid ohci_hcd ehci_hcd usbcore qla2xxx usb_common sd_mod crc_t10dif scsi_dh_hp_sw scsi_dh_rdac scsi_dh_alua scsi_dh_emc scsi_dh lpfc scsi_transport_fc scsi_tgt ipr(X) libata scsi_mod
    Supported: Yes
    NIP: 4520323031333130 LR: 4520323031333130 CTR: 0000000000000000
    REGS: c0000001b91779b0 TRAP: 0400 Tainted: G X (3.0.13-0.27-ppc64)
    MSR: 8000000040009032 CR: 44022488 XER: 20000018
    TASK = c0000001bca1aba0[4736] 'cat' THREAD: c0000001b9174000 CPU: 36
    GPR00: 4520323031333130 c0000001b9177c30 c000000000f87c98 000000000000009b
    GPR04: c0000001b9177c4a 000000000000000b 3520323031333130 2032303133313031
    GPR08: 3133313031350a4d 000000000000009b 0000000000000000 c0000000003664a4
    GPR12: 0000000022022448 c000000003ee6c00 0000000000000002 00000000100e8a90
    GPR16: 00000000100cb9d8 0000000010093370 000000001001d310 0000000000000000
    GPR20: 0000000000008000 00000000100fae60 000000000000005e 0000000000000000
    GPR24: 0000000010129350 46573738302e3030 2046573738302e30 300a4d4720323031
    GPR28: 333130313520554e 4b4e4f574e0a4d47 2032303133313031 3520323031333130
    NIP [4520323031333130] 0x4520323031333130
    LR [4520323031333130] 0x4520323031333130
    Call Trace:
    [c0000001b9177c30] [4520323031333130] 0x4520323031333130 (unreliable)
    Instruction dump:
    XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX
    XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX

    Signed-off-by: Vasant Hegde
    Signed-off-by: Benjamin Herrenschmidt

    Vasant Hegde
     
  • commit b3f271e86e5a (powerpc: POWER7 optimised memcpy using VMX and
    enhanced prefetch) uses VMX when it is safe to do so (ie not in
    interrupt). It also looks at the task struct to decide if we have to
    save the current tasks' VMX state.

    kexec calls memcpy() at a point where the task struct may have been
    overwritten by the new kexec segments. If it has been overwritten
    then when memcpy -> enable_altivec looks up current->thread.regs->msr
    we get a cryptic oops or lockup.

    I also notice we aren't initialising thread_info->cpu, which means
    smp_processor_id is broken. Fix that too.

    Signed-off-by: Anton Blanchard
    Cc: # 3.6+
    Signed-off-by: Benjamin Herrenschmidt

    Anton Blanchard
     
  • Signed-off-by: Aneesh Kumar K.V
    Signed-off-by: Benjamin Herrenschmidt

    Aneesh Kumar K.V
     
  • Our pgtable are 2*sizeof(pte_t)*PTRS_PER_PTE which is PTE_FRAG_SIZE.
    Instead of depending on frag size, mask with PMD_MASKED_BITS.

    Signed-off-by: Aneesh Kumar K.V
    Signed-off-by: Benjamin Herrenschmidt

    Aneesh Kumar K.V
     
  • Pull Xen/arm fixes from Stefano Stabellini:
    "This contains a couple of Xen on ARM initialization fixes and a patch
    to improve error handling"

    * tag 'fixes-for-3.10-rc2-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/sstabellini/xen:
    xen/arm: rename xen_secondary_init and run it on every online cpu
    xen/arm: do not handle VCPUOP_register_vcpu_info failures
    xen/arm: initialize pm functions later

    Linus Torvalds
     
  • Pull parisc update from Helge Deller:
    "The second round of parisc updates for 3.10 includes build fixes and
    enhancements to utilize irq stacks, fixes SMP races when updating PTE
    and TLB entries by proper locking and makes the search for the correct
    cross compiler more robust on Debian and Gentoo."

    * 'parisc-for-3.10' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux:
    parisc: make default cross compiler search more robust (v3)
    parisc: fix SMP races when updating PTE and TLB entries in entry.S
    parisc: implement irq stacks - part 2 (v2)

    Linus Torvalds
     
  • People/distros vary how they prefix the toolchain name for 64bit builds.
    Rather than enforce one convention over another, add a for loop which
    does a search for all the general prefixes.

    For 64bit builds, we now search for (in order):
    hppa64-unknown-linux-gnu
    hppa64-linux-gnu
    hppa64-linux

    For 32bit builds, we look for:
    hppa-unknown-linux-gnu
    hppa-linux-gnu
    hppa-linux
    hppa2.0-unknown-linux-gnu
    hppa2.0-linux-gnu
    hppa2.0-linux
    hppa1.1-unknown-linux-gnu
    hppa1.1-linux-gnu
    hppa1.1-linux

    This patch was initiated by Mike Frysinger, with feedback from Jeroen
    Roovers, John David Anglin and Helge Deller.

    Signed-off-by: Mike Frysinger
    Signed-off-by: Jeroen Roovers
    Signed-off-by: John David Anglin
    Signed-off-by: Helge Deller

    Helge Deller
     
  • Rename xen_secondary_init to xen_percpu_init.
    Run xen_percpu_init on the each online cpu, reuse the current on_each_cpu call.
    Merge xen_percpu_enable_events into xen_percpu_init.

    Signed-off-by: Stefano Stabellini

    Stefano Stabellini
     
  • We expect VCPUOP_register_vcpu_info to succeed, do not try to handle
    failures.

    Signed-off-by: Stefano Stabellini
    Acked-by: Ian Campbell

    Stefano Stabellini
     
  • If we are running in dom0, we have to wait for the arch specific code to
    complete the initialization in order for us to successfully reset the
    power_off and pm_restart functions.

    Signed-off-by: Stefano Stabellini

    Stefano Stabellini
     

12 May, 2013

5 commits

  • …nux/kernel/git/konrad/xen

    Pull Xen bug-fixes from Konrad Rzeszutek Wilk:
    - More fixes in the vCPU PVHVM hotplug path.
    - Add more documentation.
    - Fix various ARM related issues in the Xen generic drivers.
    - Updates in the xen-pciback driver per Bjorn's updates.
    - Mask the x2APIC feature for PV guests.

    * tag 'stable/for-linus-3.10-rc0-tag-two' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen:
    xen/pci: Used cached MSI-X capability offset
    xen/pci: Use PCI_MSIX_TABLE_BIR, not PCI_MSIX_FLAGS_BIRMASK
    xen: clear IRQ_NOAUTOEN and IRQ_NOREQUEST
    xen: mask x2APIC feature in PV
    xen: SWIOTLB is only used on x86
    xen/spinlock: Fix check from greater than to be also be greater or equal to.
    xen/smp/pvhvm: Don't point per_cpu(xen_vpcu, 33 and larger) to shared_info
    xen/vcpu: Document the xen_vcpu_info and xen_vcpu
    xen/vcpu/pvhvm: Fix vcpu hotplugging hanging.

    Linus Torvalds
     
  • Pull idle update from Len Brown:
    "Add support for new Haswell-ULT CPU idle power states"

    * 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux:
    intel_idle: initial C8, C9, C10 support
    tools/power turbostat: display C8, C9, C10 residency

    Linus Torvalds
     
  • Pull audit changes from Eric Paris:
    "Al used to send pull requests every couple of years but he told me to
    just start pushing them to you directly.

    Our touching outside of core audit code is pretty straight forward. A
    couple of interface changes which hit net/. A simple argument bug
    calling audit functions in namei.c and the removal of some assembly
    branch prediction code on ppc"

    * git://git.infradead.org/users/eparis/audit: (31 commits)
    audit: fix message spacing printing auid
    Revert "audit: move kaudit thread start from auditd registration to kaudit init"
    audit: vfs: fix audit_inode call in O_CREAT case of do_last
    audit: Make testing for a valid loginuid explicit.
    audit: fix event coverage of AUDIT_ANOM_LINK
    audit: use spin_lock in audit_receive_msg to process tty logging
    audit: do not needlessly take a lock in tty_audit_exit
    audit: do not needlessly take a spinlock in copy_signal
    audit: add an option to control logging of passwords with pam_tty_audit
    audit: use spin_lock_irqsave/restore in audit tty code
    helper for some session id stuff
    audit: use a consistent audit helper to log lsm information
    audit: push loginuid and sessionid processing down
    audit: stop pushing loginid, uid, sessionid as arguments
    audit: remove the old depricated kernel interface
    audit: make validity checking generic
    audit: allow checking the type of audit message in the user filter
    audit: fix build break when AUDIT_DEBUG == 2
    audit: remove duplicate export of audit_enabled
    Audit: do not print error when LSMs disabled
    ...

    Linus Torvalds
     
  • Currently, race conditions exist in the handling of TLB interruptions in
    entry.S. In particular, dirty bit updates can be lost if an accessed
    interruption occurs just after the dirty bit interruption on a different
    cpu. Lost dirty bit updates result in user pages not being flushed and
    general system instability. This change adds lock and unlock macros to
    synchronize all PTE and TLB updates done in entry.S. As a result,
    userspace stability is significantly improved.

    Signed-off-by: John David Anglin
    Signed-off-by: Helge Deller

    John David Anglin
     
  • This patch fixes few build issues which were introduced with the last
    irq stack patch, e.g. the combination of stack overflow check and irq
    stack.

    Furthermore we now do proper locking and change the irq bh handler
    to use the irq stack as well.

    In /proc/interrupts one now can monitor how huge the irq stack has grown
    and how often it was preferred over the kernel stack.

    IRQ stacks are now enabled by default just to make sure that we not
    overflow the kernel stack by accident.

    Signed-off-by: Helge Deller

    Helge Deller
     

11 May, 2013

3 commits

  • Pull stray syscall bits from Al Viro:
    "Several syscall-related commits that were missing from the original"

    * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/signal:
    switch compat_sys_sysctl to COMPAT_SYSCALL_DEFINE
    unicore32: just use mmap_pgoff()...
    unify compat fanotify_mark(2), switch to COMPAT_SYSCALL_DEFINE
    x86, vm86: fix VM86 syscalls: use SYSCALL_DEFINEx(...)

    Linus Torvalds
     
  • Pull misc fixes from David Woodhouse:
    "This is some miscellaneous cleanups that don't really belong anywhere
    else (or were ignored), that have been sitting in linux-next for some
    time. Two of them are fixes resulting from my audit of krealloc()
    usage that don't seem to have elicited any response when I posted
    them, and the other three are patches from Artem removing dead code."

    * tag 'for-linus-20130509' of git://git.infradead.org/~dwmw2/random-2.6:
    pcmcia: remove RPX board stuff
    m68k: remove rpxlite stuff
    pcmcia: remove Motorola MBX860 support
    params: Fix potential memory leak in add_sysfs_param()
    dell-laptop: Fix krealloc() misuse in parse_da_table()

    Linus Torvalds
     
  • Pull kvm fixes from Gleb Natapov:
    "Most of the fixes are in the emulator since now we emulate more than
    we did before for correctness sake we see more bugs there, but there
    is also an OOPS fixed and corruption of xcr0 register."

    * tag 'kvm-3.10-2' of git://git.kernel.org/pub/scm/virt/kvm/kvm:
    KVM: emulator: emulate SALC
    KVM: emulator: emulate XLAT
    KVM: emulator: emulate AAM
    KVM: VMX: fix halt emulation while emulating invalid guest sate
    KVM: Fix kvm_irqfd_init initialization
    KVM: x86: fix maintenance of guest/host xcr0 state

    Linus Torvalds
     

10 May, 2013

4 commits

  • Pull MIPS updates from Ralf Baechle:

    - More work on DT support for various platforms

    - Various fixes that were to late to make it straight into 3.9

    - Improved platform support, in particular the Netlogic XLR and
    BCM63xx, and the SEAD3 and Malta eval boards.

    - Support for several Ralink SOC families.

    - Complete support for the microMIPS ASE which basically reencodes the
    existing MIPS32/MIPS64 ISA to use non-constant size instructions.

    - Some fallout from LTO work which remove old cruft and will generally
    make the MIPS kernel easier to maintain and resistant to compiler
    optimization, even in absence of LTO.

    - KVM support. While MIPS has announced hardware virtualization
    extensions this KVM extension uses trap and emulate mode for
    virtualization of MIPS32. More KVM work to add support for VZ
    hardware virtualizaiton extensions and MIPS64 will probably already
    be merged for 3.11.

    Most of this has been sitting in -next for a long time. All defconfigs
    have been build or run time tested except three for which fixes are being
    sent by other maintainers.

    Semantic conflict with kvm updates done as per Ralf

    * 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus: (118 commits)
    MIPS: Add new GIC clockevent driver.
    MIPS: Formatting clean-ups for clocksources.
    MIPS: Refactor GIC clocksource code.
    MIPS: Move 'gic_frequency' to common location.
    MIPS: Move 'gic_present' to common location.
    MIPS: MIPS16e: Add unaligned access support.
    MIPS: MIPS16e: Support handling of delay slots.
    MIPS: MIPS16e: Add instruction formats.
    MIPS: microMIPS: Optimise 'strnlen' core library function.
    MIPS: microMIPS: Optimise 'strlen' core library function.
    MIPS: microMIPS: Optimise 'strncpy' core library function.
    MIPS: microMIPS: Optimise 'memset' core library function.
    MIPS: microMIPS: Add configuration option for microMIPS kernel.
    MIPS: microMIPS: Disable LL/SC and fix linker bug.
    MIPS: microMIPS: Add vdso support.
    MIPS: microMIPS: Add unaligned access support.
    MIPS: microMIPS: Support handling of delay slots.
    MIPS: microMIPS: Add support for exception handling.
    MIPS: microMIPS: Floating point support.
    MIPS: microMIPS: Fix macro naming in micro-assembler.
    ...

    Linus Torvalds
     
  • Pull second set of arc arch updates from Vineet Gupta:
    "Aliasing VIPT dcache support for ARC

    I'm satisified with testing, specially with fuse which has
    historically given grief to VIPT arches (ARM/PARISC...)"

    * tag 'arc-v3.10-rc1-part2' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc:
    ARC: [TB10x] Remove GENERIC_GPIO
    ARC: [mm] Aliasing VIPT dcache support 4/4
    ARC: [mm] Aliasing VIPT dcache support 3/4
    ARC: [mm] Aliasing VIPT dcache support 2/4
    ARC: [mm] Aliasing VIPT dcache support 1/4
    ARC: [mm] refactor the core (i|d)cache line ops loops
    ARC: [mm] serious bug in vaddr based icache flush

    Linus Torvalds
     
  • Pull m68knommu updates from Greg Ungerer:
    "The bulk of the changes are generalizing the ColdFire v3 core support
    and adding in 537x CPU support. Also a couple of other bug fixes, one
    to fix a reintroduction of a past bug in the romfs filesystem nommu
    support."

    * 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu:
    m68knommu: enable Timer on coldfire 532x
    m68knommu: fix ColdFire 5373/5329 QSPI base address
    m68knommu: add support for configuring a Freescale M5373EVB board
    m68knommu: add support for the ColdFire 537x family of CPUs
    m68knommu: make ColdFire M532x platform support more v3 generic
    m68knommu: create and use a common M53xx ColdFire class of CPUs
    m68k: remove unused asm/dbg.h
    m68k: Set ColdFire ACR1 cache mode depending on kernel configuration
    romfs: fix nommu map length to keep inside filesystem
    m68k: clean up unused "config ROMVECSIZE"

    Linus Torvalds
     
  • Pull blackfin updates from Steven Miao.

    * tag 'for-linus' of git://github.com/realmz/blackfin-linux:
    bfin cache: dcplb map: add 16M dcplb map for BF60x
    blackfin: smp: fix smp build after drop asm/system.h
    blackfin: fix bootup core clock and system clock display
    Platform Nand: Set the GPIO for NAND read as input
    blackfin: rename vmImage to uImage after we move to buildroot
    blackfin: twi: Remove bogus #endif
    bf609: rsi: Add bf609 rsi MMR macro and board platform data.
    blackfin: dmc: Improve DDR2 write through in DMC effict controller.

    Linus Torvalds