cregit-Linux how code gets into the kernel

Release 4.12 include/uapi/linux/kernel.h

#ifndef _UAPI_LINUX_KERNEL_H

#define _UAPI_LINUX_KERNEL_H

#include <linux/sysinfo.h>

/*
 * 'kernel.h' contains some often-used function prototypes etc
 */

#define __ALIGN_KERNEL(x, a)		__ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)

#define __ALIGN_KERNEL_MASK(x, mask)	(((x) + (mask)) & ~(mask))


#define __KERNEL_DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))

#endif /* _UAPI_LINUX_KERNEL_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
David Howells3177.50%150.00%
Nicolas Dichtel922.50%150.00%
Total40100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.