diff options
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/kexec.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/kexec.c b/kernel/kexec.c index 4b8f0c925884..c7cc2a00181c 100644 --- a/kernel/kexec.c +++ b/kernel/kexec.c | |||
| @@ -154,7 +154,7 @@ static int do_kimage_alloc(struct kimage **rimage, unsigned long entry, | |||
| 154 | INIT_LIST_HEAD(&image->dest_pages); | 154 | INIT_LIST_HEAD(&image->dest_pages); |
| 155 | 155 | ||
| 156 | /* Initialize the list of unusable pages */ | 156 | /* Initialize the list of unusable pages */ |
| 157 | INIT_LIST_HEAD(&image->unuseable_pages); | 157 | INIT_LIST_HEAD(&image->unusable_pages); |
| 158 | 158 | ||
| 159 | /* Read in the segments */ | 159 | /* Read in the segments */ |
| 160 | image->nr_segments = nr_segments; | 160 | image->nr_segments = nr_segments; |
| @@ -609,7 +609,7 @@ static void kimage_free_extra_pages(struct kimage *image) | |||
| 609 | kimage_free_page_list(&image->dest_pages); | 609 | kimage_free_page_list(&image->dest_pages); |
| 610 | 610 | ||
| 611 | /* Walk through and free any unusable pages I have cached */ | 611 | /* Walk through and free any unusable pages I have cached */ |
| 612 | kimage_free_page_list(&image->unuseable_pages); | 612 | kimage_free_page_list(&image->unusable_pages); |
| 613 | 613 | ||
| 614 | } | 614 | } |
| 615 | static void kimage_terminate(struct kimage *image) | 615 | static void kimage_terminate(struct kimage *image) |
| @@ -732,7 +732,7 @@ static struct page *kimage_alloc_page(struct kimage *image, | |||
| 732 | /* If the page cannot be used file it away */ | 732 | /* If the page cannot be used file it away */ |
| 733 | if (page_to_pfn(page) > | 733 | if (page_to_pfn(page) > |
| 734 | (KEXEC_SOURCE_MEMORY_LIMIT >> PAGE_SHIFT)) { | 734 | (KEXEC_SOURCE_MEMORY_LIMIT >> PAGE_SHIFT)) { |
| 735 | list_add(&page->lru, &image->unuseable_pages); | 735 | list_add(&page->lru, &image->unusable_pages); |
| 736 | continue; | 736 | continue; |
| 737 | } | 737 | } |
| 738 | addr = page_to_pfn(page) << PAGE_SHIFT; | 738 | addr = page_to_pfn(page) << PAGE_SHIFT; |
