Author: avg
Date: Tue Aug  8 11:07:34 2017
New Revision: 322234
URL: https://svnweb.freebsd.org/changeset/base/322234

Log:
  zfs: no need for __DECONST after abd constification in r322233
  
  Note that vdev_label_write_pad2() is FreeBSD specific.
  
  MFC after:    2 weeks
  X-MFC after:  r322233

Modified:
  head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c    Tue Aug 
 8 10:59:18 2017        (r322233)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c    Tue Aug 
 8 11:07:34 2017        (r322234)
@@ -899,7 +899,7 @@ vdev_label_write_pad2(vdev_t *vd, const char *buf, siz
 
        pad2 = abd_alloc_for_io(VDEV_PAD_SIZE, B_TRUE);
        abd_zero(pad2, VDEV_PAD_SIZE);
-       abd_copy_from_buf(pad2, __DECONST(void *, buf), size);
+       abd_copy_from_buf(pad2, buf, size);
 
 retry:
        zio = zio_root(spa, NULL, NULL, flags);
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to