Contributors: 8
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Nitin Gupta |
105 |
55.56% |
1 |
6.25% |
Sergey Senozhatsky |
43 |
22.75% |
6 |
37.50% |
MinChan Kim |
19 |
10.05% |
4 |
25.00% |
Alexey Romanov |
11 |
5.82% |
1 |
6.25% |
Nhat Pham |
4 |
2.12% |
1 |
6.25% |
Ganesh Mahendran |
3 |
1.59% |
1 |
6.25% |
Seth Jennings |
3 |
1.59% |
1 |
6.25% |
Rokudo Yan |
1 |
0.53% |
1 |
6.25% |
Total |
189 |
|
16 |
|
/*
* zsmalloc memory allocator
*
* Copyright (C) 2011 Nitin Gupta
* Copyright (C) 2012, 2013 Minchan Kim
*
* This code is released using a dual license strategy: BSD/GPL
* You can choose the license that better fits your requirements.
*
* Released under the terms of 3-clause BSD License
* Released under the terms of GNU General Public License Version 2.0
*/
#ifndef _ZS_MALLOC_H_
#define _ZS_MALLOC_H_
#include <linux/types.h>
struct zs_pool_stats {
/* How many pages were migrated (freed) */
atomic_long_t pages_compacted;
};
struct zs_pool;
struct zs_pool *zs_create_pool(const char *name);
void zs_destroy_pool(struct zs_pool *pool);
unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t flags,
const int nid);
void zs_free(struct zs_pool *pool, unsigned long obj);
size_t zs_huge_class_size(struct zs_pool *pool);
unsigned long zs_get_total_pages(struct zs_pool *pool);
unsigned long zs_compact(struct zs_pool *pool);
unsigned int zs_lookup_class_index(struct zs_pool *pool, unsigned int size);
void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats);
void *zs_obj_read_begin(struct zs_pool *pool, unsigned long handle,
void *local_copy);
void zs_obj_read_end(struct zs_pool *pool, unsigned long handle,
void *handle_mem);
void zs_obj_write(struct zs_pool *pool, unsigned long handle,
void *handle_mem, size_t mem_len);
#endif