1. 09 4月, 2013 3 次提交
  2. 08 4月, 2013 1 次提交
  3. 30 3月, 2013 1 次提交
  4. 28 3月, 2013 1 次提交
  5. 26 3月, 2013 2 次提交
  6. 25 3月, 2013 11 次提交
  7. 23 3月, 2013 1 次提交
  8. 22 3月, 2013 2 次提交
  9. 20 3月, 2013 8 次提交
  10. 19 3月, 2013 7 次提交
  11. 18 3月, 2013 3 次提交
    • A
      ARM: fix CONFIG_VIRT_TO_BUS handling · b4811bac
      Arnd Bergmann 提交于
      887cbce0 "arch Kconfig: centralise CONFIG_ARCH_NO_VIRT_TO_BUS"
      and  4febd95a "Select VIRT_TO_BUS directly where needed" from
      Stephen Rothwell changed globally how CONFIG_VIRT_TO_BUS is
      selected, while my own a5d533ee "ARM: disable virt_to_bus/
      virt_to_bus almost everywhere" was merged at the same time and
      changed which platforms select it on ARM.
      
      The result of this conflict was that we again see CONFIG_VIRT_TO_BUS
      on all ARM systems. This patch fixes up the problem and removes
      CONFIG_ARCH_NO_VIRT_TO_BUS again on ARM.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Stephen Rothwell <sfr@canb.auug.org.au>
      b4811bac
    • A
      arm64: fix padding computation in struct ucontext · 18931c89
      Andreas Schwab 提交于
      The expression to compute the padding needed to fill the uc_sigmask field
      to 1024 bits actually computes the padding needed for 1080 bits.
      Fortunately, due to the 16-byte alignment of the following field
      (uc_mcontext) the definition in glibc contains enough bytes of padding
      after uc_sigmask so that the overall offsets and size match in both
      definitions.
      Signed-off-by: NAndreas Schwab <schwab@suse.de>
      Signed-off-by: NCatalin Marinas <catalin.marinas@arm.com>
      18931c89
    • C
      arm64: Fix build error with !SMP · a2c91547
      Catalin Marinas 提交于
      The __atomic_hash is only defined when SMP is enabled but the
      arm64ksyms.c exports it even for the UP case.
      Signed-off-by: NCatalin Marinas <catalin.marinas@arm.com>
      a2c91547