mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-17 11:54:00 +00:00
Add an empty linux/init.h, and definitions for a few parts of the kernel API either in use now, or to be used in the near future. Start using the common definitions in tools/include/linux, although more work needs to be done here. Signed-off-by: Matthew Wilcox <willy@linux.intel.com> Reviewed-by: Ross Zwisler <ross.zwisler@linux.intel.com> Cc: Konstantin Khlebnikov <koct9i@gmail.com> Cc: Kirill Shutemov <kirill.shutemov@linux.intel.com> Cc: Jan Kara <jack@suse.com> Cc: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
27 lines
597 B
C
27 lines
597 B
C
#ifndef SLAB_H
|
|
#define SLAB_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
#define SLAB_HWCACHE_ALIGN 1
|
|
#define SLAB_PANIC 2
|
|
#define SLAB_RECLAIM_ACCOUNT 0x00020000UL /* Objects are reclaimable */
|
|
|
|
static inline int gfpflags_allow_blocking(gfp_t mask)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
struct kmem_cache {
|
|
int size;
|
|
void (*ctor)(void *);
|
|
};
|
|
|
|
void *kmem_cache_alloc(struct kmem_cache *cachep, int flags);
|
|
void kmem_cache_free(struct kmem_cache *cachep, void *objp);
|
|
|
|
struct kmem_cache *
|
|
kmem_cache_create(const char *name, size_t size, size_t offset,
|
|
unsigned long flags, void (*ctor)(void *));
|
|
|
|
#endif /* SLAB_H */
|