From 3333cec207a4d1738925c24ce1dd7ab913c36892 Mon Sep 17 00:00:00 2001
From: Daniel Veillard
Date: Sun, 22 Jan 2006 16:27:09 +0000
Subject: [PATCH] * doc/*: started to augment and update the documentation
Daniel
---
ChangeLog | 4 +++
docs/architecture.html | 21 ++++++------
docs/index.html | 3 +-
docs/intro.html | 23 ++++++++++++-
docs/libvir.html | 73 +++++++++++++++++++++++++++++++++---------
docs/news.html | 7 ++--
6 files changed, 98 insertions(+), 33 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8d2b2c99d2..a331566e6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Jan 22 17:26:20 CET 2006 Daniel Veillard
+
+ * doc/*: started to augment and update the documentation
+
Sat Jan 21 23:33:46 GMT 2006 Daniel Veillard
* doc//*: mostly finished the revamp in the plane, starts to look good
diff --git a/docs/architecture.html b/docs/architecture.html
index 7941ce39c2..28ea60a37f 100644
--- a/docs/architecture.html
+++ b/docs/architecture.html
@@ -8,14 +8,15 @@ kernels, the drivers and the xen daemon. Xend, the xen daemon, also runs in
Domain0 and supervise the control and execution of the sets of domains. The
hypervisor, drivers, kernels and daemons communicate though a shared system
bus implemented in the hypervisor. The figure below tries to provide a view
-of this environment:

The library can be initialized in 2 ways depending on the level of
+of this environment:

The library can be initialized in 2 ways depending on the level of
priviledge of the embedding program. If it runs with root access,
-virConnectOpen() can be used, it will use a read/write connection to the Xen
-Store and use Xen Hypervisor calls when possible. If it runs without root
-access virConnectOpenReadOnly() should be used, it will try to open the
-read-only socket /var/run/xenstored/socket_ro
to connect to the
-Xen Store. In this case use of hypervisor calls and write to the Xen Store
-will not be possible, restraining the amount of APIs available and slowing
-down information gathering about domains. We expect libvir will also conmnect
-to the Xend daemon for some of the domain control operations, though this is
-not the case in the 0.0.1 initial version.