diff options
author | Soumya Koduri <skoduri@redhat.com> | 2015-03-30 16:56:59 +0530 |
---|---|---|
committer | Kaleb KEITHLEY <kkeithle@redhat.com> | 2015-04-30 04:51:46 -0700 |
commit | 2bf85951c6c25aa17acc591fabc3b3927b6dc82f (patch) | |
tree | 8db692b3c4f833f3a075cb5fb58195dda9004280 /api/src/glfs-fops.c | |
parent | 288e02853d913b96e4d6bce9afb16da7d891546f (diff) |
Upcall: Process each of the upcall events separately
As suggested during the code-review of Bug1200262, have modified
GF_CBK_UPCALL to be exlusively GF_CBK_CACHE_INVALIDATION.
Thus, for any new upcall event, a new CBK procedure will be added.
Also made changes to store upcall data separately based on the
upcall event type received.
BUG: 1200262
Change-Id: I0f5e53d6f5ece16aecb514a0a426dca40fa1c755
Signed-off-by: Soumya Koduri <skoduri@redhat.com>
Reviewed-on: http://review.gluster.org/10049
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Diffstat (limited to 'api/src/glfs-fops.c')
-rw-r--r-- | api/src/glfs-fops.c | 74 |
1 files changed, 67 insertions, 7 deletions
diff --git a/api/src/glfs-fops.c b/api/src/glfs-fops.c index de5be43f435..ae7bb087af5 100644 --- a/api/src/glfs-fops.c +++ b/api/src/glfs-fops.c @@ -14,6 +14,7 @@ #include "glfs-mem-types.h" #include "syncop.h" #include "glfs.h" +#include "gfapi-messages.h" #include "compat-errno.h" #include <limits.h> #include "glusterfs3.h" @@ -26,6 +27,48 @@ #define READDIRBUF_SIZE (sizeof(struct dirent) + GF_NAME_MAX + 1) +/* + * This routine is called when an upcall event of type + * 'GF_UPCALL_CACHE_INVALIDATION' is received. + * It makes a copy of the contents of the upcall cache-invalidation + * data received into an entry which is stored in the upcall list + * maintained by gfapi. + */ +int +glfs_get_upcall_cache_invalidation (struct gf_upcall *to_up_data, + struct gf_upcall *from_up_data) +{ + + struct gf_upcall_cache_invalidation *ca_data = NULL; + struct gf_upcall_cache_invalidation *f_ca_data = NULL; + int ret = -1; + + GF_VALIDATE_OR_GOTO (THIS->name, to_up_data, out); + GF_VALIDATE_OR_GOTO (THIS->name, from_up_data, out); + + f_ca_data = from_up_data->data; + GF_VALIDATE_OR_GOTO (THIS->name, f_ca_data, out); + + ca_data = GF_CALLOC (1, sizeof(*ca_data), + glfs_mt_upcall_entry_t); + + if (!ca_data) { + gf_msg (THIS->name, GF_LOG_ERROR, errno, + API_MSG_ALLOC_FAILED, + "Upcall entry allocation failed."); + goto out; + } + + to_up_data->data = ca_data; + + ca_data->flags = f_ca_data->flags; + ca_data->expire_time_attr = f_ca_data->expire_time_attr; + + ret = 0; +out: + return ret; +} + int glfs_loc_link (loc_t *loc, struct iatt *iatt) { @@ -3493,7 +3536,6 @@ void priv_glfs_process_upcall_event (struct glfs *fs, void *data) { int ret = -1; - inode_t *inode = NULL; uuid_t gfid; upcall_entry *u_list = NULL; glusterfs_ctx_t *ctx = NULL; @@ -3523,12 +3565,12 @@ priv_glfs_process_upcall_event (struct glfs *fs, void *data) } pthread_mutex_unlock (&fs->mutex); + upcall_data = (struct gf_upcall *)data; - gf_log (THIS->name, GF_LOG_DEBUG, "Upcall gfapi gfid = %s" + gf_log (THIS->name, GF_LOG_TRACE, "Upcall gfapi gfid = %s" "ret = %d", (char *)(upcall_data->gfid), ret); - memcpy(gfid, (char *)(upcall_data->gfid), 16); u_list = GF_CALLOC (1, sizeof(*u_list), glfs_mt_upcall_entry_t); @@ -3540,10 +3582,24 @@ priv_glfs_process_upcall_event (struct glfs *fs, void *data) INIT_LIST_HEAD (&u_list->upcall_list); - gf_uuid_copy (u_list->gfid, gfid); - u_list->event_type = upcall_data->event_type; - u_list->flags = (uint32_t)(upcall_data->flags); - u_list->expire_time_attr = upcall_data->expire_time_attr; + gf_uuid_copy (u_list->upcall_data.gfid, upcall_data->gfid); + u_list->upcall_data.event_type = upcall_data->event_type; + + switch (upcall_data->event_type) { + case GF_UPCALL_CACHE_INVALIDATION: + ret = glfs_get_upcall_cache_invalidation (&u_list->upcall_data, + upcall_data); + break; + default: + goto out; + } + + if (ret) { + gf_msg (THIS->name, GF_LOG_ERROR, errno, + API_MSG_INVALID_ENTRY, + "Upcall entry validation failed."); + goto out; + } pthread_mutex_lock (&fs->upcall_list_mutex); { @@ -3557,7 +3613,11 @@ priv_glfs_process_upcall_event (struct glfs *fs, void *data) fs->pin_refcnt--; } pthread_mutex_unlock (&fs->mutex); + + ret = 0; out: + if (ret && u_list) + GF_FREE(u_list); return; } |