Displaying 6 results from an estimated 6 matches for "nfs_export".
Did you mean:
xfs_export
2017 Jul 07
3
Re: virt-v2v import from KVM without storage-pool ?
...ge vol with matching path '/root/RHEL-7.3-x86_64-latest.qcow2'
....
3.Try to convert this guest to rhv by virt-v2v on v2v conversion server,could import the guest from export domain to data domain on rhv4.1 after finishing conversion
# virt-v2v avocado-vt-vm1 -o rhv -os 10.73.131.93:/home/nfs_export
[ 0.0] Opening the source -i libvirt avocado-vt-vm1
[ 0.0] Creating an overlay to protect the source from being modified
[ 0.4] Initializing the target -o rhv -os 10.73.131.93:/home/nfs_export
[ 0.7] Opening the overlay
[ 6.1] Inspecting the overlay
[ 13.8] Checking for sufficient free d...
2017 Jul 07
1
Re: virt-v2v import from KVM without storage-pool ?
....3-x86_64-latest.qcow2'
>> ....
>>
>>
>> 3.Try to convert this guest to rhv by virt-v2v on v2v conversion server,could import the guest from export domain to data domain on rhv4.1 after finishing conversion
>> # virt-v2v avocado-vt-vm1 -o rhv -os 10.73.131.93:/home/nfs_export
>> [ 0.0] Opening the source -i libvirt avocado-vt-vm1
>> [ 0.0] Creating an overlay to protect the source from being modified
>> [ 0.4] Initializing the target -o rhv -os 10.73.131.93:/home/nfs_export
>> [ 0.7] Opening the overlay
>> [ 6.1] Inspecting the ov...
2017 Jul 05
3
virt-v2v import from KVM without storage-pool ?
hi,
i'm trying to import a VM in oVirt from a KVM host that doesn't use
storage pools. this fails with the following message in
/var/log/vdsm/vdsm.log:
2017-07-05 09:34:20,513+0200 ERROR (jsonrpc/5) [root] Error getting disk
size (v2v:1089)
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/vdsm/v2v.py", line 1078, in
_get_disk_info
vol =
2017 Jul 07
0
Re: virt-v2v import from KVM without storage-pool ?
...'/root/RHEL-7.3-x86_64-latest.qcow2'
> ....
>
>
> 3.Try to convert this guest to rhv by virt-v2v on v2v conversion server,could import the guest from export domain to data domain on rhv4.1 after finishing conversion
> # virt-v2v avocado-vt-vm1 -o rhv -os 10.73.131.93:/home/nfs_export
> [ 0.0] Opening the source -i libvirt avocado-vt-vm1
> [ 0.0] Creating an overlay to protect the source from being modified
> [ 0.4] Initializing the target -o rhv -os 10.73.131.93:/home/nfs_export
> [ 0.7] Opening the overlay
> [ 6.1] Inspecting the overlay
> [ 13.8]...
2006 Oct 31
0
6344186 NFSv3 needs to support .zfs (like NFSv4 already does)
.../common/fs/nfs/nfs3_srv.c
update: usr/src/uts/common/fs/nfs/nfs3_xdr.c
update: usr/src/uts/common/fs/nfs/nfs4_srv_ns.c
update: usr/src/uts/common/fs/nfs/nfs4_xdr.c
update: usr/src/uts/common/fs/nfs/nfs_acl_srv.c
update: usr/src/uts/common/fs/nfs/nfs_acl_xdr.c
update: usr/src/uts/common/fs/nfs/nfs_export.c
update: usr/src/uts/common/fs/nfs/nfs_log.c
update: usr/src/uts/common/fs/nfs/nfs_log_xdr.c
update: usr/src/uts/common/fs/nfs/nfs_server.c
update: usr/src/uts/common/fs/nfs/nfs_srv.c
update: usr/src/uts/common/nfs/nfs.h
update: usr/src/uts/common/nfs/nfs4.h
update: usr/src/uts/common/nfs/n...
2010 Jun 17
4
[PATCH] Improve support for exporting btrfs subvolumes.
...uidlen, uuid);
+ return 1;
+}
+
/* Iterate through /etc/mtab, finding mountpoints
* at or below a given path
*/
@@ -398,6 +442,7 @@ void nfsd_fh(FILE *f)
struct stat stb;
char u[16];
char *path;
+ int type;
if (exp->m_export.e_flags & NFSEXP_CROSSMOUNT) {
static nfs_export *prev = NULL;
@@ -461,10 +506,14 @@ void nfsd_fh(FILE *f)
continue;
check_uuid:
if (exp->m_export.e_uuid)
- get_uuid(NULL, exp->m_export.e_uuid,
+ get_uuid(exp->m_export.e_uuid,
uuidlen, u);
- else if (get_uuid(path, NULL, uuidlen, u) == 0)
- continue;...