qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Removing O_LARGEFILE from block layer


From: Richa Marwaha
Subject: [Qemu-devel] [PATCH] Removing O_LARGEFILE from block layer
Date: Fri, 28 Sep 2012 12:45:35 -0400

QEMU by default configures -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
so there is not need to mention O_LARGEFILE in the block layer.

Signed-off-by: Richa Marwaha <address@hidden>
---
 block/raw-posix.c |    2 +-
 block/vdi.c       |    2 +-
 block/vmdk.c      |    6 +++---
 block/vvfat.c     |    2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/block/raw-posix.c b/block/raw-posix.c
index 28d439f..43e3936 100644
--- a/block/raw-posix.c
+++ b/block/raw-posix.c
@@ -965,7 +965,7 @@ static int hdev_open(BlockDriverState *bs, const char 
*filename, int flags)
         if ( bsdPath[ 0 ] != '\0' ) {
             strcat(bsdPath,"s0");
             /* some CDs don't have a partition 0 */
-            fd = qemu_open(bsdPath, O_RDONLY | O_BINARY | O_LARGEFILE);
+            fd = qemu_open(bsdPath, O_RDONLY | O_BINARY);
             if (fd < 0) {
                 bsdPath[strlen(bsdPath)-1] = '1';
             } else {
diff --git a/block/vdi.c b/block/vdi.c
index f35b12e..c70b38b 100644
--- a/block/vdi.c
+++ b/block/vdi.c
@@ -659,7 +659,7 @@ static int vdi_create(const char *filename, 
QEMUOptionParameter *options)
     }
 
     fd = qemu_open(filename,
-                   O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE,
+                   O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
                    0644);
     if (fd < 0) {
         return -errno;
diff --git a/block/vmdk.c b/block/vmdk.c
index f2e861b..c673de3 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -1252,7 +1252,7 @@ static int vmdk_create_extent(const char *filename, 
int64_t filesize,
     uint32_t tmp, magic, grains, gd_size, gt_size, gt_count;
 
     fd = qemu_open(filename,
-                   O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE,
+                   O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
                    0644);
     if (fd < 0) {
         return -errno;
@@ -1574,11 +1574,11 @@ static int vmdk_create(const char *filename, 
QEMUOptionParameter *options)
             total_size / (int64_t)(63 * 16 * 512));
     if (split || flat) {
         fd = qemu_open(filename,
-                       O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE,
+                       O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
                        0644);
     } else {
         fd = qemu_open(filename,
-                       O_WRONLY | O_BINARY | O_LARGEFILE,
+                       O_WRONLY | O_BINARY,
                        0644);
     }
     if (fd < 0) {
diff --git a/block/vvfat.c b/block/vvfat.c
index 59d3c5b..24cbc71 100644
--- a/block/vvfat.c
+++ b/block/vvfat.c
@@ -1162,7 +1162,7 @@ static int open_file(BDRVVVFATState* s,mapping_t* mapping)
     if(!s->current_mapping ||
            strcmp(s->current_mapping->path,mapping->path)) {
        /* open file */
-       int fd = qemu_open(mapping->path, O_RDONLY | O_BINARY | O_LARGEFILE);
+       int fd = qemu_open(mapping->path, O_RDONLY | O_BINARY);
        if(fd<0)
            return -1;
        vvfat_close_current_file(s);
-- 
1.7.0.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]