From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pa0-f45.google.com (mail-pa0-f45.google.com [209.85.220.45]) by dpdk.org (Postfix) with ESMTP id 86811DE4 for ; Wed, 1 Oct 2014 03:35:12 +0200 (CEST) Received: by mail-pa0-f45.google.com with SMTP id rd3so190374pab.32 for ; Tue, 30 Sep 2014 18:41:54 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=qwyJvrfYjCpzgLpun1W5W8B3jo05zcZdfc6XN9dyhG0=; b=KnxOGBa0vcfeJhs8E4+UJQgo56SUxrHh52vPlxFeFSx+Ms3B8v5RYjvbVzWajQr8gL 72O+TPd5yKDpblMVaSD6oCOFc4B/YFIFI6Ganr0LFlSVqBal2jr4XWqMfR68og84aiPf 6tvo7jg4xnckv+Xu6bRdDWR42CvrcdU8vsNDasxM88dik8vgS6wNTPI68SqtV+miP6TA UL3xsG2BJlSSA/eqib029cVpjXbIsj2J2c8pHd3t1Gc7z8Gd6FjYAWMrt1DyttkJGKpx giXRgh/JEuh9P2CrBu5Gti90PCjy3suAhKk+Fg/0UYREFgyWusIfz73E0aLc7c2nd6Lo ZxzQ== X-Gm-Message-State: ALoCoQnVpvg00sp5xCy5I68hxCUyUNypl9ULBIyvjZ+i2ax4Z3nM0sdRtD4V5Bvwl6GocWf6p3ql X-Received: by 10.66.228.36 with SMTP id sf4mr3911350pac.32.1412127714749; Tue, 30 Sep 2014 18:41:54 -0700 (PDT) Received: from [10.16.129.101] (napt.igel.co.jp. [219.106.231.132]) by mx.google.com with ESMTPSA id ha10sm3989792pbd.7.2014.09.30.18.41.52 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 30 Sep 2014 18:41:54 -0700 (PDT) Message-ID: <542B5BE1.3070306@igel.co.jp> Date: Wed, 01 Oct 2014 10:41:53 +0900 From: Tetsuya Mukawa User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Thomas Monjalon References: <1412070970-5625-1-git-send-email-mukawa@igel.co.jp> <1412070970-5625-2-git-send-email-mukawa@igel.co.jp> <1807884.Q1UlcNxKTX@xps13> In-Reply-To: <1807884.Q1UlcNxKTX@xps13> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, nakajima.yoshihiro@lab.ntt.co.jp, masutani.hitoshi@lab.ntt.co.jp Subject: Re: [dpdk-dev] [PATCH 1/2] librte_pmd_null: Add null PMD 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, 01 Oct 2014 01:35:12 -0000 (2014/09/30 22:05), Thomas Monjalon wrote: > 2014-09-30 18:56, mukawa@igel.co.jp: >> --- /dev/null >> +++ b/lib/librte_pmd_null/Makefile >> @@ -0,0 +1,58 @@ >> +# BSD LICENSE >> +# >> +# Copyright (C) 2014 Nippon Telegraph and Telephone Corporation. >> +# All rights reserved. >> +# >> +# 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 Intel Corporation nor the names of its > You probably mean NTT here? > >> --- /dev/null >> +++ b/lib/librte_pmd_null/rte_eth_null.c >> @@ -0,0 +1,474 @@ >> +/*- >> + * BSD LICENSE >> + * >> + * Copyright (C) IGEL Co.,Ltd. >> + * All rights reserved. >> + * >> + * 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 IGEL Co.,Ltd. nor the names of its >> + * contributors may be used to endorse or promote products derived >> + * from this software without specific prior written permission. > So the Makefile is copyrighted NTT and the .c file is copyrighted IGEL? > It's my mistake. I needed to change Makefile also. I had a discussion about copyright with NTT guys, then changed it. Thank you for your attention. I will submit again. Regards, Tetsuya