/usr/include/glusterfs/upcall-utils.h is in glusterfs-common 3.7.6-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | /*
Copyright (c) 2015, Red Hat, Inc. <http://www.redhat.com>
This file is part of GlusterFS.
This file is licensed to you under your choice of the GNU Lesser
General Public License, version 3 or any later version (LGPLv3 or
later), or the GNU General Public License, version 2 (GPLv2), in all
cases as published by the Free Software Foundation.
*/
#ifndef _UPCALL_UTILS_H
#define _UPCALL_UTILS_H
#include "iatt.h"
#include "compat-uuid.h"
#include "compat.h"
typedef enum {
GF_UPCALL_EVENT_NULL,
GF_UPCALL_CACHE_INVALIDATION,
} gf_upcall_event_t;
struct gf_upcall {
char *client_uid;
uuid_t gfid;
uint32_t event_type;
void *data;
};
struct gf_upcall_cache_invalidation {
uint32_t flags;
uint32_t expire_time_attr;
struct iatt stat;
struct iatt p_stat; /* parent dir stat */
struct iatt oldp_stat; /* oldparent dir stat */
};
#endif /* _UPCALL_UTILS_H */
|