diff options
author | Amit Shah <amit.shah@redhat.com> | 2011-07-20 13:08:46 +0530 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-08-04 16:43:08 -0500 |
commit | 0a2a30d5add5100d0c6cd4b466b227f7d76d19cf (patch) | |
tree | 6b908d478fd1d3342d27f65b8f14b435de94ffe7 /balloon.h | |
parent | a6f4e09d90cef88be07cd597c2f2a9f0b3ed0763 (diff) |
balloon: Make functions, local vars static
balloon.h had function declarations for a couple of functions that are
local to balloon.c. Make them static.
Drop the 'qemu_' prefix for balloon.c-local variables, and make them
static.
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'balloon.h')
-rw-r--r-- | balloon.h | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -21,10 +21,6 @@ typedef void (QEMUBalloonEvent)(void *opaque, ram_addr_t target, void qemu_add_balloon_handler(QEMUBalloonEvent *func, void *opaque); -int qemu_balloon(ram_addr_t target, MonitorCompletion cb, void *opaque); - -int qemu_balloon_status(MonitorCompletion cb, void *opaque); - void monitor_print_balloon(Monitor *mon, const QObject *data); int do_info_balloon(Monitor *mon, MonitorCompletion cb, void *opaque); int do_balloon(Monitor *mon, const QDict *params, |