summaryrefslogtreecommitdiffstats
path: root/libglusterfs/src/generator.py
diff options
context:
space:
mode:
authorNiels de Vos <ndevos@redhat.com>2015-06-21 15:51:00 +0200
committerKaleb KEITHLEY <kkeithle@redhat.com>2016-01-31 03:32:14 -0800
commit0b6aba5ef63882e6a798a23de6f8efbb6bea0ea7 (patch)
tree2e20eabaee9802786207f0eb5e4eda4c1a602e00 /libglusterfs/src/generator.py
parent2e69ae03c3c3fcb86e4d5347008834ad1dfb42b4 (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/generator.py')
-rw-r--r--libglusterfs/src/generator.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/libglusterfs/src/generator.py b/libglusterfs/src/generator.py
index 436c314578a..5e8f6c29cd4 100644
--- a/libglusterfs/src/generator.py
+++ b/libglusterfs/src/generator.py
@@ -425,6 +425,15 @@ ops['ipc'] = (
('cbk-arg', 'xdata', 'dict_t *'),
)
+ops['seek'] = (
+ ('fop-arg', 'fd', 'fd_t *'),
+ ('fop-arg', 'offset', 'off_t'),
+ ('fop-arg', 'what', 'gf_seek_what_t'),
+ ('fop-arg', 'xdata', 'dict_t *'),
+ ('cbk-arg', 'offset', 'off_t'),
+ ('cbk-arg', 'xdata', 'dict_t *'),
+)
+
ops['getspec'] = (
('fop-arg', 'key', 'const char *'),
('fop-arg', 'flags', 'int32_t'),