Advertisement
gusibsd

Untitled

Apr 1st, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. CC tcg-runtime.o
  2. migration-rdma.c: In function 'qemu_rdma_resolve_host':
  3. migration-rdma.c:912:5: warning: implicit declaration of function 'rdma_getaddrinfo' [-Wimplicit-function-declaration]
  4. ret = rdma_getaddrinfo(rdma->host, port_str, NULL, &res);
  5. ^
  6. migration-rdma.c:912:5: warning: nested extern declaration of 'rdma_getaddrinfo' [-Wnested-externs]
  7. migration-rdma.c:918:35: error: dereferencing pointer to incomplete type
  8. for (e = res; e != NULL; e = e->ai_next) {
  9. ^
  10. migration-rdma.c:919:20: error: dereferencing pointer to incomplete type
  11. inet_ntop(e->ai_family,
  12. ^
  13. migration-rdma.c:920:39: error: dereferencing pointer to incomplete type
  14. &((struct sockaddr_in *) e->ai_dst_addr)->sin_addr, ip, sizeof ip);
  15. ^
  16. migration-rdma.c:923:53: error: dereferencing pointer to incomplete type
  17. ret = rdma_resolve_addr(rdma->cm_id, NULL, e->ai_dst_addr,
  18. ^
  19. migration-rdma.c:926:18: error: dereferencing pointer to incomplete type
  20. if (e->ai_family == AF_INET6) {
  21. ^
  22. migration-rdma.c: In function 'qemu_rdma_dest_init':
  23. migration-rdma.c:2456:39: error: dereferencing pointer to incomplete type
  24. for (e = res; e != NULL; e = e->ai_next) {
  25. ^
  26. migration-rdma.c:2457:24: error: dereferencing pointer to incomplete type
  27. inet_ntop(e->ai_family,
  28. ^
  29. migration-rdma.c:2458:43: error: dereferencing pointer to incomplete type
  30. &((struct sockaddr_in *) e->ai_dst_addr)->sin_addr, ip, sizeof ip);
  31. ^
  32. migration-rdma.c:2460:46: error: dereferencing pointer to incomplete type
  33. ret = rdma_bind_addr(listen_id, e->ai_dst_addr);
  34. ^
  35. migration-rdma.c:2462:22: error: dereferencing pointer to incomplete type
  36. if (e->ai_family == AF_INET6) {
  37. ^
  38. /usr/home/gus/xen/tools/qemu-xen-dir/rules.mak:57: recipe for target 'migration-rdma.o' failed
  39. gmake[3]: *** [migration-rdma.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement