mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Add SPDX license identifiers to all files which:
 - Have no license information of any form
 - Have MODULE_LICENCE("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>
		
	
			
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			870 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			870 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-only
 | 
						|
#include <linux/sort.h>
 | 
						|
#include <linux/slab.h>
 | 
						|
#include <linux/module.h>
 | 
						|
 | 
						|
/* a simple boot-time regression test */
 | 
						|
 | 
						|
#define TEST_LEN 1000
 | 
						|
 | 
						|
static int __init cmpint(const void *a, const void *b)
 | 
						|
{
 | 
						|
	return *(int *)a - *(int *)b;
 | 
						|
}
 | 
						|
 | 
						|
static int __init test_sort_init(void)
 | 
						|
{
 | 
						|
	int *a, i, r = 1, err = -ENOMEM;
 | 
						|
 | 
						|
	a = kmalloc_array(TEST_LEN, sizeof(*a), GFP_KERNEL);
 | 
						|
	if (!a)
 | 
						|
		return err;
 | 
						|
 | 
						|
	for (i = 0; i < TEST_LEN; i++) {
 | 
						|
		r = (r * 725861) % 6599;
 | 
						|
		a[i] = r;
 | 
						|
	}
 | 
						|
 | 
						|
	sort(a, TEST_LEN, sizeof(*a), cmpint, NULL);
 | 
						|
 | 
						|
	err = -EINVAL;
 | 
						|
	for (i = 0; i < TEST_LEN-1; i++)
 | 
						|
		if (a[i] > a[i+1]) {
 | 
						|
			pr_err("test has failed\n");
 | 
						|
			goto exit;
 | 
						|
		}
 | 
						|
	err = 0;
 | 
						|
	pr_info("test passed\n");
 | 
						|
exit:
 | 
						|
	kfree(a);
 | 
						|
	return err;
 | 
						|
}
 | 
						|
 | 
						|
static void __exit test_sort_exit(void)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
module_init(test_sort_init);
 | 
						|
module_exit(test_sort_exit);
 | 
						|
 | 
						|
MODULE_LICENSE("GPL");
 |