Skip to content

Commit

Permalink
can: dump stack on protocol bugs
Browse files Browse the repository at this point in the history
The rework of the kernel hlist implementation "hlist: drop the node parameter
from iterators" (b67bfe0) created some
fallout in the form of non matching comments and obsolete code.

Additionally to the cleanup this patch adds a WARN() statement to catch the
caller of the wrong filter removal request.

Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Oliver Hartkopp authored and David S. Miller committed Mar 19, 2013
1 parent 1bc277f commit c9bbb75
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions net/can/af_can.c
Original file line number Diff line number Diff line change
Expand Up @@ -546,16 +546,13 @@ void can_rx_unregister(struct net_device *dev, canid_t can_id, canid_t mask,
}

/*
* Check for bugs in CAN protocol implementations:
* If no matching list item was found, the list cursor variable next
* will be NULL, while r will point to the last item of the list.
* Check for bugs in CAN protocol implementations using af_can.c:
* 'r' will be NULL if no matching list item was found for removal.
*/

if (!r) {
pr_err("BUG: receive list entry not found for "
"dev %s, id %03X, mask %03X\n",
DNAME(dev), can_id, mask);
r = NULL;
WARN(1, "BUG: receive list entry not found for dev %s, "
"id %03X, mask %03X\n", DNAME(dev), can_id, mask);
goto out;
}

Expand Down

0 comments on commit c9bbb75

Please sign in to comment.