diff options
| author | Peter Xu <peterx@redhat.com> | 2017-05-12 12:17:40 +0800 |
|---|---|---|
| committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2017-05-17 17:30:45 +0100 |
| commit | 22951aaaebb6c4c314c58ad576960a9c57695bbc (patch) | |
| tree | f1071715f4dbec35fdeca1703eaf6fb5815ebb74 /include/qemu-common.h | |
| parent | 99e15582dea30d4a7c6fa5be9196d0f4d759231c (diff) | |
| download | focaccia-qemu-22951aaaebb6c4c314c58ad576960a9c57695bbc.tar.gz focaccia-qemu-22951aaaebb6c4c314c58ad576960a9c57695bbc.zip | |
utils: provide size_to_str()
Moving the algorithm from print_type_size() into size_to_str() so that other component can also leverage it. With that, refactor print_type_size(). The assert() in that logic is removed though, since even UINT64_MAX would not overflow. Signed-off-by: Peter Xu <peterx@redhat.com> Message-Id: <1494562661-9063-3-git-send-email-peterx@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'include/qemu-common.h')
| -rw-r--r-- | include/qemu-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/qemu-common.h b/include/qemu-common.h index d218821c14..387ef520bf 100644 --- a/include/qemu-common.h +++ b/include/qemu-common.h @@ -145,6 +145,7 @@ void qemu_hexdump(const char *buf, FILE *fp, const char *prefix, size_t size); int parse_debug_env(const char *name, int max, int initial); const char *qemu_ether_ntoa(const MACAddr *mac); +char *size_to_str(uint64_t val); void page_size_init(void); /* returns non-zero if dump is in progress, otherwise zero is |