From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f173.google.com (mail-wi0-f173.google.com [209.85.212.173]) by dpdk.org (Postfix) with ESMTP id B868568FD for ; Tue, 30 Sep 2014 14:58:31 +0200 (CEST) Received: by mail-wi0-f173.google.com with SMTP id bs8so4256737wib.12 for ; Tue, 30 Sep 2014 06:05:12 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=r9RTenbVvhcA+dyQCLPd56TQ/ZwmzKJQYdp00kK/o9U=; b=hBdY5l6TcO3aV0VVgolALS6U2GJl1fo58NHSWe4J06cblf2s+5C6UOUwzAdej/tDp2 WVty29EeN+W2fHhZZJT05nXsPqXvP0zP+2fXvxVqmWqGa08Vm6xNwc0xZZutmW5qTE7K kiSmRP2zTu0+s8QgV9LWvtupSmIcCaOe/JiIXR42pESfQhOKtX0nIqQeIwH1hdt+pT0u YG7+GW9AAZ7ATT+X0y9StJtc8wTXC587/rwWkNf6Y9e27ohAHfAN2rmHo6GZDap4miNO G8h1vnxn0n/UuNLAbPGPtO9lQW2aiak3M+BooPszfO43czJj960b4EdOMmuHChnQwqjT xYIQ== X-Gm-Message-State: ALoCoQmoofA5nxd50uB/4Kk3lYoTtmHjAGWIN+9nr35O9eKc82jzsXxvSSwtrqnvTfvrbAzVVTbX X-Received: by 10.194.92.116 with SMTP id cl20mr13386183wjb.101.1412082312262; Tue, 30 Sep 2014 06:05:12 -0700 (PDT) Received: from xps13.localnet (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by mx.google.com with ESMTPSA id i1sm17211880wjx.32.2014.09.30.06.05.11 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 30 Sep 2014 06:05:11 -0700 (PDT) Date: Tue, 30 Sep 2014 06:05:11 -0700 (PDT) X-Google-Original-Date: Tue, 30 Sep 2014 15:05 +0200 From: Thomas Monjalon To: mukawa@igel.co.jp Message-ID: <1807884.Q1UlcNxKTX@xps13> Organization: 6WIND User-Agent: KMail/4.13.3 (Linux/3.15.8-1-ARCH; KDE/4.13.3; x86_64; ; ) In-Reply-To: <1412070970-5625-2-git-send-email-mukawa@igel.co.jp> References: <1412070970-5625-1-git-send-email-mukawa@igel.co.jp> <1412070970-5625-2-git-send-email-mukawa@igel.co.jp> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" 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: Tue, 30 Sep 2014 12:58:31 -0000 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? -- Thomas