aboutsummaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorLorenzo Bianconi <lorenzo@kernel.org>2020-05-28 22:47:29 +0200
committerAlexei Starovoitov <ast@kernel.org>2020-06-01 15:02:53 -0700
commit1b698fa5d8ef958007c455e316aa44c37ab3c5fb (patch)
tree001620fb89ec9f7bdf0e3ca2e9ad64ea2950ed80 /include/net
parentxdp: Introduce xdp_convert_frame_to_buff utility routine (diff)
downloadlinux-dev-1b698fa5d8ef958007c455e316aa44c37ab3c5fb.tar.xz
linux-dev-1b698fa5d8ef958007c455e316aa44c37ab3c5fb.zip
xdp: Rename convert_to_xdp_frame in xdp_convert_buff_to_frame
In order to use standard 'xdp' prefix, rename convert_to_xdp_frame utility routine in xdp_convert_buff_to_frame and replace all the occurrences Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Acked-by: Jesper Dangaard Brouer <brouer@redhat.com> Link: https://lore.kernel.org/bpf/6344f739be0d1a08ab2b9607584c4d5478c8c083.1590698295.git.lorenzo@kernel.org
Diffstat (limited to 'include/net')
-rw-r--r--include/net/xdp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/xdp.h b/include/net/xdp.h
index db5c2c687f48..609f819ed08b 100644
--- a/include/net/xdp.h
+++ b/include/net/xdp.h
@@ -123,7 +123,7 @@ void xdp_convert_frame_to_buff(struct xdp_frame *frame, struct xdp_buff *xdp)
/* Convert xdp_buff to xdp_frame */
static inline
-struct xdp_frame *convert_to_xdp_frame(struct xdp_buff *xdp)
+struct xdp_frame *xdp_convert_buff_to_frame(struct xdp_buff *xdp)
{
struct xdp_frame *xdp_frame;
int metasize;