From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jamal Hadi Salim Subject: Re: [PATCH v3 net-next 4/4] net/sched: act_mirred: Implement ingress actions Date: Thu, 6 Oct 2016 20:17:05 -0400 Message-ID: <2d606b1d-0281-403b-cf82-c02c785c0f10@mojatatu.com> References: <1475147012-15538-1-git-send-email-shmulik.ladkani@gmail.com> <1475147012-15538-5-git-send-email-shmulik.ladkani@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Cc: David Miller , Eric Dumazet , Daniel Borkmann , Linux Kernel Network Developers , Eric Dumazet To: Cong Wang , Shmulik Ladkani Return-path: Received: from mail-pf0-f195.google.com ([209.85.192.195]:33303 "EHLO mail-pf0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751749AbcJGARS (ORCPT ); Thu, 6 Oct 2016 20:17:18 -0400 Received: by mail-pf0-f195.google.com with SMTP id i85so1865774pfa.0 for ; Thu, 06 Oct 2016 17:17:18 -0700 (PDT) In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: On 16-10-06 01:30 PM, Cong Wang wrote: > On Thu, Oct 6, 2016 at 6:30 AM, Shmulik Ladkani > wrote: >> Hi, >> >> On Mon, Oct 3, 2016 at 12:45 PM, Cong Wang wrote: >>> On Thu, Sep 29, 2016 at 4:03 AM, Shmulik Ladkani >>> wrote: >>>> skb2->skb_iif = skb->dev->ifindex; >>>> skb2->dev = dev; >>>> - err = dev_queue_xmit(skb2); >>>> + if (tcf_mirred_act_direction(m_eaction) & AT_EGRESS) >>>> + err = dev_queue_xmit(skb2); >>>> + else >>>> + netif_receive_skb(skb2); >>> >>> Any reason why not check the return value here? >> >> Rationale: netif_receive_skb returns err if there was no protocol >> handler to deliver the skb to. >> If skb is not caught by any protocol handler, this should not be >> considered an "ingress redirect" error. The redirect action should be >> considered successful. > I dont believe we need to bother with the return code in this case. The core netif_receive_skb() code already increments any necessary stats. cheers, jamal