diff options
author | Niels de Vos <ndevos@redhat.com> | 2015-06-21 15:51:00 +0200 |
---|---|---|
committer | Kaleb KEITHLEY <kkeithle@redhat.com> | 2016-01-31 03:32:14 -0800 |
commit | 0b6aba5ef63882e6a798a23de6f8efbb6bea0ea7 (patch) | |
tree | 2e20eabaee9802786207f0eb5e4eda4c1a602e00 /libglusterfs/src/glusterfs.h | |
parent | 2e69ae03c3c3fcb86e4d5347008834ad1dfb42b4 (diff) |
core: add seek() FOP
Minimal infrastructure changes for the seek() FOP. This will provide
SEEK_HOLE and SEEK_DATA functionalities.
BUG: 1220173
Change-Id: I4b74fce8b0bad2f45291fd2c2b9e243c4f4a1aa9
Signed-off-by: Niels de Vos <ndevos@redhat.com>
Reviewed-on: http://review.gluster.org/11480
Smoke: Gluster Build System <jenkins@build.gluster.com>
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Diffstat (limited to 'libglusterfs/src/glusterfs.h')
-rw-r--r-- | libglusterfs/src/glusterfs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libglusterfs/src/glusterfs.h b/libglusterfs/src/glusterfs.h index 6fda458347a..2eba9d19232 100644 --- a/libglusterfs/src/glusterfs.h +++ b/libglusterfs/src/glusterfs.h @@ -318,6 +318,7 @@ typedef enum { GF_FOP_DISCARD, GF_FOP_ZEROFILL, GF_FOP_IPC, + GF_FOP_SEEK, GF_FOP_MAXVALUE, } glusterfs_fop_t; @@ -391,6 +392,11 @@ typedef enum { GF_XATTROP_ADD_ARRAY64_WITH_DEFAULT } gf_xattrop_flags_t; +typedef enum { + GF_SEEK_DATA, + GF_SEEK_HOLE +} gf_seek_what_t; + #define GF_SET_IF_NOT_PRESENT 0x1 /* default behaviour */ #define GF_SET_OVERWRITE 0x2 /* Overwrite with the buf given */ #define GF_SET_DIR_ONLY 0x4 |