All of lore.kernel.org
 help / color / mirror / Atom feed
* [net v2] selftests: txtimestamp: fix compilation issue
@ 2021-02-04 15:21 Vadim Fedorenko
  2021-02-04 15:50 ` Willem de Bruijn
  0 siblings, 1 reply; 3+ messages in thread
From: Vadim Fedorenko @ 2021-02-04 15:21 UTC (permalink / raw)
  To: Jakub Kicinski, Jian Yang, Willem de Bruijn; +Cc: Vadim Fedorenko, netdev

PACKET_TX_TIMESTAMP is defined in if_packet.h but it is not included in
test. It could be included instead of <netpacket/packet.h> otherwise
the error of redefinition arrives.

Fixes: 8fe2f761cae9 (net-timestamp: expand documentation)
Suggested-by: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
Signed-off-by: Vadim Fedorenko <vfedorenko@novek.ru>
---
 tools/testing/selftests/net/txtimestamp.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/tools/testing/selftests/net/txtimestamp.c b/tools/testing/selftests/net/txtimestamp.c
index 490a8cc..3d6bf54 100644
--- a/tools/testing/selftests/net/txtimestamp.c
+++ b/tools/testing/selftests/net/txtimestamp.c
@@ -26,6 +26,7 @@
 #include <inttypes.h>
 #include <linux/errqueue.h>
 #include <linux/if_ether.h>
+#include <linux/if_packet.h>
 #include <linux/ipv6.h>
 #include <linux/net_tstamp.h>
 #include <netdb.h>
@@ -34,7 +35,6 @@
 #include <netinet/ip.h>
 #include <netinet/udp.h>
 #include <netinet/tcp.h>
-#include <netpacket/packet.h>
 #include <poll.h>
 #include <stdarg.h>
 #include <stdbool.h>
@@ -53,6 +53,7 @@
 #define NSEC_PER_USEC	1000L
 #define USEC_PER_SEC	1000000L
 #define NSEC_PER_SEC	1000000000LL
+#define PACKET_TX_TIMESTAMP		16
 
 /* command line parameters */
 static int cfg_proto = SOCK_STREAM;
@@ -495,12 +496,12 @@ static void do_test(int family, unsigned int report_opt)
 	total_len = cfg_payload_len;
 	if (cfg_use_pf_packet || cfg_proto == SOCK_RAW) {
 		total_len += sizeof(struct udphdr);
-		if (cfg_use_pf_packet || cfg_ipproto == IPPROTO_RAW)
+		if (cfg_use_pf_packet || cfg_ipproto == IPPROTO_RAW) {
 			if (family == PF_INET)
 				total_len += sizeof(struct iphdr);
 			else
 				total_len += sizeof(struct ipv6hdr);
-
+		}
 		/* special case, only rawv6_sendmsg:
 		 * pass proto in sin6_port if not connected
 		 * also see ANK comment in net/ipv4/raw.c
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [net v2] selftests: txtimestamp: fix compilation issue
  2021-02-04 15:21 [net v2] selftests: txtimestamp: fix compilation issue Vadim Fedorenko
@ 2021-02-04 15:50 ` Willem de Bruijn
  2021-02-04 16:23   ` Vadim Fedorenko
  0 siblings, 1 reply; 3+ messages in thread
From: Willem de Bruijn @ 2021-02-04 15:50 UTC (permalink / raw)
  To: Vadim Fedorenko; +Cc: Jakub Kicinski, Jian Yang, Network Development

On Thu, Feb 4, 2021 at 10:21 AM Vadim Fedorenko <vfedorenko@novek.ru> wrote:
>
> PACKET_TX_TIMESTAMP is defined in if_packet.h but it is not included in
> test. It could be included instead of <netpacket/packet.h> otherwise
> the error of redefinition arrives.
>
> Fixes: 8fe2f761cae9 (net-timestamp: expand documentation)

Needs quotes

  Fixes: 8fe2f761cae9 ("net-timestamp: expand documentation")

When resending, can you also revise "It could be included instead .. "
to "Include instead .."

And mention in the commit the other warning fixed at the same time.
Thanks for including that.

> Suggested-by: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
> Signed-off-by: Vadim Fedorenko <vfedorenko@novek.ru>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [net v2] selftests: txtimestamp: fix compilation issue
  2021-02-04 15:50 ` Willem de Bruijn
@ 2021-02-04 16:23   ` Vadim Fedorenko
  0 siblings, 0 replies; 3+ messages in thread
From: Vadim Fedorenko @ 2021-02-04 16:23 UTC (permalink / raw)
  To: Willem de Bruijn; +Cc: Jakub Kicinski, Jian Yang, Network Development

On 04.02.2021 15:50, Willem de Bruijn wrote:
> On Thu, Feb 4, 2021 at 10:21 AM Vadim Fedorenko <vfedorenko@novek.ru> wrote:
>>
>> PACKET_TX_TIMESTAMP is defined in if_packet.h but it is not included in
>> test. It could be included instead of <netpacket/packet.h> otherwise
>> the error of redefinition arrives.
>>
>> Fixes: 8fe2f761cae9 (net-timestamp: expand documentation)
> 
> Needs quotes
> 
>    Fixes: 8fe2f761cae9 ("net-timestamp: expand documentation")
> 
> When resending, can you also revise "It could be included instead .. "
> to "Include instead .."
> 
> And mention in the commit the other warning fixed at the same time.
> Thanks for including that.
> 
>> Suggested-by: Willem de Bruijn <willemdebruijn.kernel@gmail.com>
>> Signed-off-by: Vadim Fedorenko <vfedorenko@novek.ru>

Ok, no problem. Thanks for reviewing!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-02-04 16:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-04 15:21 [net v2] selftests: txtimestamp: fix compilation issue Vadim Fedorenko
2021-02-04 15:50 ` Willem de Bruijn
2021-02-04 16:23   ` Vadim Fedorenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.