mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
b01250856b
This is a helper function from drivers/ata/libata_core.c, where it is used to blacklist particular device models. It's being moved to lib/ so other drivers may use it for the same purpose. This implementation in non-recursive, so is safe for the kernel stack. [akpm@linux-foundation.org: fix sparse warning] Signed-off-by: George Spelvin <linux@horizon.com> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Tejun Heo <tj@kernel.org> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
9 lines
217 B
C
9 lines
217 B
C
#ifndef _LINUX_GLOB_H
|
|
#define _LINUX_GLOB_H
|
|
|
|
#include <linux/types.h> /* For bool */
|
|
#include <linux/compiler.h> /* For __pure */
|
|
|
|
bool __pure glob_match(char const *pat, char const *str);
|
|
|
|
#endif /* _LINUX_GLOB_H */
|