aboutsummaryrefslogtreecommitdiffstats
path: root/fs/orangefs
diff options
context:
space:
mode:
authorMartin Brandenburg <martin@omnibond.com>2016-02-20 14:26:01 -0500
committerMike Marshall <hubcap@omnibond.com>2016-02-24 17:07:50 -0500
commit9c2bcf288ed7f600bc3f8e7541ea0522a8912bae (patch)
tree245f765664b131be5a95c2c75f8a4d4372e2d374 /fs/orangefs
parent47b4948fdb1055cd8d8f86aebb0b3fcb06ba36d5 (diff)
orangefs: remove vestigial async io code
I have verified that there is nothing in the userspace daemon version we are implementing this protocol against that ever looks at this field. Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs')
-rw-r--r--fs/orangefs/file.c1
-rw-r--r--fs/orangefs/orangefs-kernel.h8
-rw-r--r--fs/orangefs/upcall.h4
3 files changed, 2 insertions, 11 deletions
diff --git a/fs/orangefs/file.c b/fs/orangefs/file.c
index 4eb009e8f19f..399d5288dc1a 100644
--- a/fs/orangefs/file.c
+++ b/fs/orangefs/file.c
@@ -102,7 +102,6 @@ static ssize_t wait_for_direct_io(enum ORANGEFS_io_type type, struct inode *inod
102 return -ENOMEM; 102 return -ENOMEM;
103 103
104 /* synchronous I/O */ 104 /* synchronous I/O */
105 new_op->upcall.req.io.async_vfs_io = ORANGEFS_VFS_SYNC_IO;
106 new_op->upcall.req.io.readahead_size = readahead_size; 105 new_op->upcall.req.io.readahead_size = readahead_size;
107 new_op->upcall.req.io.io_type = type; 106 new_op->upcall.req.io.io_type = type;
108 new_op->upcall.req.io.refn = orangefs_inode->refn; 107 new_op->upcall.req.io.refn = orangefs_inode->refn;
diff --git a/fs/orangefs/orangefs-kernel.h b/fs/orangefs/orangefs-kernel.h
index c3b3b22115eb..91cbd53f782c 100644
--- a/fs/orangefs/orangefs-kernel.h
+++ b/fs/orangefs/orangefs-kernel.h
@@ -101,14 +101,6 @@ enum orangefs_vfs_op_states {
101}; 101};
102 102
103/* 103/*
104 * Defines for controlling whether I/O upcalls are for async or sync operations
105 */
106enum ORANGEFS_async_io_type {
107 ORANGEFS_VFS_SYNC_IO = 0,
108 ORANGEFS_VFS_ASYNC_IO = 1,
109};
110
111/*
112 * An array of client_debug_mask will be built to hold debug keyword/mask 104 * An array of client_debug_mask will be built to hold debug keyword/mask
113 * values fetched from userspace. 105 * values fetched from userspace.
114 */ 106 */
diff --git a/fs/orangefs/upcall.h b/fs/orangefs/upcall.h
index af6dcac180ab..001b20239407 100644
--- a/fs/orangefs/upcall.h
+++ b/fs/orangefs/upcall.h
@@ -13,10 +13,10 @@
13 * client-core and device 13 * client-core and device
14 */ 14 */
15struct orangefs_io_request_s { 15struct orangefs_io_request_s {
16 __s32 async_vfs_io; 16 __s32 __pad1;
17 __s32 buf_index; 17 __s32 buf_index;
18 __s32 count; 18 __s32 count;
19 __s32 __pad1; 19 __s32 __pad2;
20 __s64 offset; 20 __s64 offset;
21 struct orangefs_object_kref refn; 21 struct orangefs_object_kref refn;
22 enum ORANGEFS_io_type io_type; 22 enum ORANGEFS_io_type io_type;