From 2b6a79d9c9a474eface435b40c64252a7464cecb Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Sun, 21 Nov 2010 16:04:52 +0000 Subject: [PATCH] =?UTF-8?q?[NTOSKRNL]=20Previously,=20in=20ReactOS'=20stor?= =?UTF-8?q?ies:=20ReactOS=20was=20broken=20since=20more=20a=20hundred=20of?= =?UTF-8?q?=20commits=20when=20two=20devs=20decided=20it=20was=20enough.?= =?UTF-8?q?=20One=20(we=20will=20name=20him=20Timo)=20fixed=20the=20contex?= =?UTF-8?q?t=20switch.=20The=20second,=20with=20the=20help=20of=20a=20thir?= =?UTF-8?q?d=20dev=20(Pierre=20&=20Herv=C3=A9)=20decided=20to=20run=20test?= =?UTF-8?q?s=20by=20disabling=20some=20stuff=20(ie=20INIT=5FFUNCTION).=20T?= =?UTF-8?q?his=20magically=20made=20testbot=20going=20back=20to=20life.=20?= =?UTF-8?q?But,=20some=20complains=20came=20from=20the=20ML,=20so=20trying?= =?UTF-8?q?=20to=20appease=20world,=20Pierre=20decided=20to=20revert=20hal?= =?UTF-8?q?f=20of=20his=20changes,=20thinking=20this=20would=20be=20OK.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ~~ Now, after a night. It appears that half revert was a pretty bad idea. Testbot keeps being broken. So, this commit reverts r49665 (which was half reverting r49662). That way, testbot should be back, able to run tests. BUT, due to a NPFS issue, some tests are broken. Eric has been nicely mailed about that issue, with an idea of fix (thanks go here to Aleksey). ~~ For those who like that, drama to follow on ML. I turn into being S/M... svn path=/trunk/; revision=49691 --- reactos/ntoskrnl/include/internal/ntoskrnl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/include/internal/ntoskrnl.h b/reactos/ntoskrnl/include/internal/ntoskrnl.h index e4b8bd6b9ab..ceb4800423f 100644 --- a/reactos/ntoskrnl/include/internal/ntoskrnl.h +++ b/reactos/ntoskrnl/include/internal/ntoskrnl.h @@ -5,7 +5,7 @@ */ #define PLACE_IN_SECTION(s) __attribute__((section (s))) #ifdef __GNUC__ -#define INIT_FUNCTION PLACE_IN_SECTION("INIT") +#define INIT_FUNCTION #define PAGE_LOCKED_FUNCTION PLACE_IN_SECTION("pagelk") #define PAGE_UNLOCKED_FUNCTION PLACE_IN_SECTION("pagepo") #else