[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070423100356.GA17231@elte.hu>
Date: Mon, 23 Apr 2007 12:03:56 +0200
From: Ingo Molnar <mingo@...e.hu>
To: Zach Carter <linux@...hcarter.com>
Cc: linux-kernel@...r.kernel.org,
Linus Torvalds <torvalds@...ux-foundation.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Con Kolivas <kernel@...ivas.org>,
Nick Piggin <npiggin@...e.de>, Mike Galbraith <efault@....de>,
Arjan van de Ven <arjan@...radead.org>,
Peter Williams <pwil3058@...pond.net.au>,
Thomas Gleixner <tglx@...utronix.de>, caglar@...dus.org.tr,
Willy Tarreau <w@....eu>,
Gene Heskett <gene.heskett@...il.com>, Mark Lord <lkml@....ca>,
Ulrich Drepper <drepper@...hat.com>
Subject: Re: [patch] CFS scheduler, -v5 (build problem - make headers_check fails)
* Zach Carter <linux@...hcarter.com> wrote:
> FYI, make headers_check seems to fail on this:
>
> [carter@...h linux-2.6]$ make headers_check
> make[2]: *** No rule to make target
> `/src/linux-2.6/usr/include/linux/.check.sched.h', needed by
> `__headerscheck'. Stop.
> make[1]: *** [linux] Error 2
> make: *** [headers_check] Error 2
> [carter@...h linux-2.6]$
>
> This also fails if I have CONFIG_HEADERS_CHECK=y in my .config
ah, indeed - the patch below should fix this. It will be in -v6.
Ingo
Index: linux/include/linux/sched.h
===================================================================
--- linux.orig/include/linux/sched.h
+++ linux/include/linux/sched.h
@@ -2,7 +2,6 @@
#define _LINUX_SCHED_H
#include <linux/auxvec.h> /* For AT_VECTOR_SIZE */
-#include <linux/rbtree.h> /* For run_node */
/*
* cloning flags:
*/
@@ -37,6 +36,8 @@
#ifdef __KERNEL__
+#include <linux/rbtree.h> /* For run_node */
+
struct sched_param {
int sched_priority;
};
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists