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>
This commit is contained in:
NeilBrown 2013-02-05 15:34:17 +11:00
parent ec1b28fdc0
commit 9698df15d9
5 changed files with 1 additions and 13 deletions

View File

@ -207,7 +207,7 @@ bitmap_info_t *bitmap_file_read(char *filename, int brief, struct supertype **st
return NULL;
}
if ((S_IFMT & stb.st_mode) == S_IFBLK) {
fd = open(filename, O_RDONLY);
fd = open(filename, O_RDONLY|O_DIRECT);
if (fd < 0) {
pr_err("failed to open bitmap file %s: %s\n",
filename, strerror(errno));
@ -225,7 +225,6 @@ bitmap_info_t *bitmap_file_read(char *filename, int brief, struct supertype **st
} else
st->ss->locate_bitmap(st, fd);
ioctl(fd, BLKFLSBUF, 0); /* make sure we read current data */
*stp = st;
} else {
fd = open(filename, O_RDONLY|O_DIRECT);

View File

@ -82,8 +82,6 @@ static int load_gpt(struct supertype *st, int fd, char *devname)
return 1;
}
ioctl(fd, BLKFLSBUF, 0); /* make sure we read current data */
lseek(fd, 0, 0);
if (read(fd, super, sizeof(*super)) != sizeof(*super)) {
no_read:

View File

@ -86,8 +86,6 @@ static int load_super_mbr(struct supertype *st, int fd, char *devname)
return 1;
}
ioctl(fd, BLKFLSBUF, 0); /* make sure we read current data */
lseek(fd, 0, 0);
if (read(fd, super, sizeof(*super)) != sizeof(*super)) {
if (devname)
@ -126,8 +124,6 @@ static int store_mbr(struct supertype *st, int fd)
return 1;
}
ioctl(fd, BLKFLSBUF, 0); /* make sure we read current data */
lseek(fd, 0, 0);
if (read(fd, old, sizeof(*old)) != sizeof(*old)) {
free(old);

View File

@ -870,8 +870,6 @@ static int load_super0(struct supertype *st, int fd, char *devname)
offset *= 512;
ioctl(fd, BLKFLSBUF, 0); /* make sure we read current data */
if (lseek64(fd, offset, 0)< 0LL) {
if (devname)
pr_err("Cannot seek to superblock on %s: %s\n",

View File

@ -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",