diff options
| author | Soumya Koduri <skoduri@redhat.com> | 2015-04-14 04:35:09 +0530 | 
|---|---|---|
| committer | Kaleb KEITHLEY <kkeithle@redhat.com> | 2015-05-03 04:35:03 -0700 | 
| commit | 9330d740fdc99707d8d5ac61eee2935ce63d57e3 (patch) | |
| tree | eb34288cd4be24b5e9b183f0fafda4d9d1099b26 /api/src/glfs-handles.h | |
| parent | c976b59bc4c34ed26bc3f5d9b78356600d8f1d47 (diff) | |
gfapi: Modified CACHE_INVALIDATE flags
Have prefixed CACHE_INVALIDATE flags exposed via gfapi with 'GFAPI_'.
In addition as INODE_UPDATE is asynchronous and may need some
support in NFS-Ganesha, have taken it out for now. Will revisit it
later.
BUG: 1217711
Change-Id: If5cd7262c85946ade04892105100aafe66887e0e
Signed-off-by: Soumya Koduri <skoduri@redhat.com>
Reviewed-on: http://review.gluster.org/10225
Reviewed-by: Niels de Vos <ndevos@redhat.com>
Reviewed-on: http://review.gluster.org/10484
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Diffstat (limited to 'api/src/glfs-handles.h')
| -rw-r--r-- | api/src/glfs-handles.h | 35 | 
1 files changed, 17 insertions, 18 deletions
diff --git a/api/src/glfs-handles.h b/api/src/glfs-handles.h index 17b1defc733..02204a76385 100644 --- a/api/src/glfs-handles.h +++ b/api/src/glfs-handles.h @@ -61,20 +61,20 @@  #define GFAPI_HANDLE_LENGTH 16  /* These flags should be in sync to the ones defined in upcall.h */ -#define UP_NLINK   0x00000001   /* update nlink */ -#define UP_MODE    0x00000002   /* update mode and ctime */ -#define UP_OWN     0x00000004   /* update mode,uid,gid and ctime */ -#define UP_SIZE    0x00000008   /* update fsize */ -#define UP_TIMES   0x00000010   /* update all times */ -#define UP_ATIME   0x00000020   /* update atime only */ -#define UP_PERM    0x00000040   /* update fields needed for -                                   permission checking */ -#define UP_RENAME  0x00000080   /* this is a rename op - -                                   delete the cache entry */ - -#define INODE_UPDATE_FLAGS (UP_NLINK | UP_MODE | \ -                            UP_OWN | UP_SIZE | \ -                            UP_TIMES | UP_ATIME) +#define GFAPI_UP_NLINK   0x00000001   /* update nlink */ +#define GFAPI_UP_MODE    0x00000002   /* update mode and ctime */ +#define GFAPI_UP_OWN     0x00000004   /* update mode,uid,gid and ctime */ +#define GFAPI_UP_SIZE    0x00000008   /* update fsize */ +#define GFAPI_UP_TIMES   0x00000010   /* update all times */ +#define GFAPI_UP_ATIME   0x00000020   /* update atime only */ +#define GFAPI_UP_PERM    0x00000040   /* update fields needed for +                                         permission checking */ +#define GFAPI_UP_RENAME  0x00000080   /* this is a rename op - +                                         delete the cache entry */ + +#define GFAPI_INODE_UPDATE_FLAGS (GFAPI_UP_NLINK | GFAPI_UP_MODE | \ +                                  GFAPI_UP_OWN | GFAPI_UP_SIZE | \ +                                  GFAPI_UP_TIMES | GFAPI_UP_ATIME)  /* Portability non glibc c++ build systems */  #ifndef __THROW @@ -121,10 +121,9 @@ struct callback_arg {  };  /* reason list in callback_arg */ -enum callback_type { -        CBK_EVENT_NULL, -        INODE_INVALIDATE, -        INODE_UPDATE, +enum gfapi_callback_type { +        GFAPI_CBK_EVENT_NULL, +        GFAPI_INODE_INVALIDATE, /* invalidate cache entry */  };  /* Handle based operations */  | 
