mirror of
https://passt.top/passt
synced 2025-05-29 04:35:33 +02:00
udp: rename udp_sock_handler() to udp_buf_sock_handler()
We are going to introduce a variant of the function to use vhost-user buffers rather than passt internal buffers. Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
e7ac995217
commit
377b666dc9
3 changed files with 5 additions and 5 deletions
6
udp.c
6
udp.c
|
@ -728,7 +728,7 @@ static void udp_tap_send(const struct ctx *c,
|
|||
}
|
||||
|
||||
/**
|
||||
* udp_sock_handler() - Handle new data from socket
|
||||
* udp_buf_sock_handler() - Handle new data from socket
|
||||
* @c: Execution context
|
||||
* @ref: epoll reference
|
||||
* @events: epoll events bitmap
|
||||
|
@ -736,8 +736,8 @@ static void udp_tap_send(const struct ctx *c,
|
|||
*
|
||||
* #syscalls recvmmsg
|
||||
*/
|
||||
void udp_sock_handler(const struct ctx *c, union epoll_ref ref, uint32_t events,
|
||||
const struct timespec *now)
|
||||
void udp_buf_sock_handler(const struct ctx *c, union epoll_ref ref, uint32_t events,
|
||||
const struct timespec *now)
|
||||
{
|
||||
/* For not entirely clear reasons (data locality?) pasta gets
|
||||
* better throughput if we receive tap datagrams one at a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue