Advertisement
gusibsd

Untitled

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