svn commit: r253366 - stable/9/sys/dev/nvme

Jim Harris jimharris at FreeBSD.org
Mon Jul 15 15:38:17 UTC 2013


Author: jimharris
Date: Mon Jul 15 15:38:16 2013
New Revision: 253366
URL: http://svnweb.freebsd.org/changeset/base/253366

Log:
  MFC r253209:
  
    Fix a poorly worded comment in nvme(4).
  
  Approved by:	re (kib)

Modified:
  stable/9/sys/dev/nvme/nvme.h
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/nvme/nvme.h
==============================================================================
--- stable/9/sys/dev/nvme/nvme.h	Mon Jul 15 15:37:13 2013	(r253365)
+++ stable/9/sys/dev/nvme/nvme.h	Mon Jul 15 15:38:16 2013	(r253366)
@@ -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;
 


More information about the svn-src-all mailing list