Описание тега kmalloc

The kmalloc function performs fast dynamic memory allocation and is part of the Linux Kernel API.

The kmalloc() function performs dynamic memory allocation and is part of the Linux Kernel API. In contrast to malloc, this function allocates memory faster in regions of contiguous physical memory, and it doesn't clear the memory it obtains.

More information can be found here