Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/kernels/5.14.0-570.el9.x86_64/tools/include/linux/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _TOOLS_SLAB_H #define _TOOLS_SLAB_H #include <linux/types.h> #include <linux/gfp.h> #define SLAB_PANIC 2 #define SLAB_RECLAIM_ACCOUNT 0x00020000UL /* Objects are reclaimable */ #define kzalloc_node(size, flags, node) kmalloc(size, flags) void *kmalloc(size_t size, gfp_t gfp); void kfree(void *p); bool slab_is_available(void); enum slab_state { DOWN, PARTIAL, PARTIAL_NODE, UP, FULL }; static inline void *kzalloc(size_t size, gfp_t gfp) { return kmalloc(size, gfp | __GFP_ZERO); } struct list_lru; void *kmem_cache_alloc_lru(struct kmem_cache *cachep, struct list_lru *, int flags); static inline void *kmem_cache_alloc(struct kmem_cache *cachep, int flags) { return kmem_cache_alloc_lru(cachep, NULL, flags); } void kmem_cache_free(struct kmem_cache *cachep, void *objp); struct kmem_cache *kmem_cache_create(const char *name, unsigned int size, unsigned int align, unsigned int flags, void (*ctor)(void *)); void kmem_cache_free_bulk(struct kmem_cache *cachep, size_t size, void **list); int kmem_cache_alloc_bulk(struct kmem_cache *cachep, gfp_t gfp, size_t size, void **list); #endif /* _TOOLS_SLAB_H */