search for: alloc_handl

Displaying 10 results from an estimated 10 matches for "alloc_handl".

Did you mean: alloc_handle
2016 Mar 11
0
[PATCH v1 19/19] zram: use __GFP_MOVABLE for memory allocation
...pool) { pr_err("Error creating memory pool\n"); goto out_error; diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c index b9ff698115a1..a1f47a7b3a99 100644 --- a/mm/zsmalloc.c +++ b/mm/zsmalloc.c @@ -307,7 +307,7 @@ static void destroy_handle_cache(struct zs_pool *pool) static unsigned long alloc_handle(struct zs_pool *pool) { return (unsigned long)kmem_cache_alloc(pool->handle_cachep, - pool->flags & ~__GFP_HIGHMEM); + pool->flags & ~(__GFP_HIGHMEM|__GFP_MOVABLE)); } static void free_handle(struct zs_pool *pool, unsigned long handle) -- 1.9.1
2019 Dec 02
0
[ANNOUNCE] arptables 0.0.5 release
...(1): build an libarptc.a archive Pablo Neira Ayuso (3): src: cache in tree and use x_tables.h src: fix compilation warning arptables 0.0.5 release Phil Sutter (3): Add .gitignore Eliminate compiler warning about size passed to strncmp() libarptc: Simplify alloc_handle by using calloc() Zhang Chunyu (2): arptables: Add revision field for arptables userspace arptables: Add MARK target
2016 Jul 08
0
Wine release 1.9.14
...3d: Destroy the resource after view in wined3d_unordered_access_view_decref. wined3d: Destroy the resource after view in wined3d_rendertarget_view_decref. Thiago Barbato (1): wscript: Added WScript.Quit semi-stub implementation. Thomas Faber (5): winhttp: Avoid buffer overrun in alloc_handle. winhttp: Return NULL on failure in alloc_handle. wordpad: Remove superfluous check in registry_set_filelist. netapi32: Avoid buffer overrun in NetBTNameEncode. usp10: Avoid buffer overrun in ReplaceInsertChars. Vincent Povirk (5): gdiplus: Account for world transfor...
2020 Feb 16
0
Wine release 5.2
...aul Gofman (1): kernel32: Add semi-stub for LoadPackagedLibrary(). Piotr Caban (2): msvcp90: Don't pass NULL as reference in runtime_error and logic_error constructors. ucrtbase: Added stub for _get_FMA3_enable. R?mi Bernon (26): server: Improve APC error handling when alloc_handle fails. server: Use STATUS_KERNEL_APC to indicate system APCs. ntdll: Reorder code to make the select logic clearer. ntdll: Use the status to tell user APC from system APC. ntdll: Handle system APCs in a separate inner loop. ntdll: Process system APCs while the signals...
2016 Mar 11
31
[PATCH v1 00/19] Support non-lru page migration
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and failed to fork easily. The problem was fragmentation caused by zram and GPU driver pages. Their pages cannot be migrated so compaction cannot work well, either so reclaimer ends up shrinking all of working set pages. It made system very slow and even to fail to fork easily.
2016 Mar 11
31
[PATCH v1 00/19] Support non-lru page migration
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and failed to fork easily. The problem was fragmentation caused by zram and GPU driver pages. Their pages cannot be migrated so compaction cannot work well, either so reclaimer ends up shrinking all of working set pages. It made system very slow and even to fail to fork easily.
2016 Mar 21
22
[PATCH v2 00/18] Support non-lru page migration
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and failed to fork easily. The problem was fragmentation caused by zram and GPU driver pages. Their pages cannot be migrated so compaction cannot work well, either so reclaimer ends up shrinking all of working set pages. It made system very slow and even to fail to fork easily.
2016 Mar 21
22
[PATCH v2 00/18] Support non-lru page migration
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and failed to fork easily. The problem was fragmentation caused by zram and GPU driver pages. Their pages cannot be migrated so compaction cannot work well, either so reclaimer ends up shrinking all of working set pages. It made system very slow and even to fail to fork easily.
2016 Mar 30
33
[PATCH v3 00/16] Support non-lru page migration
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and failed to fork easily. The problem was fragmentation caused by zram and GPU driver pages. Their pages cannot be migrated so compaction cannot work well, either so reclaimer ends up shrinking all of working set pages. It made system very slow and even to fail to fork easily.
2016 Mar 30
33
[PATCH v3 00/16] Support non-lru page migration
Recently, I got many reports about perfermance degradation in embedded system(Android mobile phone, webOS TV and so on) and failed to fork easily. The problem was fragmentation caused by zram and GPU driver pages. Their pages cannot be migrated so compaction cannot work well, either so reclaimer ends up shrinking all of working set pages. It made system very slow and even to fail to fork easily.