WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] xenstore -- read UUID

To: xen developers community <xen-devel@xxxxxxxxxxxxxxxxxxx>, xen users community <xen-users@xxxxxxxxxxxxxxxxxxx>
Subject: [Xen-devel] xenstore -- read UUID
From: dinesh chandrasekaran <dinesh_chan8@xxxxxxxxxxx>
Date: Wed, 10 Sep 2008 01:06:34 +0530
Cc:
Delivery-date: Tue, 09 Sep 2008 12:36:58 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
Importance: Normal
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Hi All,

     Im trying to read the UUID of a domain-U from domain-0 using the following code from inside say xen/common/memory.c.

The include file <xs.h> is present both in /usr/include and tools/xenstore/xs.h

#include <xs.h>    
static int get_domain_uuid(unsigned int domain_id) {
        struct xs_handle *xs;
        xs_transaction_t t;
        char *path;
        unsigned int *len;
        void *uuid;
        xs = xs_daemon_open();
        if (xs == NULL)
                return 1;
        path = xs_get_domain_path(xs, domain_id);
        if (path == NULL)
                return 1;
        strcat (path, '/uuid');
        len = strlen(path) + 1;
        uuid = xs_read(xs, t, path, len);
        printf('%lx \n', (char) (*uuid));
        xs_daemon_close(xs);
        free(path);
        return 0;
}

when compiled throws an error ( xs.h - no such file or directory).

How to access xenstore and read the doamin UUID from dom-0 specifically from inside xen/common/memory.c?

regards,
Dinesh C


Voice your opinion on the burning issues of the day. Discuss, debate with the world. Logon to message boards on MSN. Try it!
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
<Prev in Thread] Current Thread [Next in Thread>