1. 18 7月, 2014 1 次提交
  2. 11 7月, 2014 1 次提交
  3. 10 7月, 2014 1 次提交
  4. 07 6月, 2014 1 次提交
  5. 05 6月, 2014 1 次提交
    • F
      sys_sgetmask/sys_ssetmask: add CONFIG_SGETMASK_SYSCALL · f6187769
      Fabian Frederick 提交于
      sys_sgetmask and sys_ssetmask are obsolete system calls no longer
      supported in libc.
      
      This patch replaces architecture related __ARCH_WANT_SYS_SGETMAX by expert
      mode configuration.That option is enabled by default for those
      architectures.
      Signed-off-by: NFabian Frederick <fabf@skynet.be>
      Cc: Steven Miao <realmz6@gmail.com>
      Cc: Mikael Starvik <starvik@axis.com>
      Cc: Jesper Nilsson <jesper.nilsson@axis.com>
      Cc: David Howells <dhowells@redhat.com>
      Cc: Geert Uytterhoeven <geert@linux-m68k.org>
      Cc: Michal Simek <monstr@monstr.eu>
      Cc: Ralf Baechle <ralf@linux-mips.org>
      Cc: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
      Cc: "James E.J. Bottomley" <jejb@parisc-linux.org>
      Cc: Helge Deller <deller@gmx.de>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: "H. Peter Anvin" <hpa@zytor.com>
      Cc: Greg Ungerer <gerg@uclinux.org>
      Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
      Cc: Oleg Nesterov <oleg@redhat.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      f6187769
  6. 28 5月, 2014 8 次提交
  7. 27 5月, 2014 2 次提交
    • F
      m68k: Toward platform agnostic framebuffer debug logging · 97f3f68c
      Finn Thain 提交于
      Code subject to #ifdef CONSOLE is made more generic, as was apparently
      intended by the original author.
      
      Remove console_put_stats() routine. If it should be somehow useful, it
      should also be useful on platforms without framebuffer debug logging. The
      present implementation is only built #if defined CONFIG_MAC && defined
      CONSOLE even though puts() works everywhere.
      Signed-off-by: NFinn Thain <fthain@telegraphics.com.au>
      Tested-by: NStephen N Chivers <schivers@csc.com.au>
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      97f3f68c
    • M
      m68k/atari - stram: alloc ST-RAM pool even if kernel not in ST-RAM · fded332b
      Michael Schmitz 提交于
      With the kernel loaded to FastRAM (TT-RAM), none of the ST-RAM
      address range is mapped by init_mem, and ST-RAM is not accessible
      through the normal allocation pathways as a result.
      
      Implement ST-RAM pool allocation to be based on physical addresses
      always (it already was when the kernel was loaded in ST-RAM).
      Return kernel virtual addresses as per normal.
      
      The current test for the kernel residing in ST-RAM always returns
      true. Use the bootinfo memory chunk order instead - with the kernel
      in FastRAM, ST-RAM (phys. 0x0) is not the first chunk.
      
      In case the kernel is running from FastRAM, delay mapping of ST-RAM
      pool until after mem_init.
      
      Provide helper functions for those users of ST-RAM that need
      to be aware of the backing physical addresses.
      
      Kudos to Geert for his hints on getting this started.
      Signed-off-by: NMichael Schmitz <schmitz@debian.org>
      Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
      fded332b
  8. 26 5月, 2014 9 次提交
  9. 20 5月, 2014 1 次提交
  10. 18 4月, 2014 1 次提交
  11. 08 4月, 2014 1 次提交
  12. 31 3月, 2014 1 次提交
  13. 20 3月, 2014 1 次提交
  14. 19 3月, 2014 1 次提交
  15. 11 3月, 2014 5 次提交
  16. 06 3月, 2014 1 次提交
  17. 05 3月, 2014 1 次提交
    • T
      m68k: Do not rely on magic indirect includes · abcfc543
      Thomas Gleixner 提交于
      commit: 8f945a33 (genirq: Move kstat_incr_irqs_this_cpu() to core)
      unearthed the following:
      
      arch/m68k/kernel/ints.c:34:15: error: variable 'auto_irq_chip' has initializer but incomplete type
      arch/m68k/kernel/ints.c:35:2: error: unknown field 'name' specified in initializer
      arch/m68k/kernel/ints.c:35:2: warning: excess elements in struct initializer [enabled by default]
      
      The reason is that this file requires linux/irq.h and magically
      pulled that in via linux/kernel_stat.h
      
      The commit above got rid of the pointless include of linux/irq.h in
      linux/kernel_stat.h and therefor broke the build.
      
      Include linux/irq.h
      
      Reported-by: fengguang.wu@intel.com
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      abcfc543
  18. 11 2月, 2014 3 次提交