⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pgalloc-2level.h

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 H
字号:
#ifndef __ASM_SH_PGALLOC_2LEVEL_H#define __ASM_SH_PGALLOC_2LEVEL_H/* * traditional two-level paging, page table allocation routines: */static __inline__ pmd_t *get_pmd_fast(void){	return (pmd_t *)0;}static __inline__ void free_pmd_fast(pmd_t *pmd) { }static __inline__ void free_pmd_slow(pmd_t *pmd) { }static __inline__ pmd_t * pmd_alloc(pgd_t *pgd, unsigned long address){	if (!pgd)		BUG();	return (pmd_t *) pgd;}#endif /* __ASM_SH_PGALLOC_2LEVEL_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -