It's just the kernel saying that it experimentally tried to issue a "WRITE SAME" SCSI command to speed up zeroing data and the block layer rejected it (usually because the disk doesn't support it) - most disks don't support all possible disk commands as many are optional (at the time for writing when VMware uses VMDK's it doesn't support WRITE SAME).
Basically WRITE SAME writes the same block of data (in this case 0x00) to X number of sectors instead of issuing the commands individually (which is what it said it's falling back to doing). It's just a performance thing and only specific workloads regularly zero large amounts of data.
The message is nothing to be concerned about as it is only informational and only printed once per device. Further, the "WRITE SAME failed. Manually zeroing." message was eventually removed in the 4.0 kernel.
In summary: it's not a bug so there's was nothing to fix and the message has been removed in recent kernels.