]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - net/can/af_can.c
can: omit received RTR frames for single ID filter lists
[linux-2.6-omap-h63xx.git] / net / can / af_can.c
index d8173e50cb87c1d49b2d8ae31f8857f8724a2080..3dadb338addd3ab36212333281ab377362a7e56f 100644 (file)
@@ -622,7 +622,10 @@ static int can_rcv_filter(struct dev_rcv_lists *d, struct sk_buff *skb)
                }
        }
 
-       /* check CAN_ID specific entries */
+       /* check filterlists for single non-RTR can_ids */
+       if (can_id & CAN_RTR_FLAG)
+               return matches;
+
        if (can_id & CAN_EFF_FLAG) {
                hlist_for_each_entry_rcu(r, n, &d->rx[RX_EFF], list) {
                        if (r->can_id == can_id) {