mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 16:54:21 +00:00 
			
		
		
		
	 457c899653
			
		
	
	
		457c899653
		
	
	
	
	
		
			
			Add SPDX license identifiers to all files which: - Have no license information of any form - Have EXPORT_.*_SYMBOL_GPL inside which was used in the initial scan/conversion to ignore the file These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			540 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			540 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0-only
 | |
| #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);
 |