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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/*
Copyright (c) 2006-2017 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.
*/
#define __XOPEN_SOURCE 500
/* for SEEK_HOLE and SEEK_DATA */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "xlator.h"
#include "posix.h"
class_methods_t class_methods = {.init = posix_init,
.fini = posix_fini,
.reconfigure = posix_reconfigure,
.notify = posix_notify};
struct xlator_dumpops dumpops = {
.priv = posix_priv,
.inode = posix_inode,
};
struct xlator_fops fops = {
.lookup = posix_lookup,
.stat = posix_stat,
.opendir = posix_opendir,
.readdir = posix_readdir,
.readdirp = posix_readdirp,
.readlink = posix_readlink,
.mknod = posix_mknod,
.mkdir = posix_mkdir,
.unlink = posix_unlink,
.rmdir = posix_rmdir,
.symlink = posix_symlink,
.rename = posix_rename,
.link = posix_link,
.truncate = posix_truncate,
.create = posix_create,
.open = posix_open,
.readv = posix_readv,
.writev = posix_writev,
.statfs = posix_statfs,
.flush = posix_flush,
.fsync = posix_fsync,
.setxattr = posix_setxattr,
.fsetxattr = posix_fsetxattr,
.getxattr = posix_getxattr,
.fgetxattr = posix_fgetxattr,
.removexattr = posix_removexattr,
.fremovexattr = posix_fremovexattr,
.fsyncdir = posix_fsyncdir,
.access = posix_access,
.ftruncate = posix_ftruncate,
.fstat = posix_fstat,
.lk = posix_lk,
.inodelk = posix_inodelk,
.finodelk = posix_finodelk,
.entrylk = posix_entrylk,
.fentrylk = posix_fentrylk,
.rchecksum = posix_rchecksum,
.xattrop = posix_xattrop,
.fxattrop = posix_fxattrop,
.setattr = posix_setattr,
.fsetattr = posix_fsetattr,
.fallocate = posix_glfallocate,
.discard = posix_discard,
.zerofill = posix_zerofill,
.ipc = posix_ipc,
.seek = posix_seek,
.lease = posix_lease,
.put = posix_put,
};
struct xlator_cbks cbks = {.release = posix_release,
.releasedir = posix_releasedir,
.forget = posix_forget};
|