From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH 5/6] i40e: macaddr add/del enhancement Date: Tue, 14 Oct 2014 16:25:04 +0200 Message-ID: <1581482.OfWWpU8tO6@xps13> References: <1411478047-1251-1-git-send-email-jing.d.chen@intel.com> <1411478047-1251-6-git-send-email-jing.d.chen@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev-VfR2kkLFssw@public.gmane.org To: "Chen Jing D(Mark)" Return-path: In-Reply-To: <1411478047-1251-6-git-send-email-jing.d.chen-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" 2014-09-23 21:14, Chen Jing D: > + PMD_DRV_LOG(ERR, "VMDQ not %s, can't set mac to pool %u\n", > + pf->flags | I40E_FLAG_VMDQ ? "configured" : "enabled", > + pool); [...] > - if (ret != I40E_SUCCESS) { > - PMD_DRV_LOG(ERR, "Failed to write mac address"); > + if (pool > pf->nb_cfg_vmdq_vsi) { > + PMD_DRV_LOG(ERR, "Pool number %u invalid. Max pool is %u\n", > + pool, pf->nb_cfg_vmdq_vsi); [...] > - PMD_DRV_LOG(ERR, "Failed to add MACVLAN filter"); > + PMD_DRV_LOG(ERR, "Failed to add MACVLAN filter\n"); [...] > + PMD_DRV_LOG(ERR, "Failed to remove MACVLAN filter\n"); I'm pretty sure you rebased this patch and solved the conflicts without updating your patch accordingly. Indeed carriage returns have been removed from logs recently. Hint: rebase conflicts are really often meaningful ;) -- Thomas