cregit-Linux how code gets into the kernel

Release 4.16 include/linux/pfn.h

Directory: include/linux
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_PFN_H_

#define _LINUX_PFN_H_

#ifndef __ASSEMBLY__
#include <linux/types.h>

/*
 * pfn_t: encapsulates a page-frame number that is optionally backed
 * by memmap (struct page).  Whether a pfn_t has a 'struct page'
 * backing is indicated by flags in the high bits of the value.
 */

typedef struct {
	
u64 val;

} pfn_t;
#endif


#define PFN_ALIGN(x)	(((unsigned long)(x) + (PAGE_SIZE - 1)) & PAGE_MASK)

#define PFN_UP(x)	(((x) + PAGE_SIZE-1) >> PAGE_SHIFT)

#define PFN_DOWN(x)	((x) >> PAGE_SHIFT)

#define PFN_PHYS(x)	((phys_addr_t)(x) << PAGE_SHIFT)

#define PHYS_PFN(x)	((unsigned long)((x) >> PAGE_SHIFT))

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Dave Hansen3556.45%116.67%
Dan J Williams1016.13%233.33%
Jeremy Fitzhardinge914.52%116.67%
Chen Gang711.29%116.67%
Greg Kroah-Hartman11.61%116.67%
Total62100.00%6100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.