1. 06 6月, 2006 6 次提交
    • A
      [PATCH] uml: more __user annotations · b8719c31
      Al Viro 提交于
      From: Al Viro <viro@zeniv.linux.org.uk>
      
      uml __user annotations
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      Signed-off-by: NJeff Dike <jdike@addtoit.com>
      Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      b8719c31
    • J
      [PATCH] uml: add asm/irqflags.h · 65e62974
      Jeff Dike 提交于
      From: Jeff Dike <jdike@addtoit.com>
      
      Add an empty asm/irqflags.h, which seems to satisfy the lock validator enough
      that UML builds.
      Signed-off-by: NJeff Dike <jdike@addtoit.com>
      Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      65e62974
    • A
      [PATCH] m48t86: ia64 build fix · 2d7b20c1
      Andrew Morton 提交于
      From: Andrew Morton <akpm@osdl.org>
      
      drivers/rtc/rtc-m48t86.c: In function `m48t86_rtc_read_time':
      drivers/rtc/rtc-m48t86.c:51: error: structure has no member named `ia64_mv'
      drivers/rtc/rtc-m48t86.c:55: error: structure has no member named `ia64_mv'
      drivers/rtc/rtc-m48t86.c:56: error: structure has no member named `ia64_mv'
      drivers/rtc/rtc-m48t86.c:57: error: structure has no member named `ia64_mv'
      drivers/rtc/rtc-m48t86.c:58: error: structure has no member named `ia64_mv'
      drivers/rtc/rtc-m48t86.c:60: error: structure has no member named `ia64_mv'
      
      readb() and writeb() are macros on ia64.
      
      Cc: Alessandro Zummo <a.zummo@towertech.it>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      2d7b20c1
    • I
      [PATCH] alpha: SMP IRQ routing fix · c7d2d28b
      Ivan Kokshaysky 提交于
      From: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
      
      After removal of fixup_cpu_present_map() function Alpha ended up with an empty
      cpu_present_map, so secondary CPUs on SMP systems are not being started.
      
      Worse, on some platforms we route interrupts to secondary CPUs using
      cpu_possible_map which is still populated properly.  As a result, these
      interrupts go nowhere so the machines like DP264 aren't able to boot even with
      a primary CPU.
      
      Fixed basically by s/cpu_present_mask/cpu_present_map/.
      
      Thanks to Ernst Herzberg for reporting the bug and testing the fix.
      
      Cc: Ernst Herzberg <list-lkml@net4u.de>
      Cc: Richard Henderson <rth@twiddle.net>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      c7d2d28b
    • R
      [PATCH] Sparsemem build fix · 93ff66bf
      Ralf Baechle 提交于
      From: Ralf Baechle <ralf@linux-mips.org>
      
      <linux/mmzone.h> uses PAGE_SIZE, PAGE_SHIFT from <asm/page.h> without
      including that header itself.  For some sparsemem configurations this may
      result in build errors like:
      
        CC      init/initramfs.o
      In file included from include/linux/gfp.h:4,
                       from include/linux/slab.h:15,
                       from include/linux/percpu.h:4,
                       from include/linux/rcupdate.h:41,
                       from include/linux/dcache.h:10,
                       from include/linux/fs.h:226,
                       from init/initramfs.c:2:
      include/linux/mmzone.h:498:22: warning: "PAGE_SHIFT" is not defined
      In file included from include/linux/gfp.h:4,
                       from include/linux/slab.h:15,
                       from include/linux/percpu.h:4,
                       from include/linux/rcupdate.h:41,
                       from include/linux/dcache.h:10,
                       from include/linux/fs.h:226,
                       from init/initramfs.c:2:
      include/linux/mmzone.h:526: error: `PAGE_SIZE' undeclared here (not in a function)
      include/linux/mmzone.h: In function `__pfn_to_section':
      include/linux/mmzone.h:573: error: `PAGE_SHIFT' undeclared (first use in this function)
      include/linux/mmzone.h:573: error: (Each undeclared identifier is reported only once
      include/linux/mmzone.h:573: error: for each function it appears in.)
      include/linux/mmzone.h: In function `pfn_valid':
      include/linux/mmzone.h:578: error: `PAGE_SHIFT' undeclared (first use in this function)
      make[1]: *** [init/initramfs.o] Error 1
      make: *** [init] Error 2
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      Seems-reasonable-to: Andy Whitcroft <apw@shadowen.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      93ff66bf
    • P
      [PATCH] s390: cio non-unique path group ids · 4ae9538d
      Peter Oberparleiter 提交于
      From: Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
      
      The path grouping can fail due to non-unique pathgroup-IDs.  The source for
      the CPU-ID part of the ID was incorrectly specified on 64 bit systems.
      Additionally, the length of the ID was too large due to incorrect data packing
      declaration.  Fix CPU-ID lowcore address and add missing packing declaration.
      Signed-off-by: NPeter Oberparleiter <peter.oberparleiter@de.ibm.com>
      Signed-off-by: NMartin Schwidefsky <schwidefsky@de.ibm.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      4ae9538d
  2. 03 6月, 2006 1 次提交
  3. 02 6月, 2006 1 次提交
    • D
      [SPARC64]: Fix D-cache corruption in mremap · 0b0968a3
      David S. Miller 提交于
      If we move a mapping from one virtual address to another,
      and this changes the virtual color of the mapping to those
      pages, we can see corrupt data due to D-cache aliasing.
      
      Check for and deal with this by overriding the move_pte()
      macro.  Set things up so that other platforms can cleanly
      override the move_pte() macro too.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      0b0968a3
  4. 01 6月, 2006 10 次提交
  5. 31 5月, 2006 1 次提交
  6. 30 5月, 2006 2 次提交
  7. 27 5月, 2006 1 次提交
  8. 24 5月, 2006 2 次提交
  9. 23 5月, 2006 3 次提交
  10. 22 5月, 2006 7 次提交
  11. 20 5月, 2006 4 次提交
  12. 17 5月, 2006 2 次提交