2013-03-20 17:29:09

by Daniel Baluta

[permalink] [raw]
Subject: [PATCH] net: fix psock_fanout selftest bind error message

Signed-off-by: Daniel Baluta <[email protected]>
---
.../testing/selftests/net-afpacket/psock_fanout.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/testing/selftests/net-afpacket/psock_fanout.c b/tools/testing/selftests/net-afpacket/psock_fanout.c
index f765f09..226e5e3 100644
--- a/tools/testing/selftests/net-afpacket/psock_fanout.c
+++ b/tools/testing/selftests/net-afpacket/psock_fanout.c
@@ -97,7 +97,7 @@ static void pair_udp_open(int fds[], uint16_t port)
exit(1);
}
if (connect(fds[0], (void *) &daddr, sizeof(daddr))) {
- perror("bind");
+ perror("connect");
exit(1);
}
}
--
1.7.5.4


2013-03-20 17:42:55

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] net: fix psock_fanout selftest bind error message

From: Daniel Baluta <[email protected]>
Date: Wed, 20 Mar 2013 19:28:56 +0200

> Signed-off-by: Daniel Baluta <[email protected]>

Applied, thanks.

2013-03-20 17:43:55

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] net: fix psock_fanout selftest bind error message


Please, in the future, post networking patches to [email protected]
rather than lkml.

Thanks.

2013-03-20 18:34:12

by Daniel Baluta

[permalink] [raw]
Subject: Re: [PATCH] net: fix psock_fanout selftest bind error message

On Wed, Mar 20, 2013 at 7:43 PM, David Miller <[email protected]> wrote:
>
> Please, in the future, post networking patches to [email protected]
> rather than lkml.

Sure, I was convinced that I did that. get_maintainer.pl is playing
tricks on me :)

$ ./scripts/get_maintainer.pl
0001-net-fix-psock_fanout-selftest-bind-error-message.patch
"David S. Miller" <[email protected]> (commit_signer:4/4=100%)
Willem de Bruijn <[email protected]> (commit_signer:2/4=50%)
Daniel Baluta <[email protected]> (commit_signer:1/4=25%)
Eric Dumazet <[email protected]> (commit_signer:1/4=25%)
[email protected] (open list)

thanks,
Daniel.