balloon_stats     138 drivers/xen/balloon.c struct balloon_stats balloon_stats;
balloon_stats     139 drivers/xen/balloon.c EXPORT_SYMBOL_GPL(balloon_stats);
balloon_stats     166 drivers/xen/balloon.c 		balloon_stats.balloon_high++;
balloon_stats     169 drivers/xen/balloon.c 		balloon_stats.balloon_low++;
balloon_stats     188 drivers/xen/balloon.c 		balloon_stats.balloon_high--;
balloon_stats     190 drivers/xen/balloon.c 		balloon_stats.balloon_low--;
balloon_stats     213 drivers/xen/balloon.c 		balloon_stats.schedule_delay = 1;
balloon_stats     214 drivers/xen/balloon.c 		balloon_stats.retry_count = 1;
balloon_stats     218 drivers/xen/balloon.c 	++balloon_stats.retry_count;
balloon_stats     220 drivers/xen/balloon.c 	if (balloon_stats.max_retry_count != RETRY_UNLIMITED &&
balloon_stats     221 drivers/xen/balloon.c 			balloon_stats.retry_count > balloon_stats.max_retry_count) {
balloon_stats     222 drivers/xen/balloon.c 		balloon_stats.schedule_delay = 1;
balloon_stats     223 drivers/xen/balloon.c 		balloon_stats.retry_count = 1;
balloon_stats     227 drivers/xen/balloon.c 	balloon_stats.schedule_delay <<= 1;
balloon_stats     229 drivers/xen/balloon.c 	if (balloon_stats.schedule_delay > balloon_stats.max_schedule_delay)
balloon_stats     230 drivers/xen/balloon.c 		balloon_stats.schedule_delay = balloon_stats.max_schedule_delay;
balloon_stats     294 drivers/xen/balloon.c 	credit = balloon_stats.target_pages + balloon_stats.target_unpopulated
balloon_stats     295 drivers/xen/balloon.c 		- balloon_stats.total_pages;
balloon_stats     359 drivers/xen/balloon.c 	balloon_stats.total_pages += balloon_hotplug;
balloon_stats     398 drivers/xen/balloon.c 	balloon_stats.target_pages = balloon_stats.current_pages +
balloon_stats     399 drivers/xen/balloon.c 				     balloon_stats.target_unpopulated;
balloon_stats     406 drivers/xen/balloon.c 	return balloon_stats.target_pages - balloon_stats.current_pages;
balloon_stats     411 drivers/xen/balloon.c 	return balloon_stats.balloon_low || balloon_stats.balloon_high;
balloon_stats     448 drivers/xen/balloon.c 	balloon_stats.current_pages += rc;
balloon_stats     505 drivers/xen/balloon.c 	balloon_stats.current_pages -= nr_pages;
balloon_stats     554 drivers/xen/balloon.c 		schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
balloon_stats     561 drivers/xen/balloon.c 	balloon_stats.target_pages = target;
balloon_stats     605 drivers/xen/balloon.c 	balloon_stats.target_unpopulated += nr_pages;
balloon_stats     655 drivers/xen/balloon.c 	balloon_stats.target_unpopulated -= nr_pages;
balloon_stats     685 drivers/xen/balloon.c 	balloon_stats.total_pages += extra_pfn_end - start_pfn;
balloon_stats     697 drivers/xen/balloon.c 	balloon_stats.current_pages = xen_pv_domain()
balloon_stats     701 drivers/xen/balloon.c 	balloon_stats.current_pages = get_num_physpages();
balloon_stats     703 drivers/xen/balloon.c 	balloon_stats.target_pages  = balloon_stats.current_pages;
balloon_stats     704 drivers/xen/balloon.c 	balloon_stats.balloon_low   = 0;
balloon_stats     705 drivers/xen/balloon.c 	balloon_stats.balloon_high  = 0;
balloon_stats     706 drivers/xen/balloon.c 	balloon_stats.total_pages   = balloon_stats.current_pages;
balloon_stats     708 drivers/xen/balloon.c 	balloon_stats.schedule_delay = 1;
balloon_stats     709 drivers/xen/balloon.c 	balloon_stats.max_schedule_delay = 32;
balloon_stats     710 drivers/xen/balloon.c 	balloon_stats.retry_count = 1;
balloon_stats     711 drivers/xen/balloon.c 	balloon_stats.max_retry_count = 4;
balloon_stats      97 drivers/xen/xen-balloon.c 			static_max = balloon_stats.current_pages;
balloon_stats     100 drivers/xen/xen-balloon.c 				: static_max - balloon_stats.target_pages;
balloon_stats     145 drivers/xen/xen-balloon.c BALLOON_SHOW(current_kb, "%lu\n", PAGES2KB(balloon_stats.current_pages));
balloon_stats     146 drivers/xen/xen-balloon.c BALLOON_SHOW(low_kb, "%lu\n", PAGES2KB(balloon_stats.balloon_low));
balloon_stats     147 drivers/xen/xen-balloon.c BALLOON_SHOW(high_kb, "%lu\n", PAGES2KB(balloon_stats.balloon_high));
balloon_stats     149 drivers/xen/xen-balloon.c static DEVICE_ULONG_ATTR(schedule_delay, 0444, balloon_stats.schedule_delay);
balloon_stats     150 drivers/xen/xen-balloon.c static DEVICE_ULONG_ATTR(max_schedule_delay, 0644, balloon_stats.max_schedule_delay);
balloon_stats     151 drivers/xen/xen-balloon.c static DEVICE_ULONG_ATTR(retry_count, 0444, balloon_stats.retry_count);
balloon_stats     152 drivers/xen/xen-balloon.c static DEVICE_ULONG_ATTR(max_retry_count, 0644, balloon_stats.max_retry_count);
balloon_stats     158 drivers/xen/xen-balloon.c 	return sprintf(buf, "%lu\n", PAGES2KB(balloon_stats.target_pages));
balloon_stats     187 drivers/xen/xen-balloon.c 		       (unsigned long long)balloon_stats.target_pages
balloon_stats      23 include/xen/balloon.h extern struct balloon_stats balloon_stats;