tun: Fix copy/paste error in tun_get_user
authorSridhar Samudrala <sri@us.ibm.com>
Mon, 8 Jun 2009 07:27:28 +0000 (00:27 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 Jun 2009 07:27:28 +0000 (00:27 -0700)
Use the right structure while incrementing the offset in tun_get_user.

Signed-off-by: Sridhar Samudrala <sri@us.ibm.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tun.c

index 8d82511..d83ccb8 100644 (file)
@@ -571,7 +571,7 @@ static __inline__ ssize_t tun_get_user(struct tun_struct *tun,
 
                if (gso.hdr_len > len)
                        return -EINVAL;
-               offset += sizeof(pi);
+               offset += sizeof(gso);
        }
 
        if ((tun->flags & TUN_TYPE_MASK) == TUN_TAP_DEV) {