From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by dpdk.org (Postfix) with ESMTP id 002095A6A for ; Mon, 14 Jan 2019 15:47:55 +0100 (CET) Received: by mail-wm1-f67.google.com with SMTP id y139so9117555wmc.5 for ; Mon, 14 Jan 2019 06:47:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=XaTt+8od7IdFWqSgenCONyMmlCO9e8u7razI9+CHanc=; b=LCvvCj8yGsKQTCpGyhUOmnIKxoIFuLYBCsLJhVX/5hTfWn0RILFYFowtRkqXLZi2bd bLvC0qjjhmUIFscs108oHViwA02xBQTspIgsRi/t7Ukm5BQQvqKZxEyvw111eTyISt+S I7ONAgsAnEJB2b8AWd051VPHYTDAgn3wVY/cz2NeF9HHfx8WXi4EtlpvyUrtLRaAX0g8 JzA1tk/DWFciWLW7WZJY1DnDiTLCERkzwnMcQS2MqN4nmZlddn6k2J5NjCD4aZW7DfFR f5Pvc8ixffIaWqVBNkpfmqkF1b6EJzVSeox/J0quJ5qf5fZFb5sceMCSZl965umAoGFr h+yQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=XaTt+8od7IdFWqSgenCONyMmlCO9e8u7razI9+CHanc=; b=hdyBb2T/WJwnNws9KZIu/54SqYQ/bxZSzbhFAbyrE7AHMuHNh+QfoMvQw0z7SVX+z8 K8jbT5RrmN9cdeSar+hvwNqt3wO7qPQVAXyeflB3iyNdIfdvOKXadozlhxQ2OZepT87T aHOaoD4h2o+rGk/Ml3fBJIEggcbXb7ybWC0x3Kza5W8wLmrTyx6uP3N8AqXL9u6KaHB8 wjwtoPaswyxcY4UIiYKyzTB6GnEkV2Btlxbj8E5KtQFV+ko9t5a3FcqE8soQh2O5I55M msGqtxsT+xQXFHttoW7yKJSN+RjoUAzFweCK/3bqzfZO1QbSTz035byExxQhTiS8OFTr Cy0Q== X-Gm-Message-State: AJcUukeK7jwZJVm4NhUq20ncUQuDpE6ZvMii0PVaw/kRs0oPIndEOQ5v GKVF7m70HK9ASUsgA+vnFOEJjSad+zRogA== X-Google-Smtp-Source: ALg8bN7lnAjCykws+IZattYqoGkj+emt7m8PY8r8o6Wc7xC5f77oMIe01HbpJKDj1PEOFz3lmQDO5g== X-Received: by 2002:a1c:22c5:: with SMTP id i188mr12127139wmi.39.1547477275455; Mon, 14 Jan 2019 06:47:55 -0800 (PST) Received: from herc.netio.cloud ([212.199.245.54]) by smtp.gmail.com with ESMTPSA id m15sm64390812wrr.95.2019.01.14.06.47.54 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 14 Jan 2019 06:47:54 -0800 (PST) From: Rami Rosen To: dev@dpdk.org Cc: maxime.coquelin@redhat.com, huawei.xie@intel.com, tiwei.bie@intel.com, Rami Rosen Date: Mon, 14 Jan 2019 16:47:47 +0200 Message-Id: <1547477267-8131-1-git-send-email-ramirose@gmail.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH] examples/vhost: fix a typo 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: Mon, 14 Jan 2019 14:47:56 -0000 This minor patch fixes a typo in examples/vhost/main.c. Fixes: d19533e86f1d ("examples/vhost: copy old vhost example") Signed-off-by: Rami Rosen --- examples/vhost/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vhost/main.c b/examples/vhost/main.c index dc9ea10..c4bdd3c 100644 --- a/examples/vhost/main.c +++ b/examples/vhost/main.c @@ -1220,7 +1220,7 @@ static void virtio_tx_offload(struct rte_mbuf *m) /* * A new device is added to a data core. First the device is added to the main linked list - * and the allocated to a specific data core. + * and then allocated to a specific data core. */ static int new_device(int vid) -- 1.8.3.1