From: Andrew Vasquez Don't stomp on a request's transfer bit. Signed-off-by: Chandra Seetharaman Signed-off-by: Andrew Vasquez Signed-off-by: Alasdair G Kergon --- drivers/md/dm-mpath-rdac.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: linux-2.6.23-rc3/drivers/md/dm-mpath-rdac.c =================================================================== --- linux-2.6.23-rc3.orig/drivers/md/dm-mpath-rdac.c 2007-08-20 18:00:33.000000000 +0100 +++ linux-2.6.23-rc3/drivers/md/dm-mpath-rdac.c 2007-08-20 18:02:33.000000000 +0100 @@ -292,7 +292,7 @@ static struct request *get_rdac_req(stru rq->end_io_data = h; rq->timeout = h->timeout; rq->cmd_type = REQ_TYPE_BLOCK_PC; - rq->cmd_flags = REQ_FAILFAST | REQ_NOMERGE; + rq->cmd_flags |= REQ_FAILFAST | REQ_NOMERGE; return rq; }