]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
net/sunrpc/rpc_pipe.c: Remove unnecessary casts of private_data
authorJoe Perches <joe@perches.com>
Sun, 5 Sep 2010 01:52:53 +0000 (18:52 -0700)
committerJiri Kosina <jkosina@suse.cz>
Thu, 23 Sep 2010 11:40:14 +0000 (13:40 +0200)
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
net/sunrpc/rpc_pipe.c

index 95ccbcf45d3eb64c6ee84c4767c85e7c5a9ee694..1f7fc502a5080a79d255769f144ea3450ec77e34 100644 (file)
@@ -204,7 +204,7 @@ rpc_pipe_release(struct inode *inode, struct file *filp)
        mutex_lock(&inode->i_mutex);
        if (rpci->ops == NULL)
                goto out;
-       msg = (struct rpc_pipe_msg *)filp->private_data;
+       msg = filp->private_data;
        if (msg != NULL) {
                spin_lock(&inode->i_lock);
                msg->errno = -EAGAIN;
@@ -322,7 +322,7 @@ rpc_pipe_ioctl_unlocked(struct file *filp, unsigned int cmd, unsigned long arg)
                len = rpci->pipelen;
                if (filp->private_data) {
                        struct rpc_pipe_msg *msg;
-                       msg = (struct rpc_pipe_msg *)filp->private_data;
+                       msg = filp->private_data;
                        len += msg->len - msg->copied;
                }
                return put_user(len, (int __user *)arg);