aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xenstat
diff options
context:
space:
mode:
authorKeir Fraser <keir@xensource.com>2007-05-07 13:52:50 +0100
committerKeir Fraser <keir@xensource.com>2007-05-07 13:52:50 +0100
commit19bfd597b44a6efc4f904b96a3c6b55261dc74f2 (patch)
tree99d115d20b425536a46a00592557d70bcf3de706 /tools/xenstat
parent199e9b6f53606b5cddb54dbc2fa133858c810853 (diff)
downloadxen-19bfd597b44a6efc4f904b96a3c6b55261dc74f2.tar.gz
xen-19bfd597b44a6efc4f904b96a3c6b55261dc74f2.tar.bz2
xen-19bfd597b44a6efc4f904b96a3c6b55261dc74f2.zip
xenstat: Remove the "vbd-%d-%d is a VBD." debugging statement.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'tools/xenstat')
-rw-r--r--tools/xenstat/libxenstat/src/xenstat_linux.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/xenstat/libxenstat/src/xenstat_linux.c b/tools/xenstat/libxenstat/src/xenstat_linux.c
index cc94dbadd3..2d442fb386 100644
--- a/tools/xenstat/libxenstat/src/xenstat_linux.c
+++ b/tools/xenstat/libxenstat/src/xenstat_linux.c
@@ -206,10 +206,8 @@ int xenstat_collect_vbds(xenstat_node * node)
ret = sscanf(dp->d_name, "vbd-%u-%u", &domid, &vbd.dev);
- if (ret != 2) {
+ if (ret != 2)
continue;
- }
- printf("%s is VBD.\n",dp->d_name);
domain = xenstat_node_domain(node, domid);
if (domain == NULL) {