forked from mirrors/linux
		
	 85c5e27c4a
			
		
	
	
		85c5e27c4a
		
	
	
	
	
		
			
			The file uses nothing from init.h, and also doesn't need the full module.h machinery; export.h is sufficient. The latter requires the user to ensure compiler.h is included, so do that explicitly instead of relying on some other header pulling it in. Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			499 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			499 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <linux/interval_tree.h>
 | |
| #include <linux/interval_tree_generic.h>
 | |
| #include <linux/compiler.h>
 | |
| #include <linux/export.h>
 | |
| 
 | |
| #define START(node) ((node)->start)
 | |
| #define LAST(node)  ((node)->last)
 | |
| 
 | |
| INTERVAL_TREE_DEFINE(struct interval_tree_node, rb,
 | |
| 		     unsigned long, __subtree_last,
 | |
| 		     START, LAST,, interval_tree)
 | |
| 
 | |
| EXPORT_SYMBOL_GPL(interval_tree_insert);
 | |
| EXPORT_SYMBOL_GPL(interval_tree_remove);
 | |
| EXPORT_SYMBOL_GPL(interval_tree_iter_first);
 | |
| EXPORT_SYMBOL_GPL(interval_tree_iter_next);
 |