svn commit: r253209 - head/sys/dev/nvme

Jim Harris jimharris at FreeBSD.org
Thu Jul 11 15:02:39 UTC 2013


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;
 


More information about the svn-src-head mailing list