cregit-Linux how code gets into the kernel

Release 4.14 include/linux/range.h

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

#define _LINUX_RANGE_H


struct range {
	
u64   start;
	
u64   end;
};

int add_range(struct range *range, int az, int nr_range,
		u64 start, u64 end);


int add_range_with_merge(struct range *range, int az, int nr_range,
				u64 start, u64 end);

void subtract_range(struct range *range, int az, u64 start, u64 end);

int clean_sort_range(struct range *range, int az);

void sort_range(struct range *range, int nr_range);


#define MAX_RESOURCE ((resource_size_t)~0)

static inline resource_size_t cap_resource(u64 val) { if (val > MAX_RESOURCE) return MAX_RESOURCE; return val; }

Contributors

PersonTokensPropCommitsCommitProp
Yinghai Lu22100.00%1100.00%
Total22100.00%1100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Yinghai Lu12999.23%266.67%
Greg Kroah-Hartman10.77%133.33%
Total130100.00%3100.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.