The patch titled
     virtio: add missing #include <linux/delay.h>
has been added to the -mm tree.  Its filename is
     vitio-add-missing-include-linux-delayh.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: virtio: add missing #include <linux/delay.h>
From: Johann Felix Soden <[EMAIL PROTECTED]>

Include linux/delay.h to fix compiler error:

drivers/virtio/virtio_balloon.c: In function 'fill_balloon':
drivers/virtio/virtio_balloon.c:98: error: implicit declaration of function 
'msleep'

Signed-off-by: Johann Felix Soden <[EMAIL PROTECTED]>
Cc: Rusty Russell <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/virtio/virtio_balloon.c |    1 +
 1 file changed, 1 insertion(+)

diff -puN 
drivers/virtio/virtio_balloon.c~vitio-add-missing-include-linux-delayh 
drivers/virtio/virtio_balloon.c
--- a/drivers/virtio/virtio_balloon.c~vitio-add-missing-include-linux-delayh
+++ a/drivers/virtio/virtio_balloon.c
@@ -23,6 +23,7 @@
 #include <linux/swap.h>
 #include <linux/kthread.h>
 #include <linux/freezer.h>
+#include <linux/delay.h>
 
 struct virtio_balloon
 {
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
vitio-add-missing-include-linux-delayh.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to