tun: fix tun_chr_aio_write so that aio works
authorMichael S. Tsirkin <mst@redhat.com>
Mon, 20 Apr 2009 01:26:11 +0000 (01:26 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 21 Apr 2009 12:42:46 +0000 (05:42 -0700)
commit6f26c9a7555e5bcca3560919db9b852015077dae
tree9ca7509cd0cbbdae158b752c234cb23add8370f0
parent43b39dcdbdf823a1c0ac1f2aa2d76bd2f210adc8
tun: fix tun_chr_aio_write so that aio works

aio_write gets const struct iovec * but tun_chr_aio_write casts this to struct
iovec * and modifies the iovec. As a result, attempts to use io_submit
to send packets to a tun device fail with weird errors such as EINVAL.

Since tun is the only user of skb_copy_datagram_from_iovec, we can
fix this simply by changing the later so that it does not
touch the iovec passed to it.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tun.c
include/linux/skbuff.h
include/linux/socket.h
net/core/datagram.c
net/core/iovec.c