udp: Make udp_sock_recv static
Through an oversight this was previously declared as a public function although it's only used in udp.c and there is no prototype in any header. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
f79c42317f
commit
272d1d033c
1 changed files with 2 additions and 2 deletions
2
udp.c
2
udp.c
|
@ -737,7 +737,7 @@ static void udp_tap_prepare(const struct ctx *c, const struct mmsghdr *mmh,
|
||||||
*
|
*
|
||||||
* #syscalls recvmmsg
|
* #syscalls recvmmsg
|
||||||
*/
|
*/
|
||||||
int udp_sock_recv(const struct ctx *c, int s, uint32_t events,
|
static int udp_sock_recv(const struct ctx *c, int s, uint32_t events,
|
||||||
struct mmsghdr *mmh)
|
struct mmsghdr *mmh)
|
||||||
{
|
{
|
||||||
/* For not entirely clear reasons (data locality?) pasta gets better
|
/* For not entirely clear reasons (data locality?) pasta gets better
|
||||||
|
|
Loading…
Reference in a new issue