Recent changes (master)

Jens Axboe <[email protected]> Thu, 9 Oct 2025 06:00:02 -0600
Newsgroups org.kernel.vger.fio
Message-ID <[email protected]>
The following changes since commit 925a31571d2d28c319a20b70d37513463b7fad30:

  Merge branch 'uncached_doc' of https://github.com/Panky-codes/fio (2025-10-05 14:25:54 -0600)

are available in the Git repository at:

  git://git.kernel.dk/fio.git master

for you to fetch changes up to ed31254c1bb4e88d1b3812c06212b50dcba795bc:

  Merge branch 'fix-includes' of https://github.com/betonmischer86/fio (2025-10-08 08:15:36 -0600)

----------------------------------------------------------------
Jens Axboe (1):
      Merge branch 'fix-includes' of https://github.com/betonmischer86/fio

Valeriy Kosikhin (1):
      test, memcpy: reorder #includes

 crc/test.c   | 2 +-
 lib/memcpy.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

---

Diff of recent changes:

diff --git a/crc/test.c b/crc/test.c
index b57f07a4..8102297e 100644
--- a/crc/test.c
+++ b/crc/test.c
@@ -3,10 +3,10 @@
 #include <stdlib.h>
 #include <string.h>
 
+#include "../os/os.h"
 #include "../gettime.h"
 #include "../fio_time.h"
 #include "../lib/rand.h"
-#include "../os/os.h"
 
 #include "../crc/md5.h"
 #include "../crc/crc64.h"
diff --git a/lib/memcpy.c b/lib/memcpy.c
index a5521343..61eb63b5 100644
--- a/lib/memcpy.c
+++ b/lib/memcpy.c
@@ -5,9 +5,9 @@
 
 #include "memcpy.h"
 #include "rand.h"
+#include "../os/os.h"
 #include "../fio_time.h"
 #include "../gettime.h"
-#include "../os/os.h"
 
 #define BUF_SIZE	32 * 1024 * 1024ULL