cregit-Linux how code gets into the kernel

Release 4.16 include/acpi/acpi_numa.h

Directory: include/acpi
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ACPI_NUMA_H

#define __ACPI_NUMA_H

#ifdef CONFIG_ACPI_NUMA
#include <linux/kernel.h>
#include <linux/numa.h>

/* Proximity bitmap length */
#if MAX_NUMNODES > 256

#define MAX_PXM_DOMAINS MAX_NUMNODES
#else

#define MAX_PXM_DOMAINS (256)	
/* Old pxm spec is defined 8 bit */
#endif

extern int pxm_to_node(int);
extern int node_to_pxm(int);
extern int acpi_map_pxm_to_node(int);
extern unsigned char acpi_srat_revision;
extern int acpi_numa __initdata;

extern void bad_srat(void);
extern int srat_disabled(void);

#endif				/* CONFIG_ACPI_NUMA */
#endif				/* __ACP_NUMA_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Yasunori Goto5867.44%120.00%
David Daney1922.09%120.00%
Kurt Garloff55.81%120.00%
Ross Zwisler33.49%120.00%
Greg Kroah-Hartman11.16%120.00%
Total86100.00%5100.00%
Directory: include/acpi
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.