Преглед на файлове

Merge pull request #759 from uchin0704/master

linux-datastructures-2.md: fix minor typo
Sebastian Fricke преди 4 години
родител
ревизия
e68a4c316e
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      DataStructures/linux-datastructures-2.md

+ 1 - 1
DataStructures/linux-datastructures-2.md

@@ -61,7 +61,7 @@ This structure presents the root of a radix tree and contains three fields:
 
 The first field we will discuss is `gfp_mask`:
 
-Low-level kernel memory allocation functions take a set of flags as - `gfp_mask`, which describes how that allocation is to be performed. These `GFP_` flags which control the allocation process can have following values: (`GF_NOIO` flag) means sleep and wait for memory, (`__GFP_HIGHMEM` flag) means high memory can be used, (`GFP_ATOMIC` flag) means the allocation process has high-priority and can't sleep etc.
+Low-level kernel memory allocation functions take a set of flags as - `gfp_mask`, which describes how that allocation is to be performed. These `GFP_` flags which control the allocation process can have following values: (`GFP_NOIO` flag) means sleep and wait for memory, (`__GFP_HIGHMEM` flag) means high memory can be used, (`GFP_ATOMIC` flag) means the allocation process has high-priority and can't sleep etc.
 
 * `GFP_NOIO` - can sleep and wait for memory;
 * `__GFP_HIGHMEM` - high memory can be used;