diff options
Diffstat (limited to 'include/linux/vmalloc.h')
| -rw-r--r-- | include/linux/vmalloc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h index dc9a29d84abc..924e502905d4 100644 --- a/include/linux/vmalloc.h +++ b/include/linux/vmalloc.h | |||
| @@ -23,13 +23,14 @@ struct vm_area_struct; | |||
| 23 | #endif | 23 | #endif |
| 24 | 24 | ||
| 25 | struct vm_struct { | 25 | struct vm_struct { |
| 26 | /* keep next,addr,size together to speedup lookups */ | ||
| 27 | struct vm_struct *next; | ||
| 26 | void *addr; | 28 | void *addr; |
| 27 | unsigned long size; | 29 | unsigned long size; |
| 28 | unsigned long flags; | 30 | unsigned long flags; |
| 29 | struct page **pages; | 31 | struct page **pages; |
| 30 | unsigned int nr_pages; | 32 | unsigned int nr_pages; |
| 31 | unsigned long phys_addr; | 33 | unsigned long phys_addr; |
| 32 | struct vm_struct *next; | ||
| 33 | }; | 34 | }; |
| 34 | 35 | ||
| 35 | /* | 36 | /* |
