From owner-svn-src-head@FreeBSD.ORG Thu Jul 11 15:02:39 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6F5ABE41; Thu, 11 Jul 2013 15:02:39 +0000 (UTC) (envelope-from jimharris@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 614F3128F; Thu, 11 Jul 2013 15:02:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6BF2dMf008620; Thu, 11 Jul 2013 15:02:39 GMT (envelope-from jimharris@svn.freebsd.org) Received: (from jimharris@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6BF2dJa008619; Thu, 11 Jul 2013 15:02:39 GMT (envelope-from jimharris@svn.freebsd.org) Message-Id: <201307111502.r6BF2dJa008619@svn.freebsd.org> From: Jim Harris Date: Thu, 11 Jul 2013 15:02:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253209 - head/sys/dev/nvme X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jul 2013 15:02:39 -0000 Author: jimharris Date: Thu Jul 11 15:02:38 2013 New Revision: 253209 URL: http://svnweb.freebsd.org/changeset/base/253209 Log: Fix a poorly worded comment in nvme(4). MFC after: 3 days Modified: head/sys/dev/nvme/nvme.h Modified: head/sys/dev/nvme/nvme.h ============================================================================== --- head/sys/dev/nvme/nvme.h Thu Jul 11 14:18:38 2013 (r253208) +++ head/sys/dev/nvme/nvme.h Thu Jul 11 15:02:38 2013 (r253209) @@ -765,10 +765,10 @@ struct nvme_pt_command { /* * is_read = 1 if the passthrough command will read data into the - * supplied buffer. + * supplied buffer from the controller. * - * is_read = 0 if the passthrough command will write data into the - * supplied buffer. + * is_read = 0 if the passthrough command will write data from the + * supplied buffer to the controller. */ uint32_t is_read;