Warning: That file was not part of the compilation database. It may have many parsing errors.
| 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
|---|---|
| 2 | #ifndef _TOOLS_INCLUDE_LINUX_GFP_H |
| 3 | #define _TOOLS_INCLUDE_LINUX_GFP_H |
| 4 | |
| 5 | #include <linux/types.h> |
| 6 | #include <linux/gfp_types.h> |
| 7 | |
| 8 | static inline bool gfpflags_allow_blocking(const gfp_t gfp_flags) |
| 9 | { |
| 10 | return !!(gfp_flags & __GFP_DIRECT_RECLAIM); |
| 11 | } |
| 12 | |
| 13 | #endif /* _TOOLS_INCLUDE_LINUX_GFP_H */ |
| 14 |
Warning: That file was not part of the compilation database. It may have many parsing errors.
