cregit-Linux how code gets into the kernel

Release 4.7 include/linux/range.h

Directory: include/linux
#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 luyinghai lu22100.00%1100.00%
Total22100.00%1100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
yinghai luyinghai lu129100.00%2100.00%
Total129100.00%2100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}