Let set_addrlist() set AF_VSOCK client addresses. Signed-off-by: Stefan Hajnoczi <stefanha@xxxxxxxxxx> --- support/include/exportfs.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/support/include/exportfs.h b/support/include/exportfs.h index 98d45c5..d3d5abc 100644 --- a/support/include/exportfs.h +++ b/support/include/exportfs.h @@ -89,6 +89,11 @@ set_addrlist(nfs_client *clp, const int i, const struct sockaddr *sap) memcpy(&clp->m_addrlist[i].s6, sap, sizeof(struct sockaddr_in6)); break; #endif +#ifdef AF_VSOCK + case AF_VSOCK: + memcpy(&clp->m_addrlist[i].svm, sap, sizeof(struct sockaddr_vm)); + break; +#endif } } -- 2.9.4 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html