From patchwork Thu Oct 18 22:34:30 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 47054 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 956E95B20; Fri, 19 Oct 2018 00:34:35 +0200 (CEST) Received: from mail-pf1-f196.google.com (mail-pf1-f196.google.com [209.85.210.196]) by dpdk.org (Postfix) with ESMTP id 31B1E5A6E for ; Fri, 19 Oct 2018 00:34:34 +0200 (CEST) Received: by mail-pf1-f196.google.com with SMTP id g21-v6so8534054pfi.7 for ; Thu, 18 Oct 2018 15:34:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=kSPqhHipv1QWybJ69P9X7IO0TxGd6QiHyrnOhekXgZE=; b=Tw3n6w0WyWs6Oc2F7uJWzkDwlKd2zvkISMEtWtpgPzJKUkTBLdfBFqvShj8HGLMX47 JxSx89RzbS+b/F9cyrmZnA1leFeO5+ovLUUcw6TFFVyADF5uwAg38jwo0+LFBaKiXhes GyJhhOSHdm3VFMoziYk8VlKrmEO33b4rXr1MsXNiufYcuuXO2hiXeONX4CDVCmVWOVbH ESNjtzDF736Xgg9F8SPygbJQqUF3sao2po8pbO47zluLdZV9W7FCzidhHcKykGSph8rL KYuq88fyPFqwt75WoYRoxPcx+scltsSFSYg398nyh/BqEvcQbYSwwEi63hZDRaou4gKT ZXwg== 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=kSPqhHipv1QWybJ69P9X7IO0TxGd6QiHyrnOhekXgZE=; b=F7jgjUVcbaBN7D6JFOF9CG3Mpz4RxN1HT2HbiNJUhIf5kXjm9xGWPAmqoLyv5Olg8J H6ehR8yMhUuK6KNcNaAtWDO4sf1u2/gMArzoKpPXpx03zJG2g/+yIDWjO+J+4iqiNqYp pQElrSf7nLZdmfZGeophbocUwuSuO0mvqXRJJCmYemJ0y3Jw+fCJqcH9bNQKNdYmjL6j pzGSWPeWTWS3Gw0igUT3pOZY+jc4kOM/2o9dOjAMjbLpeF5XQhxQztn7tsih0DBoNnIe VxRvTDuGvEMz9uWu/QEVk2DTsR3CPnXiEtM2X7W6PVtCrDc1ngzeBBYfxuHZkyfM8brt hUcg== X-Gm-Message-State: ABuFfoj2hFSVTc75AOQ37wSsyubCZ2Q62TbwNTdHS7nsMf6C9J6eYwd7 f2Db19/B4C9N8j2NDGFY7amlKZULxps= X-Google-Smtp-Source: ACcGV61fdnVV2mLjjnD1DmZHv/HVZvdj/6y7TS7EgEemkUZNq05bw3nBfuszfCZIO0MnMh0x0Gg7SQ== X-Received: by 2002:a63:3c6:: with SMTP id 189-v6mr609816pgd.262.1539902073012; Thu, 18 Oct 2018 15:34:33 -0700 (PDT) Received: from localhost.localdomain ([167.220.103.60]) by smtp.gmail.com with ESMTPSA id u1-v6sm22136197pgr.61.2018.10.18.15.34.31 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 18 Oct 2018 15:34:32 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Thu, 18 Oct 2018 15:34:30 -0700 Message-Id: <20181018223430.12899-1-stephen@networkplumber.org> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH] examples/vdpa: fix spelling error in message 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Stephen Hemminger Reviewed-by: Ferruh Yigit --- examples/vdpa/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vdpa/main.c b/examples/vdpa/main.c index c5e8f58ec6d2..2ffbf2d8b4a3 100644 --- a/examples/vdpa/main.c +++ b/examples/vdpa/main.c @@ -334,7 +334,7 @@ static void cmd_create_vdpa_port_parsed(void *parsed_result, addr.type = PCI_ADDR; did = rte_vdpa_find_device_id(&addr); if (did < 0) { - cmdline_printf(cl, "Unable to find vdpa devide id.\n"); + cmdline_printf(cl, "Unable to find vdpa divide id.\n"); return; }