netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] macvtap: update file current position
@ 2013-12-04  9:29 Zhi Yong Wu
  2013-12-04  9:29 ` [PATCH 2/2] macvtap: remove unused paramter in macvtap_do_read() Zhi Yong Wu
  2013-12-06  1:44 ` [PATCH 1/2] macvtap: update file current position David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Zhi Yong Wu @ 2013-12-04  9:29 UTC (permalink / raw)
  To: netdev; +Cc: linux-kernel, Zhi Yong Wu

From: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>

Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
---
 drivers/net/macvtap.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/net/macvtap.c b/drivers/net/macvtap.c
index 9093004..957cc5c 100644
--- a/drivers/net/macvtap.c
+++ b/drivers/net/macvtap.c
@@ -876,6 +876,8 @@ static ssize_t macvtap_aio_read(struct kiocb *iocb, const struct iovec *iv,
 
 	ret = macvtap_do_read(q, iocb, 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:
 	return ret;
 }
-- 
1.7.6.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-12-06  1:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-04  9:29 [PATCH 1/2] macvtap: update file current position Zhi Yong Wu
2013-12-04  9:29 ` [PATCH 2/2] macvtap: remove unused paramter in macvtap_do_read() Zhi Yong Wu
2013-12-06  1:44 ` [PATCH 1/2] macvtap: update file current position David Miller
2013-12-06  1:52   ` Zhi Yong Wu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).