Displaying 1 result from an estimated 1 matches for "vir_storage_pool_netfs_nfs4".
Did you mean:
  vir_storage_pool_netfs_nfs
  
2010 Oct 27
1
Compiling libvirt-0.8.4 for NFSv4
...v4 support.  I wanted
to define NFSv4 pool from xml config, but it's not an option.  I decided
to hack a bit.  Added the following to source code:
 
 
storage_conf.h(417):
 
enum virStoragePoolFormatFileSystemNet {
    VIR_STORAGE_POOL_NETFS_AUTO = 0,
    VIR_STORAGE_POOL_NETFS_NFS,
    VIR_STORAGE_POOL_NETFS_NFS4,
    VIR_STORAGE_POOL_NETFS_GLUSTERFS,
    VIR_STORAGE_POOL_NETFS_CIFS,
    VIR_STORAGE_POOL_NETFS_LAST,
};
 
 
storage_conf.c(64):
 
VIR_ENUM_IMPL(virStoragePoolFormatFileSystemNet,
              VIR_STORAGE_POOL_NETFS_LAST,
              "auto", "nfs", "nfs4&qu...