From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 89FDCA56E for ; Fri, 19 Jan 2018 00:49:58 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 2449E20C7F; Thu, 18 Jan 2018 18:49:58 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Thu, 18 Jan 2018 18:49:58 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=3sf4k+wWN2qstgj7Hb0pqD5fo/ SXHdbch6C7p6r+DQs=; b=E/1mOOYv6qIf5JSFwUsXM2LcGt+HNpcnd1jRNLSViY EaK25S63SJnJBcvFoEI4rvn1CUhcqWLih9aDaEuHhpRdQx5PxgLo5lAMo8dIWysn dj9WfUHO0CJCLHX8r3ekHsVkzDMBg2gpqiVfuzJcSt/1dd+TCO1gn8f2FXlpq8Lc g= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=3sf4k+ wWN2qstgj7Hb0pqD5fo/SXHdbch6C7p6r+DQs=; b=Rm36f1mtUc1DOFb/NSVmo5 GmO3DOn6bJByEWYmJjzARUZDqGVXDgAC9Cc3rUFF+K7d6wCOtsoH88sGLLXmarmE pN1LCDe4jzc0OLh9MRtenu3wzo5OJUyN4ptgnCQh52YtCTZdFtHqEik6yAXQV8iR IarqY6H3GdVhIl+r3OILRq3CXDB3BttvlpZOtw0G2HbSQvvyJzeATQJY3N4Ti23Q W5i6PMeCjS1WwVoV12VltVgPOYBJhnvgoQ2YUObSIdjAz51Ne+nNZnlsTscQ6It+ G06K3O9zFXEKBSUhN7zsCjpNjIdRartjqp26BEXlPfDomcmD6MrWiF+x8kJYTVdw == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id C963B24235; Thu, 18 Jan 2018 18:49:57 -0500 (EST) From: Thomas Monjalon To: Pavan Nikhilesh Cc: dev@dpdk.org, cristian.dumitrescu@intel.com, stephen@networkplumber.org, ktraynor@redhat.com Date: Fri, 19 Jan 2018 00:49:24 +0100 Message-ID: <2782991.nDYcX2DiXf@xps> In-Reply-To: <20171204132231.29975-3-pbhagavatula@caviumnetworks.com> References: <1504032378-5483-1-git-send-email-pbhagavatula@caviumnetworks.com> <20171204132231.29975-1-pbhagavatula@caviumnetworks.com> <20171204132231.29975-3-pbhagavatula@caviumnetworks.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v7 3/3] test: add tests for reciprocal based division X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jan 2018 23:49:58 -0000 04/12/2017 14:22, Pavan Nikhilesh: > +/* > + * BSD LICENSE > + * > + * Copyright (C) Cavium, Inc. 2017. > + * > + * Redistribution and use in source and binary forms, with or without > + * modification, are permitted provided that the following conditions > + * are met: > + * > + * * Redistributions of source code must retain the above copyright > + * notice, this list of conditions and the following disclaimer. > + * * Redistributions in binary form must reproduce the above copyright > + * notice, this list of conditions and the following disclaimer in > + * the documentation and/or other materials provided with the > + * distribution. > + * * Neither the name of Cavium, Inc nor the names of its > + * contributors may be used to endorse or promote products derived > + * from this software without specific prior written permission. > + * > + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS > + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT > + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR > + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT > + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, > + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT > + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, > + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY > + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT > + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE > + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. > + */ Please re-send with SPDX tag. Thanks