From 2b97b57cd8c71cb07b7002cf3483e9cfc9403c58 Mon Sep 17 00:00:00 2001 From: Soumya Koduri Date: Sun, 15 Feb 2015 23:35:56 +0530 Subject: Upcall: New xlator to store various states and send cbk events Framework on the server-side, to handle certain state of the files accessed and send notifications to the clients connected. A generic and extensible framework, used to maintain states in the glusterfsd process for each of the files accessed (including the clients info doing the fops) and send notifications to the respective glusterfs clients incase of any change in that state. This patch handles "Inode Update/Invalidation" upcall event. Feature page: URL: http://www.gluster.org/community/documentation/index.php/Features/Upcall-infrastructure Below link has a writeup which explains the code changes done - URL: https://soumyakoduri.wordpress.com/2015/02/25/glusterfs-understanding-upcall-infrastructure-and-cache-invalidation-support/ Change-Id: Ie3d724be9a3419fcf18901a753e8ec2df2ac802f BUG: 1200262 Signed-off-by: Soumya Koduri Reviewed-on: http://review.gluster.org/9535 Reviewed-by: Kaleb KEITHLEY Tested-by: Gluster Build System --- rpc/rpc-lib/src/protocol-common.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'rpc/rpc-lib/src/protocol-common.h') diff --git a/rpc/rpc-lib/src/protocol-common.h b/rpc/rpc-lib/src/protocol-common.h index 8ab6078aaf5..3d8cf11fa5f 100644 --- a/rpc/rpc-lib/src/protocol-common.h +++ b/rpc/rpc-lib/src/protocol-common.h @@ -131,6 +131,9 @@ enum gf_cbk_procnum { GF_CBK_INO_FLUSH, GF_CBK_EVENT_NOTIFY, GF_CBK_GET_SNAPS, + /* XXX: Have separate events for each + * UPCALL event - BZ 1200268) */ + GF_CBK_UPCALL, GF_CBK_MAXVALUE, }; -- cgit