aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Egger <Christoph.Egger@amd.com>2011-01-27 19:03:42 +0000
committerChristoph Egger <Christoph.Egger@amd.com>2011-01-27 19:03:42 +0000
commite46432026803ad6f750db3b448d962dc20c656e9 (patch)
tree2610b0faf51f482de46c85cb623076ff65bee2d7
parent921fb156d4bd70020211e377207f52e06cb12e16 (diff)
downloadxen-e46432026803ad6f750db3b448d962dc20c656e9.tar.gz
xen-e46432026803ad6f750db3b448d962dc20c656e9.tar.bz2
xen-e46432026803ad6f750db3b448d962dc20c656e9.zip
libxc: break xc_get_physmem out into os-dependent files
NetBSD doesn't have sysconf(_SC_PHYS_PAGES). Factor physmem() out into os-dependent files and rename it to xc_get_physmem() so as not to pollute the namespace. Signed-off-by: Christoph Egger <Christoph.Egger@amd.com> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> Committed-by: Ian Jackson <ian.jackson@eu.citrix.com>
-rw-r--r--tools/libxc/xc_dom_bzimageloader.c23
-rw-r--r--tools/libxc/xc_linux.c21
-rw-r--r--tools/libxc/xc_netbsd.c21
-rw-r--r--tools/libxc/xc_private.h3
4 files changed, 46 insertions, 22 deletions
diff --git a/tools/libxc/xc_dom_bzimageloader.c b/tools/libxc/xc_dom_bzimageloader.c
index e3ea39f59a..5d949985e0 100644
--- a/tools/libxc/xc_dom_bzimageloader.c
+++ b/tools/libxc/xc_dom_bzimageloader.c
@@ -140,27 +140,6 @@ static int xc_try_bzip2_decode(
#include <lzma.h>
-static uint64_t physmem(void)
-{
- uint64_t ret = 0;
- const long pagesize = sysconf(_SC_PAGESIZE);
- const long pages = sysconf(_SC_PHYS_PAGES);
-
- if ( (pagesize != -1) || (pages != -1) )
- {
- /*
- * According to docs, pagesize * pages can overflow.
- * Simple case is 32-bit box with 4 GiB or more RAM,
- * which may report exactly 4 GiB of RAM, and "long"
- * being 32-bit will overflow. Casting to uint64_t
- * hopefully avoids overflows in the near future.
- */
- ret = (uint64_t)(pagesize) * (uint64_t)(pages);
- }
-
- return ret;
-}
-
static int xc_try_lzma_decode(
struct xc_dom_image *dom, void **blob, size_t *size)
{
@@ -173,7 +152,7 @@ static int xc_try_lzma_decode(
int outsize;
const char *msg;
- ret = lzma_alone_decoder(&stream, physmem() / 3);
+ ret = lzma_alone_decoder(&stream, xc_get_physmem() / 3);
if ( ret != LZMA_OK )
{
DOMPRINTF("LZMA: Failed to init stream decoder");
diff --git a/tools/libxc/xc_linux.c b/tools/libxc/xc_linux.c
index 9acf27573e..66b055cbe4 100644
--- a/tools/libxc/xc_linux.c
+++ b/tools/libxc/xc_linux.c
@@ -55,6 +55,27 @@ void discard_file_cache(xc_interface *xch, int fd, int flush)
errno = saved_errno;
}
+uint64_t xc_get_physmem(void)
+{
+ uint64_t ret = 0;
+ const long pagesize = sysconf(_SC_PAGESIZE);
+ const long pages = sysconf(_SC_PHYS_PAGES);
+
+ if ( (pagesize != -1) || (pages != -1) )
+ {
+ /*
+ * According to docs, pagesize * pages can overflow.
+ * Simple case is 32-bit box with 4 GiB or more RAM,
+ * which may report exactly 4 GiB of RAM, and "long"
+ * being 32-bit will overflow. Casting to uint64_t
+ * hopefully avoids overflows in the near future.
+ */
+ ret = (uint64_t)(pagesize) * (uint64_t)(pages);
+ }
+
+ return ret;
+}
+
/*
* Local variables:
* mode: C
diff --git a/tools/libxc/xc_netbsd.c b/tools/libxc/xc_netbsd.c
index 8c82e36645..76d80595e8 100644
--- a/tools/libxc/xc_netbsd.c
+++ b/tools/libxc/xc_netbsd.c
@@ -23,6 +23,9 @@
#include <xen/sys/evtchn.h>
#include <unistd.h>
#include <fcntl.h>
+#include <stdio.h>
+#include <errno.h>
+#include <sys/sysctl.h>
static xc_osdep_handle netbsd_privcmd_open(xc_interface *xch)
{
@@ -351,6 +354,24 @@ void discard_file_cache(xc_interface *xch, int fd, int flush)
errno = saved_errno;
}
+uint64_t xc_get_physmem(void)
+{
+ int mib[2], rc;
+ size_t len;
+ uint64_t physmem;
+
+ mib[0] = CTL_HW;
+ mib[1] = HW_PHYSMEM64;
+ rc = sysctl(mib, 2, &physmem, &len, NULL, 0);
+
+ if (rc == -1) {
+ /* PERROR("%s: Failed to get hw.physmem64: %s\n", strerror(errno)); */
+ return 0;
+ }
+
+ return physmem;
+}
+
static struct xc_osdep_ops *netbsd_osdep_init(xc_interface *xch, enum xc_osdep_type type)
{
switch ( type )
diff --git a/tools/libxc/xc_private.h b/tools/libxc/xc_private.h
index b01ca2419d..4d19dd6144 100644
--- a/tools/libxc/xc_private.h
+++ b/tools/libxc/xc_private.h
@@ -275,6 +275,9 @@ void bitmap_byte_to_64(uint64_t *lp, const uint8_t *bp, int nbits);
/* Optionally flush file to disk and discard page cache */
void discard_file_cache(xc_interface *xch, int fd, int flush);
+/* How much physical RAM is available? */
+uint64_t xc_get_physmem(void);
+
#define MAX_MMU_UPDATES 1024
struct xc_mmu {
mmu_update_t updates[MAX_MMU_UPDATES];