Home
last modified time | relevance | path

Searched refs:balloon_stats (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.4/drivers/xen/
Dballoon.c138 struct balloon_stats balloon_stats; variable
139 EXPORT_SYMBOL_GPL(balloon_stats);
166 balloon_stats.balloon_high++; in balloon_append()
169 balloon_stats.balloon_low++; in balloon_append()
188 balloon_stats.balloon_high--; in balloon_retrieve()
190 balloon_stats.balloon_low--; in balloon_retrieve()
213 balloon_stats.schedule_delay = 1; in update_schedule()
214 balloon_stats.retry_count = 1; in update_schedule()
218 ++balloon_stats.retry_count; in update_schedule()
220 if (balloon_stats.max_retry_count != RETRY_UNLIMITED && in update_schedule()
[all …]
Dxen-balloon.c100 : static_max - balloon_stats.target_pages; in watch_target()
145 BALLOON_SHOW(current_kb, "%lu\n", PAGES2KB(balloon_stats.current_pages));
146 BALLOON_SHOW(low_kb, "%lu\n", PAGES2KB(balloon_stats.balloon_low));
147 BALLOON_SHOW(high_kb, "%lu\n", PAGES2KB(balloon_stats.balloon_high));
149 static DEVICE_ULONG_ATTR(schedule_delay, 0444, balloon_stats.schedule_delay);
150 static DEVICE_ULONG_ATTR(max_schedule_delay, 0644, balloon_stats.max_schedule_delay);
151 static DEVICE_ULONG_ATTR(retry_count, 0444, balloon_stats.retry_count);
152 static DEVICE_ULONG_ATTR(max_retry_count, 0644, balloon_stats.max_retry_count);
158 return sprintf(buf, "%lu\n", PAGES2KB(balloon_stats.target_pages)); in show_target_kb()
187 (unsigned long long)balloon_stats.target_pages in show_target()
/Linux-v5.4/include/xen/
Dballoon.h8 struct balloon_stats { struct
23 extern struct balloon_stats balloon_stats; argument