]> Pileus Git - ~andy/linux/commitdiff
macvtap: remove useless codes in macvtap_aio_read() and macvtap_recvmsg()
authorZhi Yong Wu <wuzhy@linux.vnet.ibm.com>
Fri, 6 Dec 2013 20:54:59 +0000 (04:54 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 10 Dec 2013 01:35:42 +0000 (20:35 -0500)
By checking related codes, it is impossible that ret > len or total_len,
so we should remove some useless coeds in both above functions.

Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/macvtap.c

index 4a34bcb6549f7eadd05c63288eae252f7c277452..2aa5e973ef17640320a539d4692a397c38b7c1f6 100644 (file)
@@ -871,7 +871,6 @@ static ssize_t macvtap_aio_read(struct kiocb *iocb, const struct iovec *iv,
        }
 
        ret = macvtap_do_read(q, iv, len, file->f_flags & O_NONBLOCK);
-       ret = min_t(ssize_t, ret, len); /* XXX copied from tun.c. Why? */
        if (ret > 0)
                iocb->ki_pos = ret;
 out:
@@ -1106,10 +1105,6 @@ static int macvtap_recvmsg(struct kiocb *iocb, struct socket *sock,
                return -EINVAL;
        ret = macvtap_do_read(q, m->msg_iov, total_len,
                          flags & MSG_DONTWAIT);
-       if (ret > total_len) {
-               m->msg_flags |= MSG_TRUNC;
-               ret = flags & MSG_TRUNC ? ret : total_len;
-       }
        return ret;
 }