From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f180.google.com (mail-we0-f180.google.com [74.125.82.180]) by dpdk.org (Postfix) with ESMTP id 6D0985A3F for ; Thu, 26 Feb 2015 00:28:24 +0100 (CET) Received: by wevl61 with SMTP id l61so6764418wev.2 for ; Wed, 25 Feb 2015 15:28:24 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=fd/XILJJe98KC0ta7I4zhhh72SAUjwjTmCm6kwup45g=; b=dZfxwaMvzkS7iQmnvYpDxq4EsO9M8c6J0aDP7S5IxFwp7fWvycaWdRls0oKT+5H50t 1Y/ENiAOC6X05VanHpltJZ68tHv8VSssU8mz4J1mMsp71tsB0afRAud52KsaGcLNBfE1 ECqKBo6RcbUg+FSQhDBgBNrlG9r7jp5BllhGS4n0MAqJxplReP9+vUpcxel1PLx84rKR Ug3K4WEpSjGeVFZ+bTA799TBVjwP0JCYc4SQn1y113JiYA1kLGeYHsL11x+Kr/dfiJgx UQKaVxtYAJNYWpRc4AED0B2jgL3CS9LmzWwRQm/iV/LQGxftXIHiKmHQ5bZy3x3rfpU9 Iwvg== X-Gm-Message-State: ALoCoQljhYU4EHHNlC5T9RABmtXUXFWKN6JLvOWzBrugGgTFnAYxM1F4LY76sDXssq0eil5e8hd7 X-Received: by 10.194.20.67 with SMTP id l3mr10809018wje.94.1424906904285; Wed, 25 Feb 2015 15:28:24 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id fo15sm152587wic.19.2015.02.25.15.28.23 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 25 Feb 2015 15:28:23 -0800 (PST) From: Thomas Monjalon To: Tetsuya Mukawa Date: Thu, 26 Feb 2015 00:27:49 +0100 Message-ID: <2558811.fn1gcscIM3@xps13> Organization: 6WIND User-Agent: KMail/4.14.4 (Linux/3.18.4-1-ARCH; KDE/4.14.4; x86_64; ; ) In-Reply-To: <1424892749-31862-16-git-send-email-mukawa@igel.co.jp> References: <1424837093-5661-13-git-send-email-mukawa@igel.co.jp> <1424892749-31862-1-git-send-email-mukawa@igel.co.jp> <1424892749-31862-16-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 Subject: Re: [dpdk-dev] [PATCH v15] testpmd: Add port hotplug support 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, 25 Feb 2015 23:28:24 -0000 > The patch introduces following commands. > - port attach [ident] > - port detach [port_id] > - attach: attaching a port > - detach: detaching a port > - ident: pci address of physical device. > Or device name and parameters of virtual device. > (ex. 0000:02:00.0, eth_pcap0,iface=eth0) > - port_id: port identifier > > v15: > - Replace rte_eal_dev_attach() by rte_eth_dev_attach() > - Replace rte_eal_dev_detach() by rte_eth_dev_detach() > > v7: > - Fix doc. > (Thanks to Iremonger, Bernard) > - Fix port checking implementation of star_port(); > (Thanks to Qiu, Michael) > v5: > - Add testpmd documentation. > (Thanks to Iremonger, Bernard) > v4: > - Fix strings of command help. > > Signed-off-by: Tetsuya Mukawa Applied, thanks