cregit-Linux how code gets into the kernel

Release 4.14 arch/x86/mm/numa_internal.h

Directory: arch/x86/mm
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __X86_MM_NUMA_INTERNAL_H

#define __X86_MM_NUMA_INTERNAL_H

#include <linux/types.h>
#include <asm/numa.h>


struct numa_memblk {
	
u64			start;
	
u64			end;
	
int			nid;
};


struct numa_meminfo {
	
int			nr_blks;
	
struct numa_memblk	blk[NR_NODE_MEMBLKS];
};

void __init numa_remove_memblk_from(int idx, struct numa_meminfo *mi);
int __init numa_cleanup_meminfo(struct numa_meminfo *mi);
void __init numa_reset_distance(void);

void __init x86_numa_init(void);

#ifdef CONFIG_NUMA_EMU
void __init numa_emulation(struct numa_meminfo *numa_meminfo,
			   int numa_dist_cnt);
#else

static inline void numa_emulation(struct numa_meminfo *numa_meminfo, int numa_dist_cnt) { }

Contributors

PersonTokensPropCommitsCommitProp
Tejun Heo14100.00%1100.00%
Total14100.00%1100.00%

#endif #endif /* __X86_MM_NUMA_INTERNAL_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Tejun Heo11599.14%266.67%
Greg Kroah-Hartman10.86%133.33%
Total116100.00%3100.00%
Directory: arch/x86/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.