* [PATCH] fs: add missing prefetch header to inode.c
@ 2011-05-22 19:34 Eduardo Silva
2011-05-22 19:51 ` richard -rw- weinberger
2011-05-22 20:04 ` Sedat Dilek
0 siblings, 2 replies; 5+ messages in thread
From: Eduardo Silva @ 2011-05-22 19:34 UTC (permalink / raw)
To: Alexander Viro; +Cc: linux-fsdevel, linux-kernel
inode.c fails in the compilation process due to the missing
include of linux/prefetch.h.
Signed-off-by: Eduardo Silva <edsiper@gmail.com>
---
fs/inode.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/fs/inode.c b/fs/inode.c
index 33c963d..c77081f 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -26,6 +26,7 @@
#include <linux/posix_acl.h>
#include <linux/ima.h>
#include <linux/cred.h>
+#include <linux/prefetch.h>
#include "internal.h"
/*
--
1.7.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] fs: add missing prefetch header to inode.c
2011-05-22 19:34 [PATCH] fs: add missing prefetch header to inode.c Eduardo Silva
@ 2011-05-22 19:51 ` richard -rw- weinberger
2011-05-22 20:04 ` Sedat Dilek
1 sibling, 0 replies; 5+ messages in thread
From: richard -rw- weinberger @ 2011-05-22 19:51 UTC (permalink / raw)
To: Eduardo Silva; +Cc: Alexander Viro, linux-fsdevel, linux-kernel
On Sun, May 22, 2011 at 9:34 PM, Eduardo Silva <edsiper@gmail.com> wrote:
> inode.c fails in the compilation process due to the missing
> include of linux/prefetch.h.
On which arch?
So far I've observed this build error only on UML.
A fix has already been submitted.
--
Thanks,
//richard
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] fs: add missing prefetch header to inode.c
2011-05-22 19:34 [PATCH] fs: add missing prefetch header to inode.c Eduardo Silva
2011-05-22 19:51 ` richard -rw- weinberger
@ 2011-05-22 20:04 ` Sedat Dilek
2011-05-22 20:08 ` Eduardo Silva
1 sibling, 1 reply; 5+ messages in thread
From: Sedat Dilek @ 2011-05-22 20:04 UTC (permalink / raw)
To: Eduardo Silva; +Cc: Alexander Viro, linux-fsdevel, linux-kernel
On Sun, May 22, 2011 at 9:34 PM, Eduardo Silva <edsiper@gmail.com> wrote:
> inode.c fails in the compilation process due to the missing
> include of linux/prefetch.h.
>
> Signed-off-by: Eduardo Silva <edsiper@gmail.com>
> ---
> fs/inode.c | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/fs/inode.c b/fs/inode.c
> index 33c963d..c77081f 100644
> --- a/fs/inode.c
> +++ b/fs/inode.c
> @@ -26,6 +26,7 @@
> #include <linux/posix_acl.h>
> #include <linux/ima.h>
> #include <linux/cred.h>
> +#include <linux/prefetch.h>
> #include "internal.h"
>
> /*
> --
> 1.7.4.1
>
Just FYI:
"fs: add missing prefetch.h include" is in Linus tree [1].
- Sedat -
[1] http://git.us.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9ce6e0be0626a5de2aca8b769a4aa57086257156
--
To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] fs: add missing prefetch header to inode.c
2011-05-22 20:04 ` Sedat Dilek
@ 2011-05-22 20:08 ` Eduardo Silva
2011-05-22 20:13 ` richard -rw- weinberger
0 siblings, 1 reply; 5+ messages in thread
From: Eduardo Silva @ 2011-05-22 20:08 UTC (permalink / raw)
To: sedat.dilek; +Cc: Alexander Viro, linux-fsdevel, linux-kernel
oh, yep, it was in UM arch :)
On Sun, May 22, 2011 at 4:04 PM, Sedat Dilek <sedat.dilek@googlemail.com> wrote:
> On Sun, May 22, 2011 at 9:34 PM, Eduardo Silva <edsiper@gmail.com> wrote:
>> inode.c fails in the compilation process due to the missing
>> include of linux/prefetch.h.
>>
>> Signed-off-by: Eduardo Silva <edsiper@gmail.com>
>> ---
>> fs/inode.c | 1 +
>> 1 files changed, 1 insertions(+), 0 deletions(-)
>>
>> diff --git a/fs/inode.c b/fs/inode.c
>> index 33c963d..c77081f 100644
>> --- a/fs/inode.c
>> +++ b/fs/inode.c
>> @@ -26,6 +26,7 @@
>> #include <linux/posix_acl.h>
>> #include <linux/ima.h>
>> #include <linux/cred.h>
>> +#include <linux/prefetch.h>
>> #include "internal.h"
>>
>> /*
>> --
>> 1.7.4.1
>>
>
> Just FYI:
> "fs: add missing prefetch.h include" is in Linus tree [1].
>
> - Sedat -
>
> [1] http://git.us.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9ce6e0be0626a5de2aca8b769a4aa57086257156
>
--
Eduardo Silva
http://edsiper.linuxchile.cl
http://www.monkey-project.com
--
To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] fs: add missing prefetch header to inode.c
2011-05-22 20:08 ` Eduardo Silva
@ 2011-05-22 20:13 ` richard -rw- weinberger
0 siblings, 0 replies; 5+ messages in thread
From: richard -rw- weinberger @ 2011-05-22 20:13 UTC (permalink / raw)
To: Eduardo Silva; +Cc: sedat.dilek, Alexander Viro, linux-fsdevel, linux-kernel
On Sun, May 22, 2011 at 10:08 PM, Eduardo Silva <edsiper@gmail.com> wrote:
> oh, yep, it was in UM arch :)
I've already submitted a patch for UML.
fs/inode.c is not the only place which needs the prefetch stuff...
--
Thanks,
//richard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-05-22 20:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-22 19:34 [PATCH] fs: add missing prefetch header to inode.c Eduardo Silva
2011-05-22 19:51 ` richard -rw- weinberger
2011-05-22 20:04 ` Sedat Dilek
2011-05-22 20:08 ` Eduardo Silva
2011-05-22 20:13 ` richard -rw- weinberger
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).