diff options
author | Soumya Koduri <skoduri@redhat.com> | 2015-02-15 23:35:56 +0530 |
---|---|---|
committer | Kaleb KEITHLEY <kkeithle@redhat.com> | 2015-03-17 05:08:07 -0700 |
commit | 2b97b57cd8c71cb07b7002cf3483e9cfc9403c58 (patch) | |
tree | 9fc96451b469e213348f3065ca07e7a7c5a96ec0 /rpc/xdr/src | |
parent | 79009691c01f2b32b523d91a159aadd0e414f31b (diff) |
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 <skoduri@redhat.com>
Reviewed-on: http://review.gluster.org/9535
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'rpc/xdr/src')
-rw-r--r-- | rpc/xdr/src/glusterfs3-xdr.x | 9 | ||||
-rw-r--r-- | rpc/xdr/src/glusterfs3.h | 12 |
2 files changed, 21 insertions, 0 deletions
diff --git a/rpc/xdr/src/glusterfs3-xdr.x b/rpc/xdr/src/glusterfs3-xdr.x index a68fcae7e1c..81b0f201f89 100644 --- a/rpc/xdr/src/glusterfs3-xdr.x +++ b/rpc/xdr/src/glusterfs3-xdr.x @@ -43,6 +43,15 @@ struct gf_iatt { unsigned int ia_ctime_nsec; }; + +struct gfs3_upcall_req { + opaque gfid[16]; + unsigned int event_type; /* Upcall event type */ + unsigned int flags; /* or mask of events incase of inotify */ + unsigned int expire_time_attr; /* the amount of time which client + * can cache this entry */ +}; + struct gfs3_stat_req { opaque gfid[16]; opaque xdata<>; /* Extra data */ diff --git a/rpc/xdr/src/glusterfs3.h b/rpc/xdr/src/glusterfs3.h index 798413e3145..b3ee267b64d 100644 --- a/rpc/xdr/src/glusterfs3.h +++ b/rpc/xdr/src/glusterfs3.h @@ -267,4 +267,16 @@ gf_stat_from_iatt (struct gf_iatt *gf_stat, struct iatt *iatt) gf_stat->ia_ctime_nsec = iatt->ia_ctime_nsec ; } +static inline void +gf_proto_upcall_from_upcall (gfs3_upcall_req *gf_up_req, + struct gf_upcall *gf_up_data) +{ + if (!gf_up_req || !gf_up_data) + return; + + memcpy (gf_up_req->gfid, gf_up_data->gfid, 16); + gf_up_req->event_type = gf_up_data->event_type; + gf_up_req->flags = gf_up_data->flags; + gf_up_req->expire_time_attr = gf_up_data->expire_time_attr; +} #endif /* !_GLUSTERFS3_H */ |