Searched refs:balloon_stats (Results 1 – 4 of 4) sorted by relevance
/Linux-v4.19/drivers/xen/ |
D | balloon.c | 141 struct balloon_stats balloon_stats; variable 142 EXPORT_SYMBOL_GPL(balloon_stats); 167 balloon_stats.balloon_high++; in __balloon_append() 170 balloon_stats.balloon_low++; in __balloon_append() 194 balloon_stats.balloon_high--; in balloon_retrieve() 196 balloon_stats.balloon_low--; in balloon_retrieve() 218 balloon_stats.schedule_delay = 1; in update_schedule() 219 balloon_stats.retry_count = 1; in update_schedule() 223 ++balloon_stats.retry_count; in update_schedule() 225 if (balloon_stats.max_retry_count != RETRY_UNLIMITED && in update_schedule() [all …]
|
D | xen-balloon.c | 86 : static_max - balloon_stats.target_pages; in watch_target() 133 BALLOON_SHOW(current_kb, "%lu\n", PAGES2KB(balloon_stats.current_pages)); 134 BALLOON_SHOW(low_kb, "%lu\n", PAGES2KB(balloon_stats.balloon_low)); 135 BALLOON_SHOW(high_kb, "%lu\n", PAGES2KB(balloon_stats.balloon_high)); 137 static DEVICE_ULONG_ATTR(schedule_delay, 0444, balloon_stats.schedule_delay); 138 static DEVICE_ULONG_ATTR(max_schedule_delay, 0644, balloon_stats.max_schedule_delay); 139 static DEVICE_ULONG_ATTR(retry_count, 0444, balloon_stats.retry_count); 140 static DEVICE_ULONG_ATTR(max_retry_count, 0644, balloon_stats.max_retry_count); 146 return sprintf(buf, "%lu\n", PAGES2KB(balloon_stats.target_pages)); in show_target_kb() 175 (unsigned long long)balloon_stats.target_pages in show_target()
|
D | xen-selfballoon.c | 230 balloon_stats.current_pages - totalram_pages); in selfballoon_process()
|
/Linux-v4.19/include/xen/ |
D | balloon.h | 8 struct balloon_stats { struct 23 extern struct balloon_stats balloon_stats; argument
|