]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - kernel/power/snapshot.c
[PATCH] swsusp: read speedup
[linux-2.6-omap-h63xx.git] / kernel / power / snapshot.c
index 3d9284100b22105e5323adf37c3ab4aff46e4391..591301ae8b7d9177873d10ff2630596898ea5177 100644 (file)
@@ -39,90 +39,8 @@ static unsigned int nr_copy_pages;
 static unsigned int nr_meta_pages;
 static unsigned long *buffer;
 
-struct arch_saveable_page {
-       unsigned long start;
-       unsigned long end;
-       char *data;
-       struct arch_saveable_page *next;
-};
-static struct arch_saveable_page *arch_pages;
-
-int swsusp_add_arch_pages(unsigned long start, unsigned long end)
-{
-       struct arch_saveable_page *tmp;
-
-       while (start < end) {
-               tmp = kzalloc(sizeof(struct arch_saveable_page), GFP_KERNEL);
-               if (!tmp)
-                       return -ENOMEM;
-               tmp->start = start;
-               tmp->end = ((start >> PAGE_SHIFT) + 1) << PAGE_SHIFT;
-               if (tmp->end > end)
-                       tmp->end = end;
-               tmp->next = arch_pages;
-               start = tmp->end;
-               arch_pages = tmp;
-       }
-       return 0;
-}
-
-static unsigned int count_arch_pages(void)
-{
-       unsigned int count = 0;
-       struct arch_saveable_page *tmp = arch_pages;
-       while (tmp) {
-               count++;
-               tmp = tmp->next;
-       }
-       return count;
-}
-
-static int save_arch_mem(void)
-{
-       char *kaddr;
-       struct arch_saveable_page *tmp = arch_pages;
-       int offset;
-
-       pr_debug("swsusp: Saving arch specific memory");
-       while (tmp) {
-               tmp->data = (char *)__get_free_page(GFP_ATOMIC);
-               if (!tmp->data)
-                       return -ENOMEM;
-               offset = tmp->start - (tmp->start & PAGE_MASK);
-               /* arch pages might haven't a 'struct page' */
-               kaddr = kmap_atomic_pfn(tmp->start >> PAGE_SHIFT, KM_USER0);
-               memcpy(tmp->data + offset, kaddr + offset,
-                       tmp->end - tmp->start);
-               kunmap_atomic(kaddr, KM_USER0);
-
-               tmp = tmp->next;
-       }
-       return 0;
-}
-
-static int restore_arch_mem(void)
-{
-       char *kaddr;
-       struct arch_saveable_page *tmp = arch_pages;
-       int offset;
-
-       while (tmp) {
-               if (!tmp->data)
-                       continue;
-               offset = tmp->start - (tmp->start & PAGE_MASK);
-               kaddr = kmap_atomic_pfn(tmp->start >> PAGE_SHIFT, KM_USER0);
-               memcpy(kaddr + offset, tmp->data + offset,
-                       tmp->end - tmp->start);
-               kunmap_atomic(kaddr, KM_USER0);
-               free_page((long)tmp->data);
-               tmp->data = NULL;
-               tmp = tmp->next;
-       }
-       return 0;
-}
-
 #ifdef CONFIG_HIGHMEM
-static unsigned int count_highmem_pages(void)
+unsigned int count_highmem_pages(void)
 {
        struct zone *zone;
        unsigned long zone_pfn;
@@ -199,7 +117,7 @@ static int save_highmem_zone(struct zone *zone)
        return 0;
 }
 
-static int save_highmem(void)
+int save_highmem(void)
 {
        struct zone *zone;
        int res = 0;
@@ -216,7 +134,7 @@ static int save_highmem(void)
        return 0;
 }
 
-static int restore_highmem(void)
+int restore_highmem(void)
 {
        printk("swsusp: Restoring Highmem\n");
        while (highmem_copy) {
@@ -238,29 +156,6 @@ static inline int save_highmem(void) {return 0;}
 static inline int restore_highmem(void) {return 0;}
 #endif
 
-unsigned int count_special_pages(void)
-{
-       return count_arch_pages() + count_highmem_pages();
-}
-
-int save_special_mem(void)
-{
-       int ret;
-       ret = save_arch_mem();
-       if (!ret)
-               ret = save_highmem();
-       return ret;
-}
-
-int restore_special_mem(void)
-{
-       int ret;
-       ret = restore_arch_mem();
-       if (!ret)
-               ret = restore_highmem();
-       return ret;
-}
-
 static int pfn_is_nosave(unsigned long pfn)
 {
        unsigned long nosave_begin_pfn = __pa(&__nosave_begin) >> PAGE_SHIFT;
@@ -286,6 +181,7 @@ static int saveable(struct zone *zone, unsigned long *zone_pfn)
                return 0;
 
        page = pfn_to_page(pfn);
+       BUG_ON(PageReserved(page) && PageNosave(page));
        if (PageNosave(page))
                return 0;
        if (PageReserved(page) && pfn_is_nosave(pfn))
@@ -331,11 +227,17 @@ static void copy_data_pages(struct pbe *pblist)
                for (zone_pfn = 0; zone_pfn < zone->spanned_pages; ++zone_pfn) {
                        if (saveable(zone, &zone_pfn)) {
                                struct page *page;
+                               long *src, *dst;
+                               int n;
+
                                page = pfn_to_page(zone_pfn + zone->zone_start_pfn);
                                BUG_ON(!pbe);
                                pbe->orig_address = (unsigned long)page_address(page);
-                               /* copy_page is not usable for copying task structs. */
-                               memcpy((void *)pbe->address, (void *)pbe->orig_address, PAGE_SIZE);
+                               /* copy_page and memcpy are not usable for copying task structs. */
+                               dst = (long *)pbe->address;
+                               src = (long *)pbe->orig_address;
+                               for (n = PAGE_SIZE / sizeof(long); n; n--)
+                                       *dst++ = *src++;
                                pbe = pbe->next;
                        }
                }
@@ -412,7 +314,7 @@ static unsigned int unsafe_pages;
  *     and we count them using unsafe_pages
  */
 
-static inline void *alloc_image_page(gfp_t gfp_mask, int safe_needed)
+static void *alloc_image_page(gfp_t gfp_mask, int safe_needed)
 {
        void *res;
 
@@ -926,13 +828,16 @@ int snapshot_write_next(struct snapshot_handle *handle, size_t count)
        }
        if (!handle->offset)
                handle->buffer = buffer;
+       handle->sync_read = 1;
        if (handle->prev < handle->page) {
                if (!handle->prev) {
-                       error = load_header(handle, (struct swsusp_info *)buffer);
+                       error = load_header(handle,
+                                       (struct swsusp_info *)buffer);
                        if (error)
                                return error;
                } else if (handle->prev <= nr_meta_pages) {
-                       handle->pbe = unpack_orig_addresses(buffer, handle->pbe);
+                       handle->pbe = unpack_orig_addresses(buffer,
+                                                       handle->pbe);
                        if (!handle->pbe) {
                                error = prepare_image(handle);
                                if (error)
@@ -940,10 +845,12 @@ int snapshot_write_next(struct snapshot_handle *handle, size_t count)
                                handle->pbe = pagedir_nosave;
                                handle->last_pbe = NULL;
                                handle->buffer = get_buffer(handle);
+                               handle->sync_read = 0;
                        }
                } else {
                        handle->pbe = handle->pbe->next;
                        handle->buffer = get_buffer(handle);
+                       handle->sync_read = 0;
                }
                handle->prev = handle->page;
        }