Commit bb1b25ca authored by Zhu Yanjun's avatar Zhu Yanjun Committed by Daniel Borkmann

xdp: Remove the functions xsk_map_inc and xsk_map_put

The functions xsk_map_put() and xsk_map_inc() are simple wrappers and
as such, replace these functions with the functions bpf_map_inc() and
bpf_map_put() and remove some error testing code.
Signed-off-by: default avatarZhu Yanjun <zyjzyj2000@gmail.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Acked-by: default avatarMagnus Karlsson <magnus.karlsson@intel.com>
Link: https://lore.kernel.org/bpf/1606402998-12562-1-git-send-email-yanjunz@nvidia.com
parent 105c4e75
...@@ -605,7 +605,7 @@ static struct xsk_map *xsk_get_map_list_entry(struct xdp_sock *xs, ...@@ -605,7 +605,7 @@ static struct xsk_map *xsk_get_map_list_entry(struct xdp_sock *xs,
node = list_first_entry_or_null(&xs->map_list, struct xsk_map_node, node = list_first_entry_or_null(&xs->map_list, struct xsk_map_node,
node); node);
if (node) { if (node) {
WARN_ON(xsk_map_inc(node->map)); bpf_map_inc(&node->map->map);
map = node->map; map = node->map;
*map_entry = node->map_entry; *map_entry = node->map_entry;
} }
...@@ -635,7 +635,7 @@ static void xsk_delete_from_maps(struct xdp_sock *xs) ...@@ -635,7 +635,7 @@ static void xsk_delete_from_maps(struct xdp_sock *xs)
while ((map = xsk_get_map_list_entry(xs, &map_entry))) { while ((map = xsk_get_map_list_entry(xs, &map_entry))) {
xsk_map_try_sock_delete(map, xs, map_entry); xsk_map_try_sock_delete(map, xs, map_entry);
xsk_map_put(map); bpf_map_put(&map->map);
} }
} }
......
...@@ -41,8 +41,6 @@ static inline struct xdp_sock *xdp_sk(struct sock *sk) ...@@ -41,8 +41,6 @@ static inline struct xdp_sock *xdp_sk(struct sock *sk)
void xsk_map_try_sock_delete(struct xsk_map *map, struct xdp_sock *xs, void xsk_map_try_sock_delete(struct xsk_map *map, struct xdp_sock *xs,
struct xdp_sock **map_entry); struct xdp_sock **map_entry);
int xsk_map_inc(struct xsk_map *map);
void xsk_map_put(struct xsk_map *map);
void xsk_clear_pool_at_qid(struct net_device *dev, u16 queue_id); void xsk_clear_pool_at_qid(struct net_device *dev, u16 queue_id);
int xsk_reg_pool_at_qid(struct net_device *dev, struct xsk_buff_pool *pool, int xsk_reg_pool_at_qid(struct net_device *dev, struct xsk_buff_pool *pool,
u16 queue_id); u16 queue_id);
......
...@@ -11,32 +11,16 @@ ...@@ -11,32 +11,16 @@
#include "xsk.h" #include "xsk.h"
int xsk_map_inc(struct xsk_map *map)
{
bpf_map_inc(&map->map);
return 0;
}
void xsk_map_put(struct xsk_map *map)
{
bpf_map_put(&map->map);
}
static struct xsk_map_node *xsk_map_node_alloc(struct xsk_map *map, static struct xsk_map_node *xsk_map_node_alloc(struct xsk_map *map,
struct xdp_sock **map_entry) struct xdp_sock **map_entry)
{ {
struct xsk_map_node *node; struct xsk_map_node *node;
int err;
node = kzalloc(sizeof(*node), GFP_ATOMIC | __GFP_NOWARN); node = kzalloc(sizeof(*node), GFP_ATOMIC | __GFP_NOWARN);
if (!node) if (!node)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
err = xsk_map_inc(map); bpf_map_inc(&map->map);
if (err) {
kfree(node);
return ERR_PTR(err);
}
node->map = map; node->map = map;
node->map_entry = map_entry; node->map_entry = map_entry;
...@@ -45,7 +29,7 @@ static struct xsk_map_node *xsk_map_node_alloc(struct xsk_map *map, ...@@ -45,7 +29,7 @@ static struct xsk_map_node *xsk_map_node_alloc(struct xsk_map *map,
static void xsk_map_node_free(struct xsk_map_node *node) static void xsk_map_node_free(struct xsk_map_node *node)
{ {
xsk_map_put(node->map); bpf_map_put(&node->map->map);
kfree(node); kfree(node);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment