2 * Copyright (c) 2004-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 #include <kern/kalloc.h>
30 #include <kern/machine.h>
31 #include <kern/misc_protos.h>
32 #include <kern/thread.h>
33 #include <kern/processor.h>
34 #include <mach/machine.h>
35 #include <mach/processor_info.h>
36 #include <mach/mach_types.h>
37 #include <default_pager/default_pager_internal.h>
38 #include <IOKit/IOPlatformExpert.h>
40 #include <IOKit/IOHibernatePrivate.h>
41 #include <vm/vm_page.h>
42 #include <vm/vm_pageout.h>
43 #include <vm/vm_purgeable_internal.h>
44 #include <vm/vm_compressor.h>
46 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
48 boolean_t need_to_unlock_decompressor
= FALSE
;
51 hibernate_alloc_page_lists(
52 hibernate_page_list_t
** page_list_ret
,
53 hibernate_page_list_t
** page_list_wired_ret
,
54 hibernate_page_list_t
** page_list_pal_ret
)
56 kern_return_t retval
= KERN_SUCCESS
;
58 hibernate_page_list_t
* page_list
= NULL
;
59 hibernate_page_list_t
* page_list_wired
= NULL
;
60 hibernate_page_list_t
* page_list_pal
= NULL
;
62 page_list
= hibernate_page_list_allocate(TRUE
);
65 retval
= KERN_RESOURCE_SHORTAGE
;
68 page_list_wired
= hibernate_page_list_allocate(FALSE
);
71 kfree(page_list
, page_list
->list_size
);
73 retval
= KERN_RESOURCE_SHORTAGE
;
76 page_list_pal
= hibernate_page_list_allocate(FALSE
);
79 kfree(page_list
, page_list
->list_size
);
80 kfree(page_list_wired
, page_list_wired
->list_size
);
82 retval
= KERN_RESOURCE_SHORTAGE
;
85 *page_list_ret
= page_list
;
86 *page_list_wired_ret
= page_list_wired
;
87 *page_list_pal_ret
= page_list_pal
;
94 extern int sync_internal(void);
97 hibernate_setup(IOHibernateImageHeader
* header
,
98 uint32_t free_page_ratio
,
99 uint32_t free_page_time
,
101 hibernate_page_list_t
* page_list
,
102 hibernate_page_list_t
* page_list_wired __unused
,
103 hibernate_page_list_t
* page_list_pal __unused
)
105 uint32_t gobble_count
;
106 kern_return_t retval
= KERN_SUCCESS
;
108 hibernate_create_paddr_map();
110 if (vmflush
&& (COMPRESSED_PAGER_IS_ACTIVE
|| dp_isssd
)) {
114 if (COMPRESSED_PAGER_IS_ACTIVE
) {
115 vm_decompressor_lock();
116 need_to_unlock_decompressor
= TRUE
;
118 hibernate_flush_memory();
122 // pages we could force out to reduce hibernate image size
123 gobble_count
= (uint32_t)((((uint64_t) page_list
->page_count
) * ((uint64_t) free_page_ratio
)) / 100);
125 // no failures hereafter
127 hibernate_processor_setup(header
);
130 hibernate_gobble_pages(gobble_count
, free_page_time
);
132 HIBLOG("hibernate_alloc_pages act %d, inact %d, anon %d, throt %d, spec %d, wire %d, wireinit %d\n",
133 vm_page_active_count
, vm_page_inactive_count
,
134 vm_page_anonymous_count
, vm_page_throttled_count
, vm_page_speculative_count
,
135 vm_page_wire_count
, vm_page_wire_count_initial
);
137 if (retval
!= KERN_SUCCESS
&& need_to_unlock_decompressor
== TRUE
) {
138 need_to_unlock_decompressor
= FALSE
;
139 vm_decompressor_unlock();
145 hibernate_teardown(hibernate_page_list_t
* page_list
,
146 hibernate_page_list_t
* page_list_wired
,
147 hibernate_page_list_t
* page_list_pal
)
149 hibernate_free_gobble_pages();
152 kfree(page_list
, page_list
->list_size
);
154 kfree(page_list_wired
, page_list_wired
->list_size
);
156 kfree(page_list_pal
, page_list_pal
->list_size
);
158 if (COMPRESSED_PAGER_IS_ACTIVE
) {
159 if (need_to_unlock_decompressor
== TRUE
) {
160 need_to_unlock_decompressor
= FALSE
;
161 vm_decompressor_unlock();
163 vm_compressor_delay_trim();
165 return (KERN_SUCCESS
);