diff options
author | Stefan Bader <shbader@de.ibm.com> | 2007-07-12 12:28:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-12 18:01:08 -0400 |
commit | 07a83c47cfc00ba5f0f090ccddd3a0703be0eec9 (patch) | |
tree | a17d8028f76ba242a04f3c0678644f93cc7eee7d /drivers/md/dm-crypt.c | |
parent | 943317efdbc295e8a28df3f5cbd549d066ee8b4a (diff) |
dm: disable barriers
This patch causes device-mapper to reject any barrier requests. This is done
since most of the targets won't handle this correctly anyway. So until the
situation improves it is better to reject these requests at the first place.
Since barrier requests won't get to the targets, the checks there can be
removed.
Cc: stable@kernel.org
Signed-off-by: Stefan Bader <shbader@de.ibm.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/md/dm-crypt.c')
-rw-r--r-- | drivers/md/dm-crypt.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c index ece7c7c4cdbb..ba952a032598 100644 --- a/drivers/md/dm-crypt.c +++ b/drivers/md/dm-crypt.c | |||
@@ -941,9 +941,6 @@ static int crypt_map(struct dm_target *ti, struct bio *bio, | |||
941 | struct crypt_config *cc = ti->private; | 941 | struct crypt_config *cc = ti->private; |
942 | struct dm_crypt_io *io; | 942 | struct dm_crypt_io *io; |
943 | 943 | ||
944 | if (bio_barrier(bio)) | ||
945 | return -EOPNOTSUPP; | ||
946 | |||
947 | io = mempool_alloc(cc->io_pool, GFP_NOIO); | 944 | io = mempool_alloc(cc->io_pool, GFP_NOIO); |
948 | io->target = ti; | 945 | io->target = ti; |
949 | io->base_bio = bio; | 946 | io->base_bio = bio; |