summaryrefslogtreecommitdiffstats
path: root/super1.c
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2013-02-05 05:34:17 +0100
committerNeilBrown <neilb@suse.de>2013-02-05 06:00:55 +0100
commit9698df15d9efaa32d30e17ff839315cedf1e7984 (patch)
treedbbe22c79f5ef36cdf0c1ece9e743b80a3eb50b5 /super1.c
parentDetail: print correct size for large external-metadata arrays. (diff)
downloadmdadm-9698df15d9efaa32d30e17ff839315cedf1e7984.tar.xz
mdadm-9698df15d9efaa32d30e17ff839315cedf1e7984.zip
Avoid using BLKFLSBUF.
Now that we use O_DIRECT for all device IO, BLKFLSBUF is not needed to ensure we get current data, and it can impose a cost if any flush-out is needed. So remove it. To be safe, add O_DIRECT to one place where it isn't currently used: when reading a bitmap. Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'super1.c')
-rw-r--r--super1.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/super1.c b/super1.c
index 3236a7e2..fe83af5b 100644
--- a/super1.c
+++ b/super1.c
@@ -1633,9 +1633,6 @@ static int load_super1(struct supertype *st, int fd, char *devname)
return -EINVAL;
}
- ioctl(fd, BLKFLSBUF, 0); /* make sure we read current data */
-
-
if (lseek64(fd, sb_offset << 9, 0)< 0LL) {
if (devname)
pr_err("Cannot seek to superblock on %s: %s\n",