mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 19:36:47 +00:00
8 lines
194 B
C
8 lines
194 B
C
#pragma once
|
|
#include <common/sys/types.h>
|
|
#include <common/compiler.h>
|
|
/**
|
|
* __GFP_ZERO: 获取内存的同时,将获取到的这块内存清空
|
|
*
|
|
*/
|
|
#define __GFP_ZERO ((gfp_t)(1UL << 0)) |