mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 01:08:03 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
58
include/linux/zsmalloc.h
Normal file
58
include/linux/zsmalloc.h
Normal file
|
@ -0,0 +1,58 @@
|
|||
/*
|
||||
* 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>
|
||||
|
||||
/*
|
||||
* zsmalloc mapping modes
|
||||
*
|
||||
* NOTE: These only make a difference when a mapped object spans pages.
|
||||
* They also have no effect when PGTABLE_MAPPING is selected.
|
||||
*/
|
||||
enum zs_mapmode {
|
||||
ZS_MM_RW, /* normal read-write mapping */
|
||||
ZS_MM_RO, /* read-only (no copy-out at unmap time) */
|
||||
ZS_MM_WO /* write-only (no copy-in at map time) */
|
||||
/*
|
||||
* NOTE: ZS_MM_WO should only be used for initializing new
|
||||
* (uninitialized) allocations. Partial writes to already
|
||||
* initialized allocations should use ZS_MM_RW to preserve the
|
||||
* existing data.
|
||||
*/
|
||||
};
|
||||
|
||||
struct zs_pool;
|
||||
|
||||
struct zs_ops {
|
||||
int (*evict)(struct zs_pool *pool, unsigned long handle);
|
||||
};
|
||||
|
||||
struct zs_pool *zs_create_pool(char *name, gfp_t flags, struct zs_ops *ops);
|
||||
void zs_destroy_pool(struct zs_pool *pool);
|
||||
|
||||
unsigned long zs_malloc(struct zs_pool *pool, size_t size);
|
||||
void zs_free(struct zs_pool *pool, unsigned long obj);
|
||||
int zs_shrink(struct zs_pool *pool);
|
||||
|
||||
void *zs_map_object(struct zs_pool *pool, unsigned long handle,
|
||||
enum zs_mapmode mm);
|
||||
void zs_unmap_object(struct zs_pool *pool, unsigned long handle);
|
||||
|
||||
unsigned long zs_get_total_pages(struct zs_pool *pool);
|
||||
unsigned long zs_compact(struct zs_pool *pool);
|
||||
bool zs_compactable(struct zs_pool *pool, unsigned int pages);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue