cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/include/asm/topology.h

/*
 * Written by: Matthew Dobson, IBM Corporation
 *
 * Copyright (C) 2002, IBM Corp.
 *
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
 * NON INFRINGEMENT.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * Send feedback to <colpatch@us.ibm.com>
 */
#ifndef _ASM_X86_TOPOLOGY_H

#define _ASM_X86_TOPOLOGY_H

/*
 * to preserve the visibility of NUMA_NO_NODE definition,
 * moved to there from here.  May be used independent of
 * CONFIG_NUMA.
 */
#include <linux/numa.h>

#ifdef CONFIG_NUMA
#include <linux/cpumask.h>

#include <asm/mpspec.h>
#include <asm/percpu.h>

/* Mappings between logical cpu number and node number */
DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map);

#ifdef CONFIG_DEBUG_PER_CPU_MAPS
/*
 * override generic percpu implementation of cpu_to_node
 */
extern int __cpu_to_node(int cpu);

#define cpu_to_node __cpu_to_node

extern int early_cpu_to_node(int cpu);

#else	/* !CONFIG_DEBUG_PER_CPU_MAPS */

/* Same function but used if called before per_cpu areas are setup */

static inline int early_cpu_to_node(int cpu) { return early_per_cpu(x86_cpu_to_node_map, cpu); }

Contributors

PersonTokensPropCommitsCommitProp
Mike Travis1794.44%266.67%
Tejun Heo15.56%133.33%
Total18100.00%3100.00%

#endif /* !CONFIG_DEBUG_PER_CPU_MAPS */ /* Mappings between node number and cpus on that node. */ extern cpumask_var_t node_to_cpumask_map[MAX_NUMNODES]; #ifdef CONFIG_DEBUG_PER_CPU_MAPS extern const struct cpumask *cpumask_of_node(int node); #else /* Returns a pointer to the cpumask of CPUs on Node 'node'. */
static inline const struct cpumask *cpumask_of_node(int node) { return node_to_cpumask_map[node]; }

Contributors

PersonTokensPropCommitsCommitProp
Mike Travis1684.21%360.00%
Rusty Russell315.79%240.00%
Total19100.00%5100.00%

#endif extern void setup_node_to_cpumask_map(void); #define pcibus_to_node(bus) __pcibus_to_node(bus) extern int __node_distance(int, int); #define node_distance(a, b) __node_distance(a, b) #else /* !CONFIG_NUMA */
static inline int numa_node_id(void) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Mike Travis12100.00%2100.00%
Total12100.00%2100.00%

/* * indicate override: */ #define numa_node_id numa_node_id
static inline int early_cpu_to_node(int cpu) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Mike Travis13100.00%2100.00%
Total13100.00%2100.00%


static inline void setup_node_to_cpumask_map(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Brian Gerst8100.00%1100.00%
Total8100.00%1100.00%

#endif #include <asm-generic/topology.h> extern const struct cpumask *cpu_coregroup_mask(int cpu); #define topology_logical_package_id(cpu) (cpu_data(cpu).logical_proc_id) #define topology_physical_package_id(cpu) (cpu_data(cpu).phys_proc_id) #define topology_core_id(cpu) (cpu_data(cpu).cpu_core_id) #ifdef CONFIG_SMP #define topology_core_cpumask(cpu) (per_cpu(cpu_core_map, cpu)) #define topology_sibling_cpumask(cpu) (per_cpu(cpu_sibling_map, cpu)) extern unsigned int __max_logical_packages; #define topology_max_packages() (__max_logical_packages) extern int __max_smt_threads;
static inline int topology_max_smt_threads(void) { return __max_smt_threads; }

Contributors

PersonTokensPropCommitsCommitProp
Andi Kleen12100.00%1100.00%
Total12100.00%1100.00%

int topology_update_package_map(unsigned int apicid, unsigned int cpu); extern int topology_phys_to_logical_pkg(unsigned int pkg); #else #define topology_max_packages() (1)
static inline int topology_update_package_map(unsigned int apicid, unsigned int cpu) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Thomas Gleixner18100.00%1100.00%
Total18100.00%1100.00%


static inline int topology_phys_to_logical_pkg(unsigned int pkg) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Thomas Gleixner14100.00%1100.00%
Total14100.00%1100.00%


static inline int topology_max_smt_threads(void) { return 1; }

Contributors

PersonTokensPropCommitsCommitProp
Andi Kleen12100.00%1100.00%
Total12100.00%1100.00%

#endif
static inline void arch_fix_phys_package_id(int num, u32 slot) { }

Contributors

PersonTokensPropCommitsCommitProp
Alexander Chiang12100.00%1100.00%
Total12100.00%1100.00%

struct pci_bus; int x86_pci_root_bus_node(int bus); void x86_pci_root_bus_resources(int bus, struct list_head *resources); extern bool x86_topology_update; #ifdef CONFIG_SCHED_MC_PRIO #include <asm/percpu.h> DECLARE_PER_CPU_READ_MOSTLY(int, sched_core_priority); extern unsigned int __read_mostly sysctl_sched_itmt_enabled; /* Interface to set priority of a cpu */ void sched_set_itmt_core_prio(int prio, int core_cpu); /* Interface to notify scheduler that system supports ITMT */ int sched_set_itmt_support(void); /* Interface to notify scheduler that system revokes ITMT support */ void sched_clear_itmt_support(void); #else /* CONFIG_SCHED_MC_PRIO */ #define sysctl_sched_itmt_enabled 0
static inline void sched_set_itmt_core_prio(int prio, int core_cpu) { }

Contributors

PersonTokensPropCommitsCommitProp
Tim Chen12100.00%1100.00%
Total12100.00%1100.00%


static inline int sched_set_itmt_support(void) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Tim Chen12100.00%2100.00%
Total12100.00%2100.00%


static inline void sched_clear_itmt_support(void) { }

Contributors

PersonTokensPropCommitsCommitProp
Tim Chen8100.00%1100.00%
Total8100.00%1100.00%

#endif /* CONFIG_SCHED_MC_PRIO */ #endif /* _ASM_X86_TOPOLOGY_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Thomas Gleixner14329.79%38.33%
Mike Travis10622.08%616.67%
Tim Chen9018.75%411.11%
Rusty Russell367.50%616.67%
Andi Kleen285.83%12.78%
Yinghai Lu153.12%25.56%
Brian Gerst153.12%12.78%
Lee Schermerhorn153.12%38.33%
Alexander Chiang122.50%12.78%
Björn Helgaas71.46%25.56%
Paul Gortmaker30.62%12.78%
H. Peter Anvin30.62%12.78%
Vaidyanathan Srinivasan20.42%12.78%
Artem Fetishev20.42%12.78%
Sudeep Holla10.21%12.78%
Tejun Heo10.21%12.78%
Bartosz Golaszewski10.21%12.78%
Total480100.00%36100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.