2019-05-31 08:09:32 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2011-04-14 18:00:19 +00:00
|
|
|
/*
|
|
|
|
* A generic implementation of binary search for the Linux kernel
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008-2009 Ksplice, Inc.
|
|
|
|
* Author: Tim Abbott <tabbott@ksplice.com>
|
|
|
|
*/
|
|
|
|
|
2011-11-17 02:29:17 +00:00
|
|
|
#include <linux/export.h>
|
2011-04-14 18:00:19 +00:00
|
|
|
#include <linux/bsearch.h>
|
2019-02-12 16:15:34 +00:00
|
|
|
#include <linux/kprobes.h>
|
2011-04-14 18:00:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* bsearch - binary search an array of elements
|
|
|
|
* @key: pointer to item being searched for
|
|
|
|
* @base: pointer to first element to search
|
|
|
|
* @num: number of elements
|
|
|
|
* @size: size of each element
|
|
|
|
* @cmp: pointer to comparison function
|
|
|
|
*
|
|
|
|
* This function does a binary search on the given array. The
|
|
|
|
* contents of the array should already be in ascending sorted order
|
|
|
|
* under the provided comparison function.
|
|
|
|
*
|
|
|
|
* Note that the key need not have the same type as the elements in
|
|
|
|
* the array, e.g. key could be a string and the comparison function
|
|
|
|
* could compare the string with the struct's name field. However, if
|
|
|
|
* the key and elements in the array are of the same type, you can use
|
|
|
|
* the same comparison function for both sort() and bsearch().
|
|
|
|
*/
|
2020-02-19 17:25:09 +00:00
|
|
|
void *bsearch(const void *key, const void *base, size_t num, size_t size, cmp_func_t cmp)
|
2011-04-14 18:00:19 +00:00
|
|
|
{
|
2020-02-19 17:25:09 +00:00
|
|
|
return __inline_bsearch(key, base, num, size, cmp);
|
2011-04-14 18:00:19 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(bsearch);
|
2019-02-12 16:15:34 +00:00
|
|
|
NOKPROBE_SYMBOL(bsearch);
|