Displaying 2 results from an estimated 2 matches for "fadvise_sequenti".
Did you mean:
fadvise_sequential
2016 Apr 14
0
[PATCH 1/2] utils, builder: Add wrappers for posix_fadvise.
...ntend.h
+++ b/src/guestfs-internal-frontend.h
@@ -87,6 +87,11 @@ extern int guestfs_int_is_true (const char *str);
extern const char *guestfs_int_ovmf_i386_firmware[];
extern const char *guestfs_int_ovmf_x86_64_firmware[];
extern const char *guestfs_int_aavmf_firmware[];
+extern void guestfs_int_fadvise_sequential (int fd);
+extern void guestfs_int_fadvise_random (int fd);
+extern void guestfs_int_fadvise_noreuse (int fd);
+extern void guestfs_int_fadvise_dontneed (int fd);
+extern void guestfs_int_fadvise_willneed (int fd);
/* These functions are used internally by the CLEANUP_* macros.
* Don't c...
2016 Apr 14
3
builder: posix_fadvise fixes.
The way we used posix_fadvise was wrong, and yet right!
Rich.