diff --git a/doc/src/docbkx/common/config-drive.xml b/doc/src/docbkx/common/config-drive.xml
index ee01c0d591..5f2053af81 100644
--- a/doc/src/docbkx/common/config-drive.xml
+++ b/doc/src/docbkx/common/config-drive.xml
@@ -30,7 +30,12 @@
>#1165174). Make sure you install this program on each compute host
before attempting to use config drive, or an instance will not boot
properly.
-
+
+
+ If you use Xen with a config drive, disable the agent through the
+ xenapi_disable_agent configuration parameter.
+
+
Enabling the config drive
diff --git a/doc/src/docbkx/openstack-config/compute-configure-backing-storage.xml b/doc/src/docbkx/openstack-config/compute-configure-backing-storage.xml
new file mode 100644
index 0000000000..502fc009e7
--- /dev/null
+++ b/doc/src/docbkx/openstack-config/compute-configure-backing-storage.xml
@@ -0,0 +1,33 @@
+
+ Configuring Compute Backing Storage
+ Backing Storage is the storage used to provide
+ the expanded operating system image, and any ephemeral storage.
+ Inside the virtual machine, this is normally presented as two
+ virtual hard disks (eg /dev/vda and /dev/vdb respectively).
+ However, inside OpenStack, this can be derived from one of three
+ methods: LVM, QCOW or RAW, chosen using the
+ libvirt_images_type option in nova.conf
+ on the compute node.
+ QCOW is the default backing store. It uses a copy-on-write philosophy to
+ delay allocation of storage until it is actually needed. This means that the
+ space required for the backing of an image can be significantly less on the real
+ disk than what seems available in the virtual machine operating system.
+
+ RAW creates files without any sort of file formatting, effectively creating
+ files with the plain binary one would normally see on a real disks. This can
+ increase performance, but means that the entire size of the virtual disk will be
+ reserved on the physical disk.
+
+ Local LVM volumes
+ can also be used.
+ Set libvirt_images_volume_group=nova_local where nova_local is the name
+ of the LVM group you have created.
+
+