Blame view

include/acpi/acpi_numa.h 471 Bytes
762834e8b   Yasunori Goto   [PATCH] Unify pxm...
1
2
3
4
5
6
7
8
9
10
  #ifndef __ACPI_NUMA_H
  #define __ACPI_NUMA_H
  
  #ifdef CONFIG_ACPI_NUMA
  #include <linux/kernel.h>
  
  /* Proximity bitmap length */
  #if MAX_NUMNODES > 256
  #define MAX_PXM_DOMAINS MAX_NUMNODES
  #else
fd3509436   Len Brown   ACPICA: Lindent
11
  #define MAX_PXM_DOMAINS (256)	/* Old pxm spec is defined 8 bit */
762834e8b   Yasunori Goto   [PATCH] Unify pxm...
12
  #endif
f363d16fb   Aaron Durbin   acpi: fix potenti...
13
14
  extern int pxm_to_node(int);
  extern int node_to_pxm(int);
3484d7981   David Rientjes   x86_64: fake pxm-...
15
  extern void __acpi_map_pxm_to_node(int, int);
8ff6f48d9   Tony Luck   ACPI: Section mis...
16
  extern int acpi_map_pxm_to_node(int);
762834e8b   Yasunori Goto   [PATCH] Unify pxm...
17
18
19
  
  #endif				/* CONFIG_ACPI_NUMA */
  #endif				/* __ACP_NUMA_H */