]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
net: declare struct iovec in checksum.h to fix compiler warning
authorMichael Tokarev <mjt@tls.msk.ru>
Fri, 7 Feb 2014 08:22:18 +0000 (12:22 +0400)
committerMichael Tokarev <mjt@tls.msk.ru>
Sat, 15 Feb 2014 12:10:25 +0000 (16:10 +0400)
The checksum calculation header exports a function that refers to
struct iov defined in iov.h.  Without including the former, build
fails like this:

  In file included from hw/net/fsl_etsec/rings.c:24:0:
  include/net/checksum.h:51:31: error: â€˜struct iovec’ declared inside parameter list [-Werror]
  include/net/checksum.h:51:31: error: its scope is only this definition or declaration, which is probably not what you want [-Werror]

Mention struct iovec there.

Reported-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
include/net/checksum.h

index 80203fb6e0f2957ec4dc316da6e9c9332ad5f23b..2d7a363d40009cbca532c0f20da09cb975f4eb99 100644 (file)
@@ -19,6 +19,7 @@
 #define QEMU_NET_CHECKSUM_H
 
 #include <stdint.h>
+struct iovec;
 
 uint32_t net_checksum_add_cont(int len, uint8_t *buf, int seq);
 uint16_t net_checksum_finish(uint32_t sum);