|
Linux Kernel
3.7.1
|
#include <linux/kernel.h>#include <linux/module.h>#include <linux/capability.h>#include <xen/xen.h>#include <xen/interface/xen.h>#include <xen/balloon.h>#include <xen/xenbus.h>#include <xen/features.h>#include <xen/page.h>Go to the source code of this file.
Macros | |
| #define | PAGES2KB(_p) ((_p)<<(PAGE_SHIFT-10)) |
| #define | BALLOON_CLASS_NAME "xen_memory" |
| #define | BALLOON_SHOW(name, format, args...) |
Functions | |
| subsys_initcall (balloon_init) | |
| module_exit (balloon_exit) | |
| BALLOON_SHOW (current_kb,"%lu\n", PAGES2KB(balloon_stats.current_pages)) | |
| BALLOON_SHOW (low_kb,"%lu\n", PAGES2KB(balloon_stats.balloon_low)) | |
| BALLOON_SHOW (high_kb,"%lu\n", PAGES2KB(balloon_stats.balloon_high)) | |
| MODULE_LICENSE ("GPL") | |
| #define BALLOON_CLASS_NAME "xen_memory" |
Definition at line 46 of file xen-balloon.c.
| #define PAGES2KB | ( | _p | ) | ((_p)<<(PAGE_SHIFT-10)) |
Definition at line 44 of file xen-balloon.c.
| BALLOON_SHOW | ( | current_kb | , |
| "%lu\n" | , | ||
| PAGES2KB(balloon_stats.current_pages) | |||
| ) |
| BALLOON_SHOW | ( | low_kb | , |
| "%lu\n" | , | ||
| PAGES2KB(balloon_stats.balloon_low) | |||
| ) |
| BALLOON_SHOW | ( | high_kb | , |
| "%lu\n" | , | ||
| PAGES2KB(balloon_stats.balloon_high) | |||
| ) |
| module_exit | ( | balloon_exit | ) |
| MODULE_LICENSE | ( | "GPL" | ) |
| subsys_initcall | ( | balloon_init | ) |
1.8.2