Don't double print version when invoked with --version
[fio.git] / memory.c
index b94cd6df35feed843659bc9bf88921bf55ba9be4..39fb9f237bb6fcb3d2a378997ed6debe71e2f236 100644 (file)
--- a/memory.c
+++ b/memory.c
@@ -63,7 +63,7 @@ int fio_pin_memory(void)
 
 static int alloc_mem_shm(struct thread_data *td, unsigned int total_mem)
 {
-       int flags = IPC_CREAT | SHM_R | SHM_W;
+       int flags = IPC_CREAT | S_IRUSR | S_IWUSR;
 
        if (td->o.mem_type == MEM_SHMHUGE) {
                unsigned long mask = td->o.hugepage_size - 1;
@@ -181,7 +181,7 @@ static void free_mem_malloc(struct thread_data *td)
 }
 
 /*
- * Setup the buffer area we need for io.
+ * Set up the buffer area we need for io.
  */
 int allocate_io_mem(struct thread_data *td)
 {