What does GFP mean in Linux?
Published:
Frequently I see GFP
in Linux source code but I don’t know what that means.
It means “Get Free Page”, __get_free_pages
. As indicated, it is used in page allocation. See include/linux/gfp.h
for more details.
There’s a website that summarizes many abbreviations in Linux.