Let set_addrlist() set AF_VSOCK client addresses. Signed-off-by: Stefan Hajnoczi <stefanha@xxxxxxxxxx> --- support/include/exportfs.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/support/include/exportfs.h b/support/include/exportfs.h index 98d45c5..e73f74e 100644 --- a/support/include/exportfs.h +++ b/support/include/exportfs.h @@ -89,6 +89,9 @@ 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 + case AF_VSOCK: + memcpy(&clp->m_addrlist[i].svm, sap, sizeof(struct sockaddr_vm)); + break; } } -- 2.13.5 -- 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