aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/tmem.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-05-27 08:19:30 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-05-27 08:19:30 +0100
commite3e8ff02c5f467b72078bf9246b2484844c4cadc (patch)
tree3afe017f488688963bdb7ddfe00adc884d06b19d /xen/common/tmem.c
parent0f1cb96e9785294f149ab3c7feb90c0eb9daeede (diff)
downloadxen-e3e8ff02c5f467b72078bf9246b2484844c4cadc.tar.gz
xen-e3e8ff02c5f467b72078bf9246b2484844c4cadc.tar.bz2
xen-e3e8ff02c5f467b72078bf9246b2484844c4cadc.zip
tmem: build fix
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'xen/common/tmem.c')
-rw-r--r--xen/common/tmem.c23
1 files changed, 13 insertions, 10 deletions
diff --git a/xen/common/tmem.c b/xen/common/tmem.c
index 19d8bec05c..0ab7b55c86 100644
--- a/xen/common/tmem.c
+++ b/xen/common/tmem.c
@@ -1564,9 +1564,9 @@ static int tmemc_list_client(client_t *c, tmem_cli_va_t buf, int off,
c->frozen, use_long ? ',' : '\n');
if (use_long)
n += scnprintf(info+n,BSIZE-n,
- "Ec:%ld,Em:%ld,cp:%ld,cb:%lld,cn:%ld,cm:%ld\n",
+ "Ec:%ld,Em:%ld,cp:%ld,cb:%"PRId64",cn:%ld,cm:%ld\n",
c->eph_count, c->eph_count_max,
- c->compressed_pages, (long long)c->compressed_sum_size,
+ c->compressed_pages, c->compressed_sum_size,
c->compress_poor, c->compress_nomem);
tmh_copy_to_client_buf_offset(buf,off+sum,info,n+1);
sum += n;
@@ -1575,11 +1575,13 @@ static int tmemc_list_client(client_t *c, tmem_cli_va_t buf, int off,
if ( (p = c->pools[i]) == NULL )
continue;
s = is_shared(p);
- n = scnprintf(info,BSIZE,"P=CI:%d,PI:%d,PT:%c%c,U0:%llx,U1:%llx%c",
- c->cli_id, p->pool_id,
- is_persistent(p) ? 'P' : 'E', s ? 'S' : 'P',
- s ? p->uuid[0] : 0LL, s ? p->uuid[1] : 0LL,
- use_long ? ',' : '\n');
+ n = scnprintf(info,BSIZE,"P=CI:%d,PI:%d,"
+ "PT:%c%c,U0:%"PRIx64",U1:%"PRIx64"%c",
+ c->cli_id, p->pool_id,
+ is_persistent(p) ? 'P' : 'E', s ? 'S' : 'P',
+ (uint64_t)(s ? p->uuid[0] : 0),
+ (uint64_t)(s ? p->uuid[1] : 0LL),
+ use_long ? ',' : '\n');
if (use_long)
n += scnprintf(info+n,BSIZE-n,
"Pc:%d,Pm:%d,Oc:%ld,Om:%ld,Nc:%lu,Nm:%lu,"
@@ -1612,9 +1614,10 @@ static int tmemc_list_shared(tmem_cli_va_t buf, int off, uint32_t len,
{
if ( (p = global_shared_pools[i]) == NULL )
continue;
- n = scnprintf(info+n,BSIZE-n,"S=SI:%d,PT:%c%c,U0:%llx,U1:%llx",
- i, is_persistent(p) ? 'P' : 'E', is_shared(p) ? 'S' : 'P',
- (unsigned long long)p->uuid[0], (unsigned long long)p->uuid[1]);
+ n = scnprintf(info+n,BSIZE-n,"S=SI:%d,PT:%c%c,U0:%"PRIx64",U1:%"PRIx64,
+ i, is_persistent(p) ? 'P' : 'E',
+ is_shared(p) ? 'S' : 'P',
+ p->uuid[0], p->uuid[1]);
list_for_each_entry(sl,&p->share_list, share_list)
n += scnprintf(info+n,BSIZE-n,",SC:%d",sl->client->cli_id);
n += scnprintf(info+n,BSIZE-n,"%c", use_long ? ',' : '\n');