Revert r269093 which introduced physical zio alignment transform

Size of physical ZIOs must never be implicitly adjusted, it's
a responsibility of a caller to make sure that such a ZIO has proper offset
and size.

Discussed with:	delphij, gibbs
MFC after:	2 weeks
This commit is contained in:
Andriy Gapon 2014-11-17 14:16:02 +00:00
parent ff0ba87247
commit 0908b20b7e

View File

@ -2619,8 +2619,7 @@ zio_vdev_io_start(zio_t *zio)
align = 1ULL << vd->vdev_top->vdev_ashift; align = 1ULL << vd->vdev_top->vdev_ashift;
if ((!(zio->io_flags & ZIO_FLAG_PHYSICAL) || if (!(zio->io_flags & ZIO_FLAG_PHYSICAL) &&
(vd->vdev_top->vdev_physical_ashift > SPA_MINBLOCKSHIFT)) &&
P2PHASE(zio->io_size, align) != 0) { P2PHASE(zio->io_size, align) != 0) {
/* Transform logical writes to be a full physical block size. */ /* Transform logical writes to be a full physical block size. */
uint64_t asize = P2ROUNDUP(zio->io_size, align); uint64_t asize = P2ROUNDUP(zio->io_size, align);