| Server IP : 103.18.247.38 / Your IP : 216.73.217.101 Web Server : Apache System : Linux server2.aznethosting.net 4.18.0-553.144.1.el8_10.x86_64 #1 SMP Tue Jul 14 09:26:58 EDT 2026 x86_64 User : gmbizz ( 1200) PHP Version : 8.1.34 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/file_protector-1.1-1506/ |
Upload File : |
/** @file @brief Linux kernel memory management interface wrapper @details Copyright (c) 2017-2018 Acronis International GmbH @author Mikhail Krivtsov (mikhail.krivtsov@acronis.com) @since $Id: $ */ #pragma once #include <linux/slab.h> // kmalloc(), kzalloc(), kfree() #define mem_alloc(size) kmalloc(size, GFP_KERNEL) #define mem_alloc0(size) kzalloc(size, GFP_KERNEL) #define mem_alloc_nowait(size) kmalloc(size, GFP_ATOMIC) #define mem_alloc0_nowait(size) kzalloc(size, GFP_ATOMIC) #define mem_free(p) kfree(p)