From 0b6aba5ef63882e6a798a23de6f8efbb6bea0ea7 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Sun, 21 Jun 2015 15:51:00 +0200 Subject: 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 Reviewed-on: http://review.gluster.org/11480 Smoke: Gluster Build System NetBSD-regression: NetBSD Build System CentOS-regression: Gluster Build System Reviewed-by: Kaleb KEITHLEY --- libglusterfs/src/generator.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'libglusterfs/src/generator.py') 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'), -- cgit