svn commit: r341660 - head/sbin/nvmecontrol/modules/intel

Warner Losh imp at FreeBSD.org
Thu Dec 6 22:59:11 UTC 2018


Author: imp
Date: Thu Dec  6 22:59:08 2018
New Revision: 341660
URL: https://svnweb.freebsd.org/changeset/base/341660

Log:
  This is not a samsung standard, so remove that alias.
  
  This was never documented, and isn't needed, so it's best removed to
  avoid confusion.
  
  Sponsored by: Netflix
  Differential Revision:	https://reviews.freebsd.org/D18460

Modified:
  head/sbin/nvmecontrol/modules/intel/intel.c

Modified: head/sbin/nvmecontrol/modules/intel/intel.c
==============================================================================
--- head/sbin/nvmecontrol/modules/intel/intel.c	Thu Dec  6 22:58:55 2018	(r341659)
+++ head/sbin/nvmecontrol/modules/intel/intel.c	Thu Dec  6 22:59:08 2018	(r341660)
@@ -117,7 +117,7 @@ print_intel_write_lat_log(const struct nvme_controller
 }
 
 /*
- * Table 19. 5.4 SMART Attributes. Samsung also implements this and some extra data not documented.
+ * Table 19. 5.4 SMART Attributes. Others also implement this and some extra data not documented.
  */
 static void
 print_intel_add_smart(const struct nvme_controller_data *cdata __unused, void *buf, uint32_t size __unused)
@@ -192,7 +192,4 @@ NVME_LOGPAGE(intel_wlat,
     print_intel_write_lat_log,		DEFAULT_SIZE);
 NVME_LOGPAGE(intel_smart,
     INTEL_LOG_ADD_SMART,		"intel", "Extra Health/SMART Data",
-    print_intel_add_smart,		DEFAULT_SIZE);
-NVME_LOGPAGE(samsung_smart,					/* NOTE, this will be deleted before 13.0 */
-    INTEL_LOG_ADD_SMART,		"samsung", "Extra Health/SMART Data",
     print_intel_add_smart,		DEFAULT_SIZE);


More information about the svn-src-all mailing list