diff options
Diffstat (limited to 'arch/x86/mm/numa_64.c')
| -rw-r--r-- | arch/x86/mm/numa_64.c | 217 |
1 files changed, 217 insertions, 0 deletions
diff --git a/arch/x86/mm/numa_64.c b/arch/x86/mm/numa_64.c index 71a14f89f89..deb1c1ab786 100644 --- a/arch/x86/mm/numa_64.c +++ b/arch/x86/mm/numa_64.c | |||
| @@ -20,6 +20,12 @@ | |||
| 20 | #include <asm/acpi.h> | 20 | #include <asm/acpi.h> |
| 21 | #include <asm/k8.h> | 21 | #include <asm/k8.h> |
| 22 | 22 | ||
| 23 | #ifdef CONFIG_DEBUG_PER_CPU_MAPS | ||
| 24 | # define DBG(x...) printk(KERN_DEBUG x) | ||
| 25 | #else | ||
| 26 | # define DBG(x...) | ||
| 27 | #endif | ||
| 28 | |||
| 23 | struct pglist_data *node_data[MAX_NUMNODES] __read_mostly; | 29 | struct pglist_data *node_data[MAX_NUMNODES] __read_mostly; |
| 24 | EXPORT_SYMBOL(node_data); | 30 | EXPORT_SYMBOL(node_data); |
| 25 | 31 | ||
| @@ -33,6 +39,21 @@ int numa_off __initdata; | |||
| 33 | static unsigned long __initdata nodemap_addr; | 39 | static unsigned long __initdata nodemap_addr; |
| 34 | static unsigned long __initdata nodemap_size; | 40 | static unsigned long __initdata nodemap_size; |
| 35 | 41 | ||
| 42 | DEFINE_PER_CPU(int, node_number) = 0; | ||
| 43 | EXPORT_PER_CPU_SYMBOL(node_number); | ||
| 44 | |||
| 45 | /* | ||
| 46 | * Map cpu index to node index | ||
| 47 | */ | ||
| 48 | DEFINE_EARLY_PER_CPU(int, x86_cpu_to_node_map, NUMA_NO_NODE); | ||
| 49 | EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_node_map); | ||
| 50 | |||
| 51 | /* | ||
| 52 | * Which logical CPUs are on which nodes | ||
| 53 | */ | ||
| 54 | cpumask_t *node_to_cpumask_map; | ||
| 55 | EXPORT_SYMBOL(node_to_cpumask_map); | ||
| 56 | |||
| 36 | /* | 57 | /* |
| 37 | * Given a shift value, try to populate memnodemap[] | 58 | * Given a shift value, try to populate memnodemap[] |
| 38 | * Returns : | 59 | * Returns : |
| @@ -640,3 +661,199 @@ void __init init_cpu_to_node(void) | |||
| 640 | #endif | 661 | #endif |
| 641 | 662 | ||
| 642 | 663 | ||
| 664 | /* | ||
| 665 | * Allocate node_to_cpumask_map based on number of available nodes | ||
| 666 | * Requires node_possible_map to be valid. | ||
| 667 | * | ||
| 668 | * Note: node_to_cpumask() is not valid until after this is done. | ||
| 669 | * (Use CONFIG_DEBUG_PER_CPU_MAPS to check this.) | ||
| 670 | */ | ||
| 671 | void __init setup_node_to_cpumask_map(void) | ||
| 672 | { | ||
| 673 | unsigned int node, num = 0; | ||
| 674 | cpumask_t *map; | ||
| 675 | |||
| 676 | /* setup nr_node_ids if not done yet */ | ||
| 677 | if (nr_node_ids == MAX_NUMNODES) { | ||
| 678 | for_each_node_mask(node, node_possible_map) | ||
| 679 | num = node; | ||
| 680 | nr_node_ids = num + 1; | ||
| 681 | } | ||
| 682 | |||
| 683 | /* allocate the map */ | ||
| 684 | map = alloc_bootmem_low(nr_node_ids * sizeof(cpumask_t)); | ||
| 685 | DBG("node_to_cpumask_map at %p for %d nodes\n", map, nr_node_ids); | ||
| 686 | |||
| 687 | pr_debug("Node to cpumask map at %p for %d nodes\n", | ||
| 688 | map, nr_node_ids); | ||
| 689 | |||
| 690 | /* node_to_cpumask() will now work */ | ||
| 691 | node_to_cpumask_map = map; | ||
| 692 | } | ||
| 693 | |||
| 694 | void __cpuinit numa_set_node(int cpu, int node) | ||
| 695 | { | ||
| 696 | int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map); | ||
| 697 | |||
| 698 | /* early setting, no percpu area yet */ | ||
| 699 | if (cpu_to_node_map) { | ||
| 700 | cpu_to_node_map[cpu] = node; | ||
| 701 | return; | ||
| 702 | } | ||
| 703 | |||
| 704 | #ifdef CONFIG_DEBUG_PER_CPU_MAPS | ||
| 705 | if (cpu >= nr_cpu_ids || !cpu_possible(cpu)) { | ||
| 706 | printk(KERN_ERR "numa_set_node: invalid cpu# (%d)\n", cpu); | ||
| 707 | dump_stack(); | ||
| 708 | return; | ||
| 709 | } | ||
| 710 | #endif | ||
| 711 | per_cpu(x86_cpu_to_node_map, cpu) = node; | ||
| 712 | |||
| 713 | if (node != NUMA_NO_NODE) | ||
| 714 | per_cpu(node_number, cpu) = node; | ||
| 715 | } | ||
| 716 | |||
| 717 | void __cpuinit numa_clear_node(int cpu) | ||
| 718 | { | ||
| 719 | numa_set_node(cpu, NUMA_NO_NODE); | ||
| 720 | } | ||
| 721 | |||
| 722 | #ifndef CONFIG_DEBUG_PER_CPU_MAPS | ||
| 723 | |||
| 724 | void __cpuinit numa_add_cpu(int cpu) | ||
| 725 | { | ||
| 726 | cpu_set(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]); | ||
| 727 | } | ||
| 728 | |||
| 729 | void __cpuinit numa_remove_cpu(int cpu) | ||
| 730 | { | ||
| 731 | cpu_clear(cpu, node_to_cpumask_map[early_cpu_to_node(cpu)]); | ||
| 732 | } | ||
| 733 | |||
| 734 | #else /* CONFIG_DEBUG_PER_CPU_MAPS */ | ||
| 735 | |||
| 736 | /* | ||
| 737 | * --------- debug versions of the numa functions --------- | ||
| 738 | */ | ||
| 739 | static void __cpuinit numa_set_cpumask(int cpu, int enable) | ||
| 740 | { | ||
| 741 | int node = early_cpu_to_node(cpu); | ||
| 742 | cpumask_t *mask; | ||
| 743 | char buf[64]; | ||
| 744 | |||
| 745 | if (node_to_cpumask_map == NULL) { | ||
| 746 | printk(KERN_ERR "node_to_cpumask_map NULL\n"); | ||
| 747 | dump_stack(); | ||
| 748 | return; | ||
| 749 | } | ||
| 750 | |||
| 751 | mask = &node_to_cpumask_map[node]; | ||
| 752 | if (enable) | ||
| 753 | cpu_set(cpu, *mask); | ||
| 754 | else | ||
| 755 | cpu_clear(cpu, *mask); | ||
| 756 | |||
| 757 | cpulist_scnprintf(buf, sizeof(buf), mask); | ||
| 758 | printk(KERN_DEBUG "%s cpu %d node %d: mask now %s\n", | ||
| 759 | enable ? "numa_add_cpu" : "numa_remove_cpu", cpu, node, buf); | ||
| 760 | } | ||
| 761 | |||
| 762 | void __cpuinit numa_add_cpu(int cpu) | ||
| 763 | { | ||
| 764 | numa_set_cpumask(cpu, 1); | ||
| 765 | } | ||
| 766 | |||
| 767 | void __cpuinit numa_remove_cpu(int cpu) | ||
| 768 | { | ||
| 769 | numa_set_cpumask(cpu, 0); | ||
| 770 | } | ||
| 771 | |||
| 772 | int cpu_to_node(int cpu) | ||
| 773 | { | ||
| 774 | if (early_per_cpu_ptr(x86_cpu_to_node_map)) { | ||
| 775 | printk(KERN_WARNING | ||
| 776 | "cpu_to_node(%d): usage too early!\n", cpu); | ||
| 777 | dump_stack(); | ||
| 778 | return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu]; | ||
| 779 | } | ||
| 780 | return per_cpu(x86_cpu_to_node_map, cpu); | ||
| 781 | } | ||
| 782 | EXPORT_SYMBOL(cpu_to_node); | ||
| 783 | |||
| 784 | /* | ||
| 785 | * Same function as cpu_to_node() but used if called before the | ||
| 786 | * per_cpu areas are setup. | ||
| 787 | */ | ||
| 788 | int early_cpu_to_node(int cpu) | ||
| 789 | { | ||
| 790 | if (early_per_cpu_ptr(x86_cpu_to_node_map)) | ||
| 791 | return early_per_cpu_ptr(x86_cpu_to_node_map)[cpu]; | ||
| 792 | |||
| 793 | if (!cpu_possible(cpu)) { | ||
| 794 | printk(KERN_WARNING | ||
| 795 | "early_cpu_to_node(%d): no per_cpu area!\n", cpu); | ||
| 796 | dump_stack(); | ||
| 797 | return NUMA_NO_NODE; | ||
| 798 | } | ||
| 799 | return per_cpu(x86_cpu_to_node_map, cpu); | ||
| 800 | } | ||
| 801 | |||
| 802 | |||
| 803 | /* empty cpumask */ | ||
| 804 | static const cpumask_t cpu_mask_none; | ||
| 805 | |||
| 806 | /* | ||
| 807 | * Returns a pointer to the bitmask of CPUs on Node 'node'. | ||
| 808 | */ | ||
| 809 | const cpumask_t *cpumask_of_node(int node) | ||
| 810 | { | ||
| 811 | if (node_to_cpumask_map == NULL) { | ||
| 812 | printk(KERN_WARNING | ||
| 813 | "cpumask_of_node(%d): no node_to_cpumask_map!\n", | ||
| 814 | node); | ||
| 815 | dump_stack(); | ||
| 816 | return (const cpumask_t *)&cpu_online_map; | ||
| 817 | } | ||
| 818 | if (node >= nr_node_ids) { | ||
| 819 | printk(KERN_WARNING | ||
| 820 | "cpumask_of_node(%d): node > nr_node_ids(%d)\n", | ||
| 821 | node, nr_node_ids); | ||
| 822 | dump_stack(); | ||
| 823 | return &cpu_mask_none; | ||
| 824 | } | ||
| 825 | return &node_to_cpumask_map[node]; | ||
| 826 | } | ||
| 827 | EXPORT_SYMBOL(cpumask_of_node); | ||
| 828 | |||
| 829 | /* | ||
| 830 | * Returns a bitmask of CPUs on Node 'node'. | ||
| 831 | * | ||
| 832 | * Side note: this function creates the returned cpumask on the stack | ||
| 833 | * so with a high NR_CPUS count, excessive stack space is used. The | ||
| 834 | * node_to_cpumask_ptr function should be used whenever possible. | ||
| 835 | */ | ||
| 836 | cpumask_t node_to_cpumask(int node) | ||
| 837 | { | ||
| 838 | if (node_to_cpumask_map == NULL) { | ||
| 839 | printk(KERN_WARNING | ||
| 840 | "node_to_cpumask(%d): no node_to_cpumask_map!\n", node); | ||
| 841 | dump_stack(); | ||
| 842 | return cpu_online_map; | ||
| 843 | } | ||
| 844 | if (node >= nr_node_ids) { | ||
| 845 | printk(KERN_WARNING | ||
| 846 | "node_to_cpumask(%d): node > nr_node_ids(%d)\n", | ||
| 847 | node, nr_node_ids); | ||
| 848 | dump_stack(); | ||
| 849 | return cpu_mask_none; | ||
| 850 | } | ||
| 851 | return node_to_cpumask_map[node]; | ||
| 852 | } | ||
| 853 | EXPORT_SYMBOL(node_to_cpumask); | ||
| 854 | |||
| 855 | /* | ||
| 856 | * --------- end of debug versions of the numa functions --------- | ||
| 857 | */ | ||
| 858 | |||
| 859 | #endif /* CONFIG_DEBUG_PER_CPU_MAPS */ | ||
