svn commit: r329772 - vendor-sys/illumos/dist/uts/common/fs/zfs

Alexander Motin mav at FreeBSD.org
Thu Feb 22 00:49:00 UTC 2018


Author: mav
Date: Thu Feb 22 00:48:59 2018
New Revision: 329772
URL: https://svnweb.freebsd.org/changeset/base/329772

Log:
  9036 zfs: duplicate 'const' declaration specifier
  
  illumos/illumos-gate at f02c28e434fb4d81d95122bab187fb43d4f19c2a
  
  Reviewed by: Yuri Pankov <yuripv at yuripv.net>
  Reviewed by: Matthew Ahrens <mahrens at delphix.com>
  Approved by: Dan McDonald <danmcd at joyent.com>
  Author: Toomas Soome <tsoome at me.com>

Modified:
  vendor-sys/illumos/dist/uts/common/fs/zfs/vdev_indirect_mapping.c

Modified: vendor-sys/illumos/dist/uts/common/fs/zfs/vdev_indirect_mapping.c
==============================================================================
--- vendor-sys/illumos/dist/uts/common/fs/zfs/vdev_indirect_mapping.c	Thu Feb 22 00:47:38 2018	(r329771)
+++ vendor-sys/illumos/dist/uts/common/fs/zfs/vdev_indirect_mapping.c	Thu Feb 22 00:48:59 2018	(r329772)
@@ -133,8 +133,8 @@ vdev_indirect_mapping_size(vdev_indirect_mapping_t *vi
 static int
 dva_mapping_overlap_compare(const void *v_key, const void *v_array_elem)
 {
-	const uint64_t const *key = v_key;
-	const vdev_indirect_mapping_entry_phys_t const *array_elem =
+	const uint64_t *key = v_key;
+	const vdev_indirect_mapping_entry_phys_t *array_elem =
 	    v_array_elem;
 	uint64_t src_offset = DVA_MAPPING_GET_SRC_OFFSET(array_elem);
 


More information about the svn-src-all mailing list