Skip to content

Commit 011c935

Browse files
ecsvsimonwunderlich
authored andcommitted
batman-adv: Ignore invalid batadv_v_gw during netlink send
The function batadv_v_gw_dump stops the processing loop when batadv_v_gw_dump_entry returns a non-0 return code. This should only happen when the buffer is full. Otherwise, an empty message may be returned by batadv_gw_dump. This empty message will then stop the netlink dumping of gateway entries. At worst, not a single entry is returned to userspace even when plenty of possible gateways exist. Fixes: b71bb6f ("batman-adv: add B.A.T.M.A.N. V bat_gw_dump implementations") Signed-off-by: Sven Eckelmann <[email protected]> Signed-off-by: Simon Wunderlich <[email protected]>
1 parent 10d5702 commit 011c935

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/batman-adv/bat_v.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ static int batadv_v_gw_dump_entry(struct sk_buff *msg, u32 portid, u32 seq,
928928
struct batadv_neigh_ifinfo *router_ifinfo = NULL;
929929
struct batadv_neigh_node *router;
930930
struct batadv_gw_node *curr_gw;
931-
int ret = -EINVAL;
931+
int ret = 0;
932932
void *hdr;
933933

934934
router = batadv_orig_router_get(gw_node->orig_node, BATADV_IF_DEFAULT);

0 commit comments

Comments
 (0)