From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf0-f51.google.com (mail-lf0-f51.google.com [209.85.215.51]) by dpdk.org (Postfix) with ESMTP id AA0624B79 for ; Fri, 22 Jul 2016 10:50:56 +0200 (CEST) Received: by mail-lf0-f51.google.com with SMTP id g62so80616054lfe.3 for ; Fri, 22 Jul 2016 01:50:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=RizOm+rkb6TwsCjOeC4nBpxTgeQCHrH6v0knLQ10Yfc=; b=TCHRjR7S6b0OoPFqhVvX0JfRm7EEyA77HBXNaUV5Rlug7br2aUh8C5sF0wNLt3hwQh D4/oiNQIu1uh62It6kEtIniGcMAcP63Td1HK1g7bjS6kJ6+VLj+lpmacnpFBPpdpT3AP LbRYACJdTxm/duSS7I28SFMbw/+jF5alZJJ1OIdE/0fpGeHWKkmpsZQOI+ZbsGXNnxh+ FDkOxrGlzuZSiVLTtNPxAIwUgsPOKaMPLlnbLOV5lU3xO6+RkQ2DA7642sgQO6k/SRUt FPL4Vm41uFLFSDAhRaF85uip2F25Xa9A0NWjZIr/lroS3i7yFIUage2xxxCBXy4xkKa2 xEQg== 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:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=RizOm+rkb6TwsCjOeC4nBpxTgeQCHrH6v0knLQ10Yfc=; b=Ql6pC9qPGETQQzQtBZTLnNpWTRp8ayOVTSonzZKapZclV3DGvxOppN5Vb4wkI2Nz3J 4uhCGc5FbEOoBHDvQJIZnQg92sm9sf63vXtoNnV9qo4SnBGqeyb77lxffX/KJW06q6ET v+mw9bcxAnmWRqd93xFlOGuLtRlm26Saga2GMZOop9l5PZU16K2511lYDv8WAL6vN/e+ v9mqclgGBNmoCYWUqQqseE4d0FBXUxb9bjhxOnqOaZnhxnfQmqIvgsvaQTf/FqtGhoEM LZp37B/M+FqjWPTlno7v+5jR2/6NQc5NE8zVFRoWym7sfk7qeUwKEdWBlzp+plnJfPep nT5A== X-Gm-Message-State: AEkoousoKjtpeBQgKkFRlICFRziBLUWPi0GMbYHxOWPXf48Megq5lGU0DHNOaB8a/vvFUFip X-Received: by 10.25.90.198 with SMTP id o189mr1981488lfb.193.1469177456297; Fri, 22 Jul 2016 01:50:56 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id p82sm2775567lfd.15.2016.07.22.01.50.54 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 22 Jul 2016 01:50:55 -0700 (PDT) From: Thomas Monjalon To: Jianfeng Tan Cc: dev@dpdk.org, Yuanhan Liu , tiwei.bie@intel.com Date: Fri, 22 Jul 2016 10:50:54 +0200 Message-ID: <6497923.7yjiyptv1n@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20160722023315.GN28708@yliu-dev.sh.intel.com> References: <1469154287-88523-1-git-send-email-jianfeng.tan@intel.com> <20160722023315.GN28708@yliu-dev.sh.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] net/virtio_user: fix inconsistent name 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: Fri, 22 Jul 2016 08:50:56 -0000 2016-07-22 10:33, Yuanhan Liu: > On Fri, Jul 22, 2016 at 02:24:47AM +0000, Jianfeng Tan wrote: > > The commit cb6696d22023 ("drivers: update registration macro usage") > > changes the name from virtio-user to virtio_user, because hyphen > > cannot be used in a C symbol name. However, this commit does not > > update the strings in docs and source code, which could lead to > > failure to start this device as per the docs. > > > > This patch updates related strings in the docs and source code. > > > > Fixes: cb6696d22023 ("drivers: update registration macro usage") > > > > Reported-by: Tiwei Bie > > Signed-off-by: Jianfeng Tan > > Acked-by: Yuanhan Liu Applied, thanks