diff options
Diffstat (limited to 'fs/orangefs/devorangefs-req.c')
-rw-r--r-- | fs/orangefs/devorangefs-req.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fs/orangefs/devorangefs-req.c b/fs/orangefs/devorangefs-req.c index a287a66d94e3..7c40e653e526 100644 --- a/fs/orangefs/devorangefs-req.c +++ b/fs/orangefs/devorangefs-req.c | |||
@@ -17,6 +17,8 @@ | |||
17 | 17 | ||
18 | /* this file implements the /dev/pvfs2-req device node */ | 18 | /* this file implements the /dev/pvfs2-req device node */ |
19 | 19 | ||
20 | uint32_t userspace_version; | ||
21 | |||
20 | static int open_access_count; | 22 | static int open_access_count; |
21 | 23 | ||
22 | #define DUMP_DEVICE_ERROR() \ | 24 | #define DUMP_DEVICE_ERROR() \ |
@@ -387,6 +389,13 @@ static ssize_t orangefs_devreq_write_iter(struct kiocb *iocb, | |||
387 | return -EPROTO; | 389 | return -EPROTO; |
388 | } | 390 | } |
389 | 391 | ||
392 | if (!userspace_version) { | ||
393 | userspace_version = head.version; | ||
394 | } else if (userspace_version != head.version) { | ||
395 | gossip_err("Error: userspace version changes\n"); | ||
396 | return -EPROTO; | ||
397 | } | ||
398 | |||
390 | /* remove the op from the in progress hash table */ | 399 | /* remove the op from the in progress hash table */ |
391 | op = orangefs_devreq_remove_op(head.tag); | 400 | op = orangefs_devreq_remove_op(head.tag); |
392 | if (!op) { | 401 | if (!op) { |
@@ -527,6 +536,7 @@ static int orangefs_devreq_release(struct inode *inode, struct file *file) | |||
527 | gossip_debug(GOSSIP_DEV_DEBUG, | 536 | gossip_debug(GOSSIP_DEV_DEBUG, |
528 | "pvfs2-client-core: device close complete\n"); | 537 | "pvfs2-client-core: device close complete\n"); |
529 | open_access_count = 0; | 538 | open_access_count = 0; |
539 | userspace_version = 0; | ||
530 | mutex_unlock(&devreq_mutex); | 540 | mutex_unlock(&devreq_mutex); |
531 | return 0; | 541 | return 0; |
532 | } | 542 | } |