Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * XDR types for NFSv3 in nfsd. |
| 4 | * |
| 5 | * Copyright (C) 1996-1998, Olaf Kirch <okir@monad.swb.de> |
| 6 | */ |
| 7 | |
| 8 | #ifndef _LINUX_NFSD_XDR3_H |
| 9 | #define _LINUX_NFSD_XDR3_H |
| 10 | |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 11 | #include "xdr.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
| 13 | struct nfsd3_sattrargs { |
| 14 | struct svc_fh fh; |
| 15 | struct iattr attrs; |
| 16 | int check_guard; |
Arnd Bergmann | 2a1aa48 | 2019-11-03 17:50:18 +0100 | [diff] [blame] | 17 | time64_t guardtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | }; |
| 19 | |
| 20 | struct nfsd3_diropargs { |
| 21 | struct svc_fh fh; |
| 22 | char * name; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 23 | unsigned int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | struct nfsd3_accessargs { |
| 27 | struct svc_fh fh; |
Chuck Lever | 3b921a2 | 2020-10-20 14:32:04 -0400 | [diff] [blame] | 28 | __u32 access; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | }; |
| 30 | |
| 31 | struct nfsd3_readargs { |
| 32 | struct svc_fh fh; |
| 33 | __u64 offset; |
| 34 | __u32 count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | struct nfsd3_writeargs { |
| 38 | svc_fh fh; |
| 39 | __u64 offset; |
| 40 | __u32 count; |
| 41 | int stable; |
NeilBrown | 0ba7536 | 2005-11-07 01:00:26 -0800 | [diff] [blame] | 42 | __u32 len; |
Chuck Lever | 8154ef2 | 2018-03-27 10:54:07 -0400 | [diff] [blame] | 43 | struct kvec first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | struct nfsd3_createargs { |
| 47 | struct svc_fh fh; |
| 48 | char * name; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 49 | unsigned int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | int createmode; |
| 51 | struct iattr attrs; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 52 | __be32 * verf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | struct nfsd3_mknodargs { |
| 56 | struct svc_fh fh; |
| 57 | char * name; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 58 | unsigned int len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | __u32 ftype; |
| 60 | __u32 major, minor; |
| 61 | struct iattr attrs; |
| 62 | }; |
| 63 | |
| 64 | struct nfsd3_renameargs { |
| 65 | struct svc_fh ffh; |
| 66 | char * fname; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 67 | unsigned int flen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | struct svc_fh tfh; |
| 69 | char * tname; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 70 | unsigned int tlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | }; |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | struct nfsd3_linkargs { |
| 74 | struct svc_fh ffh; |
| 75 | struct svc_fh tfh; |
| 76 | char * tname; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 77 | unsigned int tlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | struct nfsd3_symlinkargs { |
| 81 | struct svc_fh ffh; |
| 82 | char * fname; |
Chuck Lever | 29d5e55 | 2007-11-01 16:57:04 -0400 | [diff] [blame] | 83 | unsigned int flen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | char * tname; |
Chuck Lever | 48b4ba3 | 2007-11-01 16:57:25 -0400 | [diff] [blame] | 85 | unsigned int tlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | struct iattr attrs; |
Chuck Lever | 38a7031 | 2018-03-27 10:54:21 -0400 | [diff] [blame] | 87 | struct kvec first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | }; |
| 89 | |
| 90 | struct nfsd3_readdirargs { |
| 91 | struct svc_fh fh; |
| 92 | __u64 cookie; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | __u32 count; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 94 | __be32 * verf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | }; |
| 96 | |
| 97 | struct nfsd3_commitargs { |
| 98 | struct svc_fh fh; |
| 99 | __u64 offset; |
| 100 | __u32 count; |
| 101 | }; |
| 102 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 103 | struct nfsd3_getaclargs { |
| 104 | struct svc_fh fh; |
Chuck Lever | 635a45d | 2020-11-17 11:32:04 -0500 | [diff] [blame] | 105 | __u32 mask; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 106 | }; |
| 107 | |
| 108 | struct posix_acl; |
| 109 | struct nfsd3_setaclargs { |
| 110 | struct svc_fh fh; |
Chuck Lever | 427eab3 | 2020-11-17 11:37:35 -0500 | [diff] [blame] | 111 | __u32 mask; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 112 | struct posix_acl *acl_access; |
| 113 | struct posix_acl *acl_default; |
| 114 | }; |
| 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | struct nfsd3_attrstat { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 117 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | struct svc_fh fh; |
David Shaw | a334de2 | 2006-01-06 00:19:58 -0800 | [diff] [blame] | 119 | struct kstat stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | /* LOOKUP, CREATE, MKDIR, SYMLINK, MKNOD */ |
| 123 | struct nfsd3_diropres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 124 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | struct svc_fh dirfh; |
| 126 | struct svc_fh fh; |
| 127 | }; |
| 128 | |
| 129 | struct nfsd3_accessres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 130 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | struct svc_fh fh; |
| 132 | __u32 access; |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 133 | struct kstat stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
| 136 | struct nfsd3_readlinkres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 137 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | struct svc_fh fh; |
| 139 | __u32 len; |
Chuck Lever | 9a9c892 | 2020-10-22 15:18:40 -0400 | [diff] [blame^] | 140 | struct page **pages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | }; |
| 142 | |
| 143 | struct nfsd3_readres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 144 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | struct svc_fh fh; |
| 146 | unsigned long count; |
Trond Myklebust | 83a6307 | 2019-08-26 13:03:11 -0400 | [diff] [blame] | 147 | __u32 eof; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | }; |
| 149 | |
| 150 | struct nfsd3_writeres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 151 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | struct svc_fh fh; |
| 153 | unsigned long count; |
| 154 | int committed; |
Trond Myklebust | 19e0663 | 2020-01-06 13:40:37 -0500 | [diff] [blame] | 155 | __be32 verf[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | }; |
| 157 | |
| 158 | struct nfsd3_renameres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 159 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | struct svc_fh ffh; |
| 161 | struct svc_fh tfh; |
| 162 | }; |
| 163 | |
| 164 | struct nfsd3_linkres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 165 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | struct svc_fh tfh; |
| 167 | struct svc_fh fh; |
| 168 | }; |
| 169 | |
| 170 | struct nfsd3_readdirres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 171 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | struct svc_fh fh; |
J. Bruce Fields | 068c34c | 2014-01-09 16:24:35 -0500 | [diff] [blame] | 173 | /* Just to save kmalloc on every readdirplus entry (svc_fh is a |
| 174 | * little large for the stack): */ |
| 175 | struct svc_fh scratch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | int count; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 177 | __be32 verf[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
| 179 | struct readdir_cd common; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 180 | __be32 * buffer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | int buflen; |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 182 | __be32 * offset; |
| 183 | __be32 * offset1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | struct svc_rqst * rqstp; |
| 185 | |
| 186 | }; |
| 187 | |
| 188 | struct nfsd3_fsstatres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 189 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | struct kstatfs stats; |
| 191 | __u32 invarsec; |
| 192 | }; |
| 193 | |
| 194 | struct nfsd3_fsinfores { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 195 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | __u32 f_rtmax; |
| 197 | __u32 f_rtpref; |
| 198 | __u32 f_rtmult; |
| 199 | __u32 f_wtmax; |
| 200 | __u32 f_wtpref; |
| 201 | __u32 f_wtmult; |
| 202 | __u32 f_dtpref; |
| 203 | __u64 f_maxfilesize; |
| 204 | __u32 f_properties; |
| 205 | }; |
| 206 | |
| 207 | struct nfsd3_pathconfres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 208 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | __u32 p_link_max; |
| 210 | __u32 p_name_max; |
| 211 | __u32 p_no_trunc; |
| 212 | __u32 p_chown_restricted; |
| 213 | __u32 p_case_insensitive; |
| 214 | __u32 p_case_preserving; |
| 215 | }; |
| 216 | |
| 217 | struct nfsd3_commitres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 218 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | struct svc_fh fh; |
Trond Myklebust | 524ff1a | 2020-01-06 13:40:36 -0500 | [diff] [blame] | 220 | __be32 verf[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | }; |
| 222 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 223 | struct nfsd3_getaclres { |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 224 | __be32 status; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 225 | struct svc_fh fh; |
| 226 | int mask; |
| 227 | struct posix_acl *acl_access; |
| 228 | struct posix_acl *acl_default; |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 229 | struct kstat stat; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 230 | }; |
| 231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | /* dummy type for release */ |
| 233 | struct nfsd3_fhandle_pair { |
| 234 | __u32 dummy; |
| 235 | struct svc_fh fh1; |
| 236 | struct svc_fh fh2; |
| 237 | }; |
| 238 | |
| 239 | /* |
| 240 | * Storage requirements for XDR arguments and results. |
| 241 | */ |
| 242 | union nfsd3_xdrstore { |
| 243 | struct nfsd3_sattrargs sattrargs; |
| 244 | struct nfsd3_diropargs diropargs; |
| 245 | struct nfsd3_readargs readargs; |
| 246 | struct nfsd3_writeargs writeargs; |
| 247 | struct nfsd3_createargs createargs; |
| 248 | struct nfsd3_renameargs renameargs; |
| 249 | struct nfsd3_linkargs linkargs; |
| 250 | struct nfsd3_symlinkargs symlinkargs; |
| 251 | struct nfsd3_readdirargs readdirargs; |
| 252 | struct nfsd3_diropres diropres; |
| 253 | struct nfsd3_accessres accessres; |
| 254 | struct nfsd3_readlinkres readlinkres; |
| 255 | struct nfsd3_readres readres; |
| 256 | struct nfsd3_writeres writeres; |
| 257 | struct nfsd3_renameres renameres; |
| 258 | struct nfsd3_linkres linkres; |
| 259 | struct nfsd3_readdirres readdirres; |
| 260 | struct nfsd3_fsstatres fsstatres; |
| 261 | struct nfsd3_fsinfores fsinfores; |
| 262 | struct nfsd3_pathconfres pathconfres; |
| 263 | struct nfsd3_commitres commitres; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 264 | struct nfsd3_getaclres getaclres; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | }; |
| 266 | |
| 267 | #define NFS3_SVC_XDRSIZE sizeof(union nfsd3_xdrstore) |
| 268 | |
Chuck Lever | 9575363 | 2020-10-20 14:30:02 -0400 | [diff] [blame] | 269 | int nfs3svc_decode_fhandleargs(struct svc_rqst *, __be32 *); |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 270 | int nfs3svc_decode_sattrargs(struct svc_rqst *, __be32 *); |
| 271 | int nfs3svc_decode_diropargs(struct svc_rqst *, __be32 *); |
| 272 | int nfs3svc_decode_accessargs(struct svc_rqst *, __be32 *); |
| 273 | int nfs3svc_decode_readargs(struct svc_rqst *, __be32 *); |
| 274 | int nfs3svc_decode_writeargs(struct svc_rqst *, __be32 *); |
| 275 | int nfs3svc_decode_createargs(struct svc_rqst *, __be32 *); |
| 276 | int nfs3svc_decode_mkdirargs(struct svc_rqst *, __be32 *); |
| 277 | int nfs3svc_decode_mknodargs(struct svc_rqst *, __be32 *); |
| 278 | int nfs3svc_decode_renameargs(struct svc_rqst *, __be32 *); |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 279 | int nfs3svc_decode_linkargs(struct svc_rqst *, __be32 *); |
| 280 | int nfs3svc_decode_symlinkargs(struct svc_rqst *, __be32 *); |
| 281 | int nfs3svc_decode_readdirargs(struct svc_rqst *, __be32 *); |
| 282 | int nfs3svc_decode_readdirplusargs(struct svc_rqst *, __be32 *); |
| 283 | int nfs3svc_decode_commitargs(struct svc_rqst *, __be32 *); |
Chuck Lever | 2c42f80 | 2020-10-21 11:58:41 -0400 | [diff] [blame] | 284 | int nfs3svc_encode_getattrres(struct svc_rqst *, __be32 *); |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 285 | int nfs3svc_encode_wccstat(struct svc_rqst *, __be32 *); |
Chuck Lever | 5cf3533 | 2020-10-22 14:46:58 -0400 | [diff] [blame] | 286 | int nfs3svc_encode_lookupres(struct svc_rqst *, __be32 *); |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 287 | int nfs3svc_encode_accessres(struct svc_rqst *, __be32 *); |
| 288 | int nfs3svc_encode_readlinkres(struct svc_rqst *, __be32 *); |
| 289 | int nfs3svc_encode_readres(struct svc_rqst *, __be32 *); |
| 290 | int nfs3svc_encode_writeres(struct svc_rqst *, __be32 *); |
| 291 | int nfs3svc_encode_createres(struct svc_rqst *, __be32 *); |
| 292 | int nfs3svc_encode_renameres(struct svc_rqst *, __be32 *); |
| 293 | int nfs3svc_encode_linkres(struct svc_rqst *, __be32 *); |
| 294 | int nfs3svc_encode_readdirres(struct svc_rqst *, __be32 *); |
| 295 | int nfs3svc_encode_fsstatres(struct svc_rqst *, __be32 *); |
| 296 | int nfs3svc_encode_fsinfores(struct svc_rqst *, __be32 *); |
| 297 | int nfs3svc_encode_pathconfres(struct svc_rqst *, __be32 *); |
| 298 | int nfs3svc_encode_commitres(struct svc_rqst *, __be32 *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 300 | void nfs3svc_release_fhandle(struct svc_rqst *); |
| 301 | void nfs3svc_release_fhandle2(struct svc_rqst *); |
NeilBrown | a0ad13e | 2007-01-26 00:57:10 -0800 | [diff] [blame] | 302 | int nfs3svc_encode_entry(void *, const char *name, |
| 303 | int namlen, loff_t offset, u64 ino, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | unsigned int); |
NeilBrown | a0ad13e | 2007-01-26 00:57:10 -0800 | [diff] [blame] | 305 | int nfs3svc_encode_entry_plus(void *, const char *name, |
| 306 | int namlen, loff_t offset, u64 ino, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | unsigned int); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 308 | /* Helper functions for NFSv3 ACL code */ |
Al Viro | 91f0716 | 2006-10-19 23:28:57 -0700 | [diff] [blame] | 309 | __be32 *nfs3svc_encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 310 | struct svc_fh *fhp); |
Chuck Lever | 05027ea | 2020-11-17 11:52:04 -0500 | [diff] [blame] | 311 | bool svcxdr_decode_nfs_fh3(struct xdr_stream *xdr, struct svc_fh *fhp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | #endif /* _LINUX_NFSD_XDR3_H */ |