]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/nfs/callback.h
nfs41: decode minorversion 1 cb_compound header
[mirror_ubuntu-bionic-kernel.git] / fs / nfs / callback.h
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/nfs/callback.h
3 *
4 * Copyright (C) 2004 Trond Myklebust
5 *
6 * NFSv4 callback definitions
7 */
8#ifndef __LINUX_FS_NFS_CALLBACK_H
9#define __LINUX_FS_NFS_CALLBACK_H
10
11#define NFS4_CALLBACK 0x40000000
12#define NFS4_CALLBACK_XDRSIZE 2048
13#define NFS4_CALLBACK_BUFSIZE (1024 + NFS4_CALLBACK_XDRSIZE)
14
15enum nfs4_callback_procnum {
16 CB_NULL = 0,
17 CB_COMPOUND = 1,
18};
19
20enum nfs4_callback_opnum {
21 OP_CB_GETATTR = 3,
22 OP_CB_RECALL = 4,
23 OP_CB_ILLEGAL = 10044,
24};
25
26struct cb_compound_hdr_arg {
2e42c3e2 27 unsigned int taglen;
1da177e4 28 const char *tag;
b8f2ef84 29 unsigned int minorversion;
1da177e4
LT
30 unsigned nops;
31};
32
33struct cb_compound_hdr_res {
5704fdeb 34 __be32 *status;
2e42c3e2 35 unsigned int taglen;
1da177e4 36 const char *tag;
5704fdeb 37 __be32 *nops;
1da177e4
LT
38};
39
40struct cb_getattrargs {
671beed7 41 struct sockaddr *addr;
1da177e4
LT
42 struct nfs_fh fh;
43 uint32_t bitmap[2];
44};
45
46struct cb_getattrres {
e6f684f6 47 __be32 status;
1da177e4
LT
48 uint32_t bitmap[2];
49 uint64_t size;
50 uint64_t change_attr;
51 struct timespec ctime;
52 struct timespec mtime;
53};
54
55struct cb_recallargs {
c1d35866 56 struct sockaddr *addr;
1da177e4
LT
57 struct nfs_fh fh;
58 nfs4_stateid stateid;
59 uint32_t truncate;
60};
61
e6f684f6
AV
62extern __be32 nfs4_callback_getattr(struct cb_getattrargs *args, struct cb_getattrres *res);
63extern __be32 nfs4_callback_recall(struct cb_recallargs *args, void *dummy);
1da177e4 64
5ae1fbce 65#ifdef CONFIG_NFS_V4
71468513 66extern int nfs_callback_up(u32 minorversion, struct rpc_xprt *xprt);
e82dc22d
AA
67extern void nfs_callback_down(int minorversion);
68#endif /* CONFIG_NFS_V4 */
1da177e4 69
a43cde94
RL
70/*
71 * nfs41: Callbacks are expected to not cause substantial latency,
72 * so we limit their concurrency to 1 by setting up the maximum number
73 * of slots for the backchannel.
74 */
75#define NFS41_BC_MIN_CALLBACKS 1
76
a72b4422 77extern unsigned int nfs_callback_set_tcpport;
1da177e4 78extern unsigned short nfs_callback_tcpport;
f738f517 79extern unsigned short nfs_callback_tcpport6;
1da177e4
LT
80
81#endif /* __LINUX_FS_NFS_CALLBACK_H */