1. 23 10月, 2008 1 次提交
  2. 23 7月, 2008 1 次提交
    • V
      x86: consolidate header guards · 77ef50a5
      Vegard Nossum 提交于
      This patch is the result of an automatic script that consolidates the
      format of all the headers in include/asm-x86/.
      
      The format:
      
      1. No leading underscore. Names with leading underscores are reserved.
      2. Pathname components are separated by two underscores. So we can
         distinguish between mm_types.h and mm/types.h.
      3. Everything except letters and numbers are turned into single
         underscores.
      Signed-off-by: NVegard Nossum <vegard.nossum@gmail.com>
      77ef50a5
  3. 25 4月, 2008 1 次提交
    • I
      xen: replace callers of alloc_vm_area()/free_vm_area() with xen_ prefixed one · 5f0ababb
      Isaku Yamahata 提交于
      Don't use alloc_vm_area()/free_vm_area() directly, instead define
      xen_alloc_vm_area()/xen_free_vm_area() and use them.
      
      alloc_vm_area()/free_vm_area() are used to allocate/free area which
      are for grant table mapping. Xen/x86 grant table is based on virtual
      address so that alloc_vm_area()/free_vm_area() are suitable.
      On the other hand Xen/ia64 (and Xen/powerpc) grant table is based on
      pseudo physical address (guest physical address) so that allocation
      should be done differently.
      The original version of xenified Linux/IA64 have its own
      allocate_vm_area()/free_vm_area() definitions which don't allocate vm area
      contradictory to those names.
      Now vanilla Linux already has its definitions so that it's impossible
      to have IA64 definitions of allocate_vm_area()/free_vm_area().
      Instead introduce xen_allocate_vm_area()/xen_free_vm_area() and use them.
      Signed-off-by: NIsaku Yamahata <yamahata@valinux.co.jp>
      Signed-off-by: NJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      5f0ababb