From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vk0-f45.google.com (mail-vk0-f45.google.com [209.85.213.45]) by dpdk.org (Postfix) with ESMTP id 906747E6A for ; Wed, 7 Sep 2016 06:30:38 +0200 (CEST) Received: by mail-vk0-f45.google.com with SMTP id j189so3401513vkc.2 for ; Tue, 06 Sep 2016 21:30:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=UFTdRdJAVy5lups7TbNMBSH5DCg1qPHPw+SbJI6riPo=; b=Vo0plPuGTANVWz3zJRuZfXmMRQ6PsK92jsAwfkAnRCEy9CRhs4BMfRQxGMvpdxkaZ0 xKf8rvTPFhnP14sTQ0LcYRWeVwleQfzKgfa+ZmaMSFd0W6koZKIeUga8UFU4P4v0bGoo 3+5okUPzvzuid1HTbairIZf5W8AXs1LsSWJUddRVoufdxY/6tPnImSqNRRWTzoJIjPri MOYlSdqiJ7ELw6WnTx9FVYd8duvsI1EQ2CyLGmXL3p8szj3X/Hj3P3TrfRLZO13u9WKI aEN0So79oMiNhrXyAU5b8IsXpQW50SwCpnoK871hR+7NMuBo4LyTwiqZ0wF7ZulFq17o /7pQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=UFTdRdJAVy5lups7TbNMBSH5DCg1qPHPw+SbJI6riPo=; b=GO6IE3z1HuRLExooEvW+sTU894dGsDm+wABUV2VRRbE3ESH1kVa8VbwxnzuIlHxnwf IFKSgHFQxvqJoz87haAEw4sbNiznmjok8bN1L7KG9+HeyEgR51/zupThnRYdgDhSAQ+o y0u9z2/O5joxqPE+yCcrhq4jvKW5pIWtpgulo1cbYmfwnw+O+tlH3w7hL+jjCNitzhOH /gNc1xOfYTBGswpNqfcoT+ypV1QczcIzGOv6EzdutsJe2Jbz5G9SG/4W2RIMQF8R7IsH 2jsnAGs6bbgmKKygVuKTxkuZyGcFC2vEeGDkoAv/UGM7ZxUzmNDGl5U0FvZ+FH3XwquG 864g== X-Gm-Message-State: AE9vXwMXKlMAhHWIz/VMr15HO/xWADR/9xM+lms6OpUc0Uy9xxsZtdk4scXukptOsofAbQX7Bo00KBkF02/upw== X-Received: by 10.31.196.199 with SMTP id u190mr29436248vkf.116.1473222638063; Tue, 06 Sep 2016 21:30:38 -0700 (PDT) MIME-Version: 1.0 Received: by 10.159.39.97 with HTTP; Tue, 6 Sep 2016 21:30:37 -0700 (PDT) In-Reply-To: <9BB6961774997848B5B42BEC655768F80E1C336C@SHSMSX103.ccr.corp.intel.com> References: <1473163517-19404-1-git-send-email-lnykww@gmail.com> <9BB6961774997848B5B42BEC655768F80E1C336C@SHSMSX103.ccr.corp.intel.com> From: wei wang Date: Wed, 7 Sep 2016 12:30:37 +0800 Message-ID: To: "Wu, Jingjing" Cc: "thomas.monjalon@6wind.com" , "dev@dpdk.org" Content-Type: text/plain; charset=UTF-8 Subject: Re: [dpdk-dev] [RFC] net/ixgbe: start rxtx after all nic config done. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Sep 2016 04:30:38 -0000 2016-09-07 9:33 GMT+08:00 Wu, Jingjing : > > >> -----Original Message----- >> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of wang wei >> Sent: Tuesday, September 6, 2016 8:05 PM >> To: thomas.monjalon@6wind.com >> Cc: dev@dpdk.org >> Subject: [dpdk-dev] [RFC] net/ixgbe: start rxtx after all nic config done. >> >> if start rxtx before flow director config, will cause driver can't receive packets >> from nic. >> > Good pointer. How about move all flow director and VMDQ configure to > ixgbe_dev_configure? > > Thanks > Jingjing Initialization of flow director and VMDQ needs to be after calling ixgbe_pf_reset_hw, otherwise the configuration will be lost.