diff options
Diffstat (limited to 'fs')
-rw-r--r-- | fs/nfs/blocklayout/blocklayout.c | 2 | ||||
-rw-r--r-- | fs/nfs/blocklayout/blocklayout.h | 2 | ||||
-rw-r--r-- | fs/nfs/blocklayout/blocklayoutdev.c | 22 | ||||
-rw-r--r-- | fs/nfs/idmap.c | 25 |
4 files changed, 2 insertions, 49 deletions
diff --git a/fs/nfs/blocklayout/blocklayout.c b/fs/nfs/blocklayout/blocklayout.c index d2432f0dc40c..dc23833c0231 100644 --- a/fs/nfs/blocklayout/blocklayout.c +++ b/fs/nfs/blocklayout/blocklayout.c | |||
@@ -964,7 +964,7 @@ static struct pnfs_layoutdriver_type blocklayout_type = { | |||
964 | }; | 964 | }; |
965 | 965 | ||
966 | static const struct rpc_pipe_ops bl_upcall_ops = { | 966 | static const struct rpc_pipe_ops bl_upcall_ops = { |
967 | .upcall = bl_pipe_upcall, | 967 | .upcall = rpc_pipe_generic_upcall, |
968 | .downcall = bl_pipe_downcall, | 968 | .downcall = bl_pipe_downcall, |
969 | .destroy_msg = bl_pipe_destroy_msg, | 969 | .destroy_msg = bl_pipe_destroy_msg, |
970 | }; | 970 | }; |
diff --git a/fs/nfs/blocklayout/blocklayout.h b/fs/nfs/blocklayout/blocklayout.h index 58dc256402e3..42acf7ef5992 100644 --- a/fs/nfs/blocklayout/blocklayout.h +++ b/fs/nfs/blocklayout/blocklayout.h | |||
@@ -169,8 +169,6 @@ extern wait_queue_head_t bl_wq; | |||
169 | #define BL_DEVICE_REQUEST_ERR 0x2 /* User level process fails */ | 169 | #define BL_DEVICE_REQUEST_ERR 0x2 /* User level process fails */ |
170 | 170 | ||
171 | /* blocklayoutdev.c */ | 171 | /* blocklayoutdev.c */ |
172 | ssize_t bl_pipe_upcall(struct file *, struct rpc_pipe_msg *, | ||
173 | char __user *, size_t); | ||
174 | ssize_t bl_pipe_downcall(struct file *, const char __user *, size_t); | 172 | ssize_t bl_pipe_downcall(struct file *, const char __user *, size_t); |
175 | void bl_pipe_destroy_msg(struct rpc_pipe_msg *); | 173 | void bl_pipe_destroy_msg(struct rpc_pipe_msg *); |
176 | struct block_device *nfs4_blkdev_get(dev_t dev); | 174 | struct block_device *nfs4_blkdev_get(dev_t dev); |
diff --git a/fs/nfs/blocklayout/blocklayoutdev.c b/fs/nfs/blocklayout/blocklayoutdev.c index 0b1fb0e25b93..d08ba9107fde 100644 --- a/fs/nfs/blocklayout/blocklayoutdev.c +++ b/fs/nfs/blocklayout/blocklayoutdev.c | |||
@@ -79,28 +79,6 @@ int nfs4_blkdev_put(struct block_device *bdev) | |||
79 | return blkdev_put(bdev, FMODE_READ); | 79 | return blkdev_put(bdev, FMODE_READ); |
80 | } | 80 | } |
81 | 81 | ||
82 | /* | ||
83 | * Shouldn't there be a rpc_generic_upcall() to do this for us? | ||
84 | */ | ||
85 | ssize_t bl_pipe_upcall(struct file *filp, struct rpc_pipe_msg *msg, | ||
86 | char __user *dst, size_t buflen) | ||
87 | { | ||
88 | char *data = (char *)msg->data + msg->copied; | ||
89 | size_t mlen = min(msg->len - msg->copied, buflen); | ||
90 | unsigned long left; | ||
91 | |||
92 | left = copy_to_user(dst, data, mlen); | ||
93 | if (left == mlen) { | ||
94 | msg->errno = -EFAULT; | ||
95 | return -EFAULT; | ||
96 | } | ||
97 | |||
98 | mlen -= left; | ||
99 | msg->copied += mlen; | ||
100 | msg->errno = 0; | ||
101 | return mlen; | ||
102 | } | ||
103 | |||
104 | static struct bl_dev_msg bl_mount_reply; | 82 | static struct bl_dev_msg bl_mount_reply; |
105 | 83 | ||
106 | ssize_t bl_pipe_downcall(struct file *filp, const char __user *src, | 84 | ssize_t bl_pipe_downcall(struct file *filp, const char __user *src, |
diff --git a/fs/nfs/idmap.c b/fs/nfs/idmap.c index f20801ae0a16..47d1c6ff2d8e 100644 --- a/fs/nfs/idmap.c +++ b/fs/nfs/idmap.c | |||
@@ -336,8 +336,6 @@ struct idmap { | |||
336 | struct idmap_hashtable idmap_group_hash; | 336 | struct idmap_hashtable idmap_group_hash; |
337 | }; | 337 | }; |
338 | 338 | ||
339 | static ssize_t idmap_pipe_upcall(struct file *, struct rpc_pipe_msg *, | ||
340 | char __user *, size_t); | ||
341 | static ssize_t idmap_pipe_downcall(struct file *, const char __user *, | 339 | static ssize_t idmap_pipe_downcall(struct file *, const char __user *, |
342 | size_t); | 340 | size_t); |
343 | static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *); | 341 | static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *); |
@@ -345,7 +343,7 @@ static void idmap_pipe_destroy_msg(struct rpc_pipe_msg *); | |||
345 | static unsigned int fnvhash32(const void *, size_t); | 343 | static unsigned int fnvhash32(const void *, size_t); |
346 | 344 | ||
347 | static const struct rpc_pipe_ops idmap_upcall_ops = { | 345 | static const struct rpc_pipe_ops idmap_upcall_ops = { |
348 | .upcall = idmap_pipe_upcall, | 346 | .upcall = rpc_pipe_generic_upcall, |
349 | .downcall = idmap_pipe_downcall, | 347 | .downcall = idmap_pipe_downcall, |
350 | .destroy_msg = idmap_pipe_destroy_msg, | 348 | .destroy_msg = idmap_pipe_destroy_msg, |
351 | }; | 349 | }; |
@@ -595,27 +593,6 @@ nfs_idmap_name(struct idmap *idmap, struct idmap_hashtable *h, | |||
595 | return ret; | 593 | return ret; |
596 | } | 594 | } |
597 | 595 | ||
598 | /* RPC pipefs upcall/downcall routines */ | ||
599 | static ssize_t | ||
600 | idmap_pipe_upcall(struct file *filp, struct rpc_pipe_msg *msg, | ||
601 | char __user *dst, size_t buflen) | ||
602 | { | ||
603 | char *data = (char *)msg->data + msg->copied; | ||
604 | size_t mlen = min(msg->len, buflen); | ||
605 | unsigned long left; | ||
606 | |||
607 | left = copy_to_user(dst, data, mlen); | ||
608 | if (left == mlen) { | ||
609 | msg->errno = -EFAULT; | ||
610 | return -EFAULT; | ||
611 | } | ||
612 | |||
613 | mlen -= left; | ||
614 | msg->copied += mlen; | ||
615 | msg->errno = 0; | ||
616 | return mlen; | ||
617 | } | ||
618 | |||
619 | static ssize_t | 596 | static ssize_t |
620 | idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) | 597 | idmap_pipe_downcall(struct file *filp, const char __user *src, size_t mlen) |
621 | { | 598 | { |