Commit ec5883ab authored by Horst Hummel's avatar Horst Hummel Committed by Linus Torvalds

[PATCH] s390: don't pad cdl blocks for write requests

The first blocks on a cdl formatted dasd device are smaller than the blocksize
of the device.  Read requests are padded with a 'e5' pattern.  Write requests
should not pad the (user) buffer with 'e5' because a write request is not
allowed to modify the buffer.
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 6ed93c82
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Bugreports.to..: <Linux390@de.ibm.com> * Bugreports.to..: <Linux390@de.ibm.com>
* (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999,2000 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999,2000
* *
* $Revision: 1.69 $ * $Revision: 1.71 $
*/ */
#include <linux/config.h> #include <linux/config.h>
...@@ -1101,7 +1101,8 @@ dasd_eckd_build_cp(struct dasd_device * device, struct request *req) ...@@ -1101,7 +1101,8 @@ dasd_eckd_build_cp(struct dasd_device * device, struct request *req)
if (dasd_eckd_cdl_special(blk_per_trk, recid)){ if (dasd_eckd_cdl_special(blk_per_trk, recid)){
rcmd |= 0x8; rcmd |= 0x8;
count = dasd_eckd_cdl_reclen(recid); count = dasd_eckd_cdl_reclen(recid);
if (count < blksize) if (count < blksize &&
rq_data_dir(req) == READ)
memset(dst + count, 0xe5, memset(dst + count, 0xe5,
blksize - count); blksize - count);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment