diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/fs.h | 4 | ||||
| -rw-r--r-- | include/linux/nfs4.h | 15 | ||||
| -rw-r--r-- | include/linux/nfsd/cld.h | 56 | ||||
| -rw-r--r-- | include/linux/sunrpc/svc_rdma.h | 4 |
4 files changed, 76 insertions, 3 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index c437f914d537..135693e79f2b 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -92,6 +92,10 @@ struct inodes_stat_t { | |||
| 92 | /* File is opened using open(.., 3, ..) and is writeable only for ioctls | 92 | /* File is opened using open(.., 3, ..) and is writeable only for ioctls |
| 93 | (specialy hack for floppy.c) */ | 93 | (specialy hack for floppy.c) */ |
| 94 | #define FMODE_WRITE_IOCTL ((__force fmode_t)0x100) | 94 | #define FMODE_WRITE_IOCTL ((__force fmode_t)0x100) |
| 95 | /* 32bit hashes as llseek() offset (for directories) */ | ||
| 96 | #define FMODE_32BITHASH ((__force fmode_t)0x200) | ||
| 97 | /* 64bit hashes as llseek() offset (for directories) */ | ||
| 98 | #define FMODE_64BITHASH ((__force fmode_t)0x400) | ||
| 95 | 99 | ||
| 96 | /* | 100 | /* |
| 97 | * Don't update ctime and mtime. | 101 | * Don't update ctime and mtime. |
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index 834df8bf08b6..0987146b0637 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h | |||
| @@ -438,7 +438,20 @@ enum limit_by4 { | |||
| 438 | enum open_delegation_type4 { | 438 | enum open_delegation_type4 { |
| 439 | NFS4_OPEN_DELEGATE_NONE = 0, | 439 | NFS4_OPEN_DELEGATE_NONE = 0, |
| 440 | NFS4_OPEN_DELEGATE_READ = 1, | 440 | NFS4_OPEN_DELEGATE_READ = 1, |
| 441 | NFS4_OPEN_DELEGATE_WRITE = 2 | 441 | NFS4_OPEN_DELEGATE_WRITE = 2, |
| 442 | NFS4_OPEN_DELEGATE_NONE_EXT = 3, /* 4.1 */ | ||
| 443 | }; | ||
| 444 | |||
| 445 | enum why_no_delegation4 { /* new to v4.1 */ | ||
| 446 | WND4_NOT_WANTED = 0, | ||
| 447 | WND4_CONTENTION = 1, | ||
| 448 | WND4_RESOURCE = 2, | ||
| 449 | WND4_NOT_SUPP_FTYPE = 3, | ||
| 450 | WND4_WRITE_DELEG_NOT_SUPP_FTYPE = 4, | ||
| 451 | WND4_NOT_SUPP_UPGRADE = 5, | ||
| 452 | WND4_NOT_SUPP_DOWNGRADE = 6, | ||
| 453 | WND4_CANCELLED = 7, | ||
| 454 | WND4_IS_DIR = 8, | ||
| 442 | }; | 455 | }; |
| 443 | 456 | ||
| 444 | enum lock_type4 { | 457 | enum lock_type4 { |
diff --git a/include/linux/nfsd/cld.h b/include/linux/nfsd/cld.h new file mode 100644 index 000000000000..f14a9ab06f1f --- /dev/null +++ b/include/linux/nfsd/cld.h | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | /* | ||
| 2 | * Upcall description for nfsdcld communication | ||
| 3 | * | ||
| 4 | * Copyright (c) 2012 Red Hat, Inc. | ||
| 5 | * Author(s): Jeff Layton <jlayton@redhat.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License as published by | ||
| 9 | * the Free Software Foundation; either version 2 of the License, or | ||
| 10 | * (at your option) any later version. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | * GNU General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License | ||
| 18 | * along with this program; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 20 | */ | ||
| 21 | |||
| 22 | #ifndef _NFSD_CLD_H | ||
| 23 | #define _NFSD_CLD_H | ||
| 24 | |||
| 25 | /* latest upcall version available */ | ||
| 26 | #define CLD_UPCALL_VERSION 1 | ||
| 27 | |||
| 28 | /* defined by RFC3530 */ | ||
| 29 | #define NFS4_OPAQUE_LIMIT 1024 | ||
| 30 | |||
| 31 | enum cld_command { | ||
| 32 | Cld_Create, /* create a record for this cm_id */ | ||
| 33 | Cld_Remove, /* remove record of this cm_id */ | ||
| 34 | Cld_Check, /* is this cm_id allowed? */ | ||
| 35 | Cld_GraceDone, /* grace period is complete */ | ||
| 36 | }; | ||
| 37 | |||
| 38 | /* representation of long-form NFSv4 client ID */ | ||
| 39 | struct cld_name { | ||
| 40 | uint16_t cn_len; /* length of cm_id */ | ||
| 41 | unsigned char cn_id[NFS4_OPAQUE_LIMIT]; /* client-provided */ | ||
| 42 | } __attribute__((packed)); | ||
| 43 | |||
| 44 | /* message struct for communication with userspace */ | ||
| 45 | struct cld_msg { | ||
| 46 | uint8_t cm_vers; /* upcall version */ | ||
| 47 | uint8_t cm_cmd; /* upcall command */ | ||
| 48 | int16_t cm_status; /* return code */ | ||
| 49 | uint32_t cm_xid; /* transaction id */ | ||
| 50 | union { | ||
| 51 | int64_t cm_gracetime; /* grace period start time */ | ||
| 52 | struct cld_name cm_name; | ||
| 53 | } __attribute__((packed)) cm_u; | ||
| 54 | } __attribute__((packed)); | ||
| 55 | |||
| 56 | #endif /* !_NFSD_CLD_H */ | ||
diff --git a/include/linux/sunrpc/svc_rdma.h b/include/linux/sunrpc/svc_rdma.h index c14fe86dac59..0b8e3e6bdacf 100644 --- a/include/linux/sunrpc/svc_rdma.h +++ b/include/linux/sunrpc/svc_rdma.h | |||
| @@ -190,7 +190,7 @@ extern int svc_rdma_xdr_encode_error(struct svcxprt_rdma *, | |||
| 190 | extern void svc_rdma_xdr_encode_write_list(struct rpcrdma_msg *, int); | 190 | extern void svc_rdma_xdr_encode_write_list(struct rpcrdma_msg *, int); |
| 191 | extern void svc_rdma_xdr_encode_reply_array(struct rpcrdma_write_array *, int); | 191 | extern void svc_rdma_xdr_encode_reply_array(struct rpcrdma_write_array *, int); |
| 192 | extern void svc_rdma_xdr_encode_array_chunk(struct rpcrdma_write_array *, int, | 192 | extern void svc_rdma_xdr_encode_array_chunk(struct rpcrdma_write_array *, int, |
| 193 | u32, u64, u32); | 193 | __be32, __be64, u32); |
| 194 | extern void svc_rdma_xdr_encode_reply_header(struct svcxprt_rdma *, | 194 | extern void svc_rdma_xdr_encode_reply_header(struct svcxprt_rdma *, |
| 195 | struct rpcrdma_msg *, | 195 | struct rpcrdma_msg *, |
| 196 | struct rpcrdma_msg *, | 196 | struct rpcrdma_msg *, |
| @@ -292,7 +292,7 @@ svc_rdma_get_reply_array(struct rpcrdma_msg *rmsgp) | |||
| 292 | if (wr_ary) { | 292 | if (wr_ary) { |
| 293 | rp_ary = (struct rpcrdma_write_array *) | 293 | rp_ary = (struct rpcrdma_write_array *) |
| 294 | &wr_ary-> | 294 | &wr_ary-> |
| 295 | wc_array[wr_ary->wc_nchunks].wc_target.rs_length; | 295 | wc_array[ntohl(wr_ary->wc_nchunks)].wc_target.rs_length; |
| 296 | 296 | ||
| 297 | goto found_it; | 297 | goto found_it; |
| 298 | } | 298 | } |
