diff --git a/nova/virt/xenapi/vm_utils.py b/nova/virt/xenapi/vm_utils.py index 9dbc33ba683..e30c0fce156 100644 --- a/nova/virt/xenapi/vm_utils.py +++ b/nova/virt/xenapi/vm_utils.py @@ -1383,7 +1383,7 @@ def _mount_filesystem(dev_path, dir): """mounts the device specified by dev_path in dir""" try: out, err = utils.execute('mount', - '-t', 'ext2,ext3', + '-t', 'ext2,ext3,ext4,reiserfs', dev_path, dir, run_as_root=True) except exception.ProcessExecutionError as e: err = str(e)