Thomas Gleixner | a1d312d | 2019-05-22 09:51:42 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * malloc.h - NTFS kernel memory handling. Part of the Linux-NTFS project. |
| 4 | * |
Anton Altaparmakov | f6098cf | 2005-09-19 09:41:39 +0100 | [diff] [blame] | 5 | * Copyright (c) 2001-2005 Anton Altaparmakov |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _LINUX_NTFS_MALLOC_H |
| 9 | #define _LINUX_NTFS_MALLOC_H |
| 10 | |
| 11 | #include <linux/vmalloc.h> |
| 12 | #include <linux/slab.h> |
| 13 | #include <linux/highmem.h> |
| 14 | |
| 15 | /** |
Anton Altaparmakov | 06d0e3c | 2005-09-08 16:28:25 +0100 | [diff] [blame] | 16 | * __ntfs_malloc - allocate memory in multiples of pages |
| 17 | * @size: number of bytes to allocate |
| 18 | * @gfp_mask: extra flags for the allocator |
| 19 | * |
| 20 | * Internal function. You probably want ntfs_malloc_nofs()... |
| 21 | * |
| 22 | * Allocates @size bytes of memory, rounded up to multiples of PAGE_SIZE and |
| 23 | * returns a pointer to the allocated memory. |
| 24 | * |
| 25 | * If there was insufficient memory to complete the request, return NULL. |
| 26 | * Depending on @gfp_mask the allocation may be guaranteed to succeed. |
| 27 | */ |
Anton Altaparmakov | 29b8990 | 2005-10-11 14:54:42 +0100 | [diff] [blame] | 28 | static inline void *__ntfs_malloc(unsigned long size, gfp_t gfp_mask) |
Anton Altaparmakov | 06d0e3c | 2005-09-08 16:28:25 +0100 | [diff] [blame] | 29 | { |
| 30 | if (likely(size <= PAGE_SIZE)) { |
| 31 | BUG_ON(!size); |
| 32 | /* kmalloc() has per-CPU caches so is faster for now. */ |
Anton Altaparmakov | 89ecf38 | 2005-09-12 15:43:03 +0100 | [diff] [blame] | 33 | return kmalloc(PAGE_SIZE, gfp_mask & ~__GFP_HIGHMEM); |
Anton Altaparmakov | 06d0e3c | 2005-09-08 16:28:25 +0100 | [diff] [blame] | 34 | /* return (void *)__get_free_page(gfp_mask); */ |
| 35 | } |
Arun KS | ca79b0c | 2018-12-28 00:34:29 -0800 | [diff] [blame] | 36 | if (likely((size >> PAGE_SHIFT) < totalram_pages())) |
Christoph Hellwig | 88dca4c | 2020-06-01 21:51:40 -0700 | [diff] [blame] | 37 | return __vmalloc(size, gfp_mask); |
Anton Altaparmakov | 06d0e3c | 2005-09-08 16:28:25 +0100 | [diff] [blame] | 38 | return NULL; |
| 39 | } |
| 40 | |
| 41 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | * ntfs_malloc_nofs - allocate memory in multiples of pages |
Anton Altaparmakov | 06d0e3c | 2005-09-08 16:28:25 +0100 | [diff] [blame] | 43 | * @size: number of bytes to allocate |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | * |
| 45 | * Allocates @size bytes of memory, rounded up to multiples of PAGE_SIZE and |
| 46 | * returns a pointer to the allocated memory. |
| 47 | * |
| 48 | * If there was insufficient memory to complete the request, return NULL. |
| 49 | */ |
| 50 | static inline void *ntfs_malloc_nofs(unsigned long size) |
| 51 | { |
Anton Altaparmakov | 06d0e3c | 2005-09-08 16:28:25 +0100 | [diff] [blame] | 52 | return __ntfs_malloc(size, GFP_NOFS | __GFP_HIGHMEM); |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * ntfs_malloc_nofs_nofail - allocate memory in multiples of pages |
| 57 | * @size: number of bytes to allocate |
| 58 | * |
| 59 | * Allocates @size bytes of memory, rounded up to multiples of PAGE_SIZE and |
| 60 | * returns a pointer to the allocated memory. |
| 61 | * |
| 62 | * This function guarantees that the allocation will succeed. It will sleep |
| 63 | * for as long as it takes to complete the allocation. |
| 64 | * |
| 65 | * If there was insufficient memory to complete the request, return NULL. |
| 66 | */ |
| 67 | static inline void *ntfs_malloc_nofs_nofail(unsigned long size) |
| 68 | { |
| 69 | return __ntfs_malloc(size, GFP_NOFS | __GFP_HIGHMEM | __GFP_NOFAIL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | static inline void ntfs_free(void *addr) |
| 73 | { |
Pekka Enberg | b0cbeee | 2015-06-24 16:54:48 -0700 | [diff] [blame] | 74 | kvfree(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | #endif /* _LINUX_NTFS_MALLOC_H */ |