* [LTP] [PATCH]Fix building error.
@ 2010-12-15 6:15 Bian Naimeng
2010-12-21 6:20 ` Bian Naimeng
0 siblings, 1 reply; 12+ messages in thread
From: Bian Naimeng @ 2010-12-15 6:15 UTC (permalink / raw)
To: Garrett Cooper; +Cc: ltp-list
When i build the LTP at RHEL5.5GA, the following error was caught.
make[4]: Entering directory `/home/biannm/gitsrc/ltp-dev/testcases/kernel/syscalls/mmap'
gcc -g -O2 -g -O2 -fno-strict-aliasing -pipe -Wall -I/home/biannm/gitsrc/ltp-dev/testcases/kernel/include -I../../../../include -I../../../../include -L../../../../lib mmap10.c -lltp -lpthread -o mmap10
mmap10.c: In function ‘mmapzero’:
mmap10.c:120: error: ‘MADV_MERGEABLE’ undeclared (first use in this function)
mmap10.c:120: error: (Each undeclared identifier is reported only once
mmap10.c:120: error: for each function it appears in.)
make[4]: *** [mmap10] Error 1
So, what about this patch?
---------------------------------------------------------------------
KSM is unsupported before 2.6.32. So if MADV_MERGEABLE is undefine,
we should not test the following cases.
1. mmap10 with the option "-s".
2. ksm01.
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
---
testcases/kernel/mem/ksm/ksm01.c | 15 ++++++++++++---
testcases/kernel/syscalls/mmap/mmap10.c | 4 ++++
2 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/testcases/kernel/mem/ksm/ksm01.c b/testcases/kernel/mem/ksm/ksm01.c
index 1143791..9b575ff 100644
--- a/testcases/kernel/mem/ksm/ksm01.c
+++ b/testcases/kernel/mem/ksm/ksm01.c
@@ -70,12 +70,14 @@
#include "test.h"
#include "usctest.h"
-#define _PATH_KSM "/sys/kernel/mm/ksm/"
-#define MB (1024 * 1024)
-
char *TCID = "ksm01";
int TST_TOTAL = 1;
extern int Tst_count;
+
+#ifdef MADV_MERGEABLE
+
+#define _PATH_KSM "/sys/kernel/mm/ksm/"
+#define MB (1024 * 1024)
static int opt_num, opt_size;
static char *opt_numstr, *opt_sizestr;
/* memory pointer to identify per process, MB, and byte like
@@ -538,3 +540,10 @@ void group_check(int run, int pages_shared, int pages_sharing,
check("sleep_millisecs", NULL, sleep_millisecs);
check("pages_to_scan", NULL, pages_to_scan);
}
+
+#else
+int main(int argc, char *argv[])
+{
+ tst_brkm(TRETR, tst_exit, "KSM is unsupported");
+}
+#endif
diff --git a/testcases/kernel/syscalls/mmap/mmap10.c b/testcases/kernel/syscalls/mmap/mmap10.c
index fe9d622..be988cf 100644
--- a/testcases/kernel/syscalls/mmap/mmap10.c
+++ b/testcases/kernel/syscalls/mmap/mmap10.c
@@ -116,9 +116,13 @@ void mmapzero(void)
if (x == MAP_FAILED)
tst_brkm(TBROK|TERRNO, cleanup, "mmap");
if (opt_ksm) {
+#ifdef MADV_MERGEABLE
tst_resm(TINFO, "add to KSM regions.");
if (madvise(x, SIZE+SIZE-4096, MADV_MERGEABLE) == -1)
tst_brkm(TBROK|TERRNO, cleanup, "madvise");
+#else
+ tst_brkm(TRETR, cleanup, "KSM is unsupported.");
+#endif
}
x[SIZE] = 0;
--
1.7.0.4
--
Regards
Bian Naimeng
------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-15 6:15 [LTP] [PATCH]Fix building error Bian Naimeng
@ 2010-12-21 6:20 ` Bian Naimeng
2010-12-21 6:39 ` CAI Qian
0 siblings, 1 reply; 12+ messages in thread
From: Bian Naimeng @ 2010-12-21 6:20 UTC (permalink / raw)
To: Garrett Cooper; +Cc: ltp-list
Hi Garrett, Cai
What do you think about it? Any comments are welcome. ^_^
Regards
Bian
Bian Naimeng wrote:
> When i build the LTP at RHEL5.5GA, the following error was caught.
>
> make[4]: Entering directory `/home/biannm/gitsrc/ltp-dev/testcases/kernel/syscalls/mmap'
> gcc -g -O2 -g -O2 -fno-strict-aliasing -pipe -Wall -I/home/biannm/gitsrc/ltp-dev/testcases/kernel/include -I../../../../include -I../../../../include -L../../../../lib mmap10.c -lltp -lpthread -o mmap10
> mmap10.c: In function ‘mmapzero’:
> mmap10.c:120: error: ‘MADV_MERGEABLE’ undeclared (first use in this function)
> mmap10.c:120: error: (Each undeclared identifier is reported only once
> mmap10.c:120: error: for each function it appears in.)
> make[4]: *** [mmap10] Error 1
>
> So, what about this patch?
> ---------------------------------------------------------------------
>
> KSM is unsupported before 2.6.32. So if MADV_MERGEABLE is undefine,
> we should not test the following cases.
>
> 1. mmap10 with the option "-s".
> 2. ksm01.
>
> Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
>
> ---
> testcases/kernel/mem/ksm/ksm01.c | 15 ++++++++++++---
> testcases/kernel/syscalls/mmap/mmap10.c | 4 ++++
> 2 files changed, 16 insertions(+), 3 deletions(-)
>
> diff --git a/testcases/kernel/mem/ksm/ksm01.c b/testcases/kernel/mem/ksm/ksm01.c
> index 1143791..9b575ff 100644
> --- a/testcases/kernel/mem/ksm/ksm01.c
> +++ b/testcases/kernel/mem/ksm/ksm01.c
> @@ -70,12 +70,14 @@
> #include "test.h"
> #include "usctest.h"
>
> -#define _PATH_KSM "/sys/kernel/mm/ksm/"
> -#define MB (1024 * 1024)
> -
> char *TCID = "ksm01";
> int TST_TOTAL = 1;
> extern int Tst_count;
> +
> +#ifdef MADV_MERGEABLE
> +
> +#define _PATH_KSM "/sys/kernel/mm/ksm/"
> +#define MB (1024 * 1024)
> static int opt_num, opt_size;
> static char *opt_numstr, *opt_sizestr;
> /* memory pointer to identify per process, MB, and byte like
> @@ -538,3 +540,10 @@ void group_check(int run, int pages_shared, int pages_sharing,
> check("sleep_millisecs", NULL, sleep_millisecs);
> check("pages_to_scan", NULL, pages_to_scan);
> }
> +
> +#else
> +int main(int argc, char *argv[])
> +{
> + tst_brkm(TRETR, tst_exit, "KSM is unsupported");
> +}
> +#endif
> diff --git a/testcases/kernel/syscalls/mmap/mmap10.c b/testcases/kernel/syscalls/mmap/mmap10.c
> index fe9d622..be988cf 100644
> --- a/testcases/kernel/syscalls/mmap/mmap10.c
> +++ b/testcases/kernel/syscalls/mmap/mmap10.c
> @@ -116,9 +116,13 @@ void mmapzero(void)
> if (x == MAP_FAILED)
> tst_brkm(TBROK|TERRNO, cleanup, "mmap");
> if (opt_ksm) {
> +#ifdef MADV_MERGEABLE
> tst_resm(TINFO, "add to KSM regions.");
> if (madvise(x, SIZE+SIZE-4096, MADV_MERGEABLE) == -1)
> tst_brkm(TBROK|TERRNO, cleanup, "madvise");
> +#else
> + tst_brkm(TRETR, cleanup, "KSM is unsupported.");
> +#endif
> }
> x[SIZE] = 0;
>
--
Regards
Bian Naimeng
------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-21 6:20 ` Bian Naimeng
@ 2010-12-21 6:39 ` CAI Qian
2010-12-21 7:02 ` Bian Naimeng
0 siblings, 1 reply; 12+ messages in thread
From: CAI Qian @ 2010-12-21 6:39 UTC (permalink / raw)
To: Bian Naimeng; +Cc: ltp-list
Hi,
> What do you think about it? Any comments are welcome. ^_^
This test is not designed for older kernels like RHEL5.5. Even if fixed the compilation error, the test will not be working correctly due to old KSM interfaces and implementation there.
CAI Qian
------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-21 6:39 ` CAI Qian
@ 2010-12-21 7:02 ` Bian Naimeng
2010-12-21 7:11 ` CAI Qian
0 siblings, 1 reply; 12+ messages in thread
From: Bian Naimeng @ 2010-12-21 7:02 UTC (permalink / raw)
To: CAI Qian; +Cc: ltp-list
CAI Qian wrote:
> Hi,
>
>> What do you think about it? Any comments are welcome. ^_^
> This test is not designed for older kernels like RHEL5.5. Even if fixed the compilation error, the test will not be working correctly due to old KSM interfaces and implementation there.
>
Thanks for your reply.
Could you tell me which kernels are this test fit to?
If there is old KSM interface, and this test can not work correctly on it,
i think we should fix the test, it should not do anything but reports
"This test is unsupported!"
--
Regards
Bian Naimeng
> CAI Qian
>
>
------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-21 7:02 ` Bian Naimeng
@ 2010-12-21 7:11 ` CAI Qian
2010-12-21 7:31 ` Bian Naimeng
0 siblings, 1 reply; 12+ messages in thread
From: CAI Qian @ 2010-12-21 7:11 UTC (permalink / raw)
To: Bian Naimeng; +Cc: ltp-list
> Could you tell me which kernels are this test fit to?
It is hard to tell. The old kernel might decide to back-port this feature.
> If there is old KSM interface, and this test can not work correctly on
> it, i think we should fix the test, it should not do anything but reports
> "This test is unsupported!"
Anyway, it would be more code to test here and there rather than kernel version. Isn't LTP's guideline to only support the latest and greatest kernels?
CAI Qian
------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-21 7:11 ` CAI Qian
@ 2010-12-21 7:31 ` Bian Naimeng
2010-12-21 8:05 ` Garrett Cooper
0 siblings, 1 reply; 12+ messages in thread
From: Bian Naimeng @ 2010-12-21 7:31 UTC (permalink / raw)
To: CAI Qian; +Cc: ltp-list
CAI Qian wrote:
>> Could you tell me which kernels are this test fit to?
> It is hard to tell. The old kernel might decide to back-port this feature.
I see.
Would you like tell me what's the test required?
If the test is good, i think it should pass on old kernel which had back-port
this feature, otherwise the back-port procedure is incorrect.
>> If there is old KSM interface, and this test can not work correctly on
>> it, i think we should fix the test, it should not do anything but reports
>> "This test is unsupported!"
> Anyway, it would be more code to test here and there rather than kernel version. Isn't LTP's guideline to only support the latest and greatest kernels?
>
En..., i do not know. :)
Thanks
Bian
> CAI Qian
>
>
--
Regards
Bian Naimeng
------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-21 7:31 ` Bian Naimeng
@ 2010-12-21 8:05 ` Garrett Cooper
2010-12-23 6:45 ` Bian Naimeng
0 siblings, 1 reply; 12+ messages in thread
From: Garrett Cooper @ 2010-12-21 8:05 UTC (permalink / raw)
To: Bian Naimeng; +Cc: ltp-list
On Dec 20, 2010, at 11:31 PM, Bian Naimeng wrote:
> CAI Qian wrote:
>>> Could you tell me which kernels are this test fit to?
>> It is hard to tell. The old kernel might decide to back-port this feature.
>
> I see.
>
> Would you like tell me what's the test required?
>
> If the test is good, i think it should pass on old kernel which had back-port
> this feature, otherwise the back-port procedure is incorrect.
Yes, assuming features are tied to specific versions is a bad idea; a lot of code in LTP does this in an effort to be correct as to when it was first implemented, but it's wrong because there are various groups who may have backported support for distro or product specific reasons :)...
>>> If there is old KSM interface, and this test can not work correctly on
>>> it, i think we should fix the test, it should not do anything but reports
>>> "This test is unsupported!"
>> Anyway, it would be more code to test here and there rather than kernel version. Isn't LTP's guideline to only support the latest and greatest kernels?
I wish. It would make life a lot easier, but that isn't the way that things are today (esp the folks on here that are running ancient versions of Redhat... *cough*)... and given that trying to track Linux changes is like trying to forecast the weather, stuff is always changing -- for better or for worse -- which makes it a pain for everyone else sitting out on the sidelines, like LTP, because Linux kernel devs don't actively engage test projects.
There isn't really a line drawn in the sand as far as what is and isn't supported by LTP, except between 2.4 and 2.6 kernels, and even that is murky in spots.
Thanks,
-Garrett
------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-21 8:05 ` Garrett Cooper
@ 2010-12-23 6:45 ` Bian Naimeng
2010-12-23 7:02 ` CAI Qian
0 siblings, 1 reply; 12+ messages in thread
From: Bian Naimeng @ 2010-12-23 6:45 UTC (permalink / raw)
To: Garrett Cooper; +Cc: ltp-list
Garrett Cooper wrote:
> On Dec 20, 2010, at 11:31 PM, Bian Naimeng wrote:
>
>> CAI Qian wrote:
>>>> Could you tell me which kernels are this test fit to?
>>> It is hard to tell. The old kernel might decide to back-port this feature.
>> I see.
>>
>> Would you like tell me what's the test required?
>>
>> If the test is good, i think it should pass on old kernel which had back-port
>> this feature, otherwise the back-port procedure is incorrect.
>
> Yes, assuming features are tied to specific versions is a bad idea; a lot of code in LTP does this in an effort to be correct as to when it was first implemented, but it's wrong because there are various groups who may have backported support for distro or product specific reasons :)...
>
>>>> If there is old KSM interface, and this test can not work correctly on
>>>> it, i think we should fix the test, it should not do anything but reports
>>>> "This test is unsupported!"
>>> Anyway, it would be more code to test here and there rather than kernel version. Isn't LTP's guideline to only support the latest and greatest kernels?
>
> I wish. It would make life a lot easier, but that isn't the way that things are today (esp the folks on here that are running ancient versions of Redhat... *cough*)... and given that trying to track Linux changes is like trying to forecast the weather, stuff is always changing -- for better or for worse -- which makes it a pain for everyone else sitting out on the sidelines, like LTP, because Linux kernel devs don't actively engage test projects.
> There isn't really a line drawn in the sand as far as what is and isn't supported by LTP, except between 2.4 and 2.6 kernels, and even that is murky in spots.
Yes.
However, many people use the LTP to test their own linux system, if those kernel
is not support KSM, at least we should make sure they can build successfully.
Regards
Bian
> Thanks,
> -Garrett
>
--
Regards
Bian Naimeng
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and,
should the need arise, upgrade to a full multi-node Oracle RAC database
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-23 6:45 ` Bian Naimeng
@ 2010-12-23 7:02 ` CAI Qian
2010-12-23 7:13 ` Bian Naimeng
2010-12-23 19:25 ` Garrett Cooper
0 siblings, 2 replies; 12+ messages in thread
From: CAI Qian @ 2010-12-23 7:02 UTC (permalink / raw)
To: Bian Naimeng; +Cc: ltp-list
> However, many people use the LTP to test their own linux system, if those kernel
> is not support KSM, at least we should make sure they can build
> successfully.
In that case, why not use an older version?
CAI Qian
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and,
should the need arise, upgrade to a full multi-node Oracle RAC database
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-23 7:02 ` CAI Qian
@ 2010-12-23 7:13 ` Bian Naimeng
2010-12-23 19:25 ` Garrett Cooper
1 sibling, 0 replies; 12+ messages in thread
From: Bian Naimeng @ 2010-12-23 7:13 UTC (permalink / raw)
To: CAI Qian; +Cc: ltp-list
CAI Qian wrote:
>> However, many people use the LTP to test their own linux system, if those kernel
>> is not support KSM, at least we should make sure they can build
>> successfully.
> In that case, why not use an older version?
But how to choose the older version, it means which LTP is the better one? ^_^
And, maybe a new case is designed to test all versions of linux include the older one.
>
> CAI Qian
>
>
--
Regards
Bian Naimeng
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and,
should the need arise, upgrade to a full multi-node Oracle RAC database
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-23 7:02 ` CAI Qian
2010-12-23 7:13 ` Bian Naimeng
@ 2010-12-23 19:25 ` Garrett Cooper
2010-12-27 5:27 ` CAI Qian
1 sibling, 1 reply; 12+ messages in thread
From: Garrett Cooper @ 2010-12-23 19:25 UTC (permalink / raw)
To: CAI Qian; +Cc: ltp-list@lists.sourceforge.net
On Dec 22, 2010, at 11:02 PM, CAI Qian <caiqian@redhat.com> wrote:
>
>> However, many people use the LTP to test their own linux system, if those kernel
>> is not support KSM, at least we should make sure they can build
>> successfully.
> In that case, why not use an older version?
Implementing the fix is trivial. Please write some autoconf tests for KSM, et all.
-Garrett
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and,
should the need arise, upgrade to a full multi-node Oracle RAC database
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [LTP] [PATCH]Fix building error.
2010-12-23 19:25 ` Garrett Cooper
@ 2010-12-27 5:27 ` CAI Qian
0 siblings, 0 replies; 12+ messages in thread
From: CAI Qian @ 2010-12-27 5:27 UTC (permalink / raw)
To: Garrett Cooper; +Cc: ltp-list
----- Original Message -----
> On Dec 22, 2010, at 11:02 PM, CAI Qian <caiqian@redhat.com> wrote:
>
> >
> >> However, many people use the LTP to test their own linux system, if
> >> those kernel
> >> is not support KSM, at least we should make sure they can build
> >> successfully.
> > In that case, why not use an older version?
>
> Implementing the fix is trivial. Please write some autoconf tests for
> KSM, et all.
Garrett, yes, it is trivial. If we are going to fix here, there are many
other similar places need the fix too. It adds much headaches and code to
support old distros like RHEL5 and RHEL4. There are also so many distros
and custom kernels out there and there is no way to move anything forwards
to support those including embedded. For examples,
1) AC_PREREQ(2.61) in ltp/configure.ac: this won't support old distros anyway.
2) Even if the test has MADV_MERGEABLE defined, the kernel can still use
the old interfaces other than the new implementation, so the test will
definitely broke.
3) if the kernels are buggy, the test will fail as well. It is not scalable
to fix the test in this case.
4) there are many arches/kernel configuration out there which the new tests
are not going to compile on them all.
I think it is not a problem for me to fix the compilation here for RHEL5, but
we are still lack of supporting matrix for LTP which has been brought up many
times before without a consensus.
Here is something a proposal going forwards when submitting new tests:
1) compiling tests passed for the current 2.6.x oldest stable release (2.6.27.57)
2) compiling tests passed for tool-chains (autoconf, make etc) at least released
as old as the current 2.6.x stable kernel base release (2.6.27 was released in
Oct 2008; Autoconf 2.63 was released in Sep. 2008 so it should be supported).
3) the tests should give clearly indication of TPASS/TFAIL/TCONF for the current
2.6.x oldest stable kernel release.
CAI Qian
------------------------------------------------------------------------------
Learn how Oracle Real Application Clusters (RAC) One Node allows customers
to consolidate database storage, standardize their database environment, and,
should the need arise, upgrade to a full multi-node Oracle RAC database
without downtime or disruption
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2010-12-27 5:27 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-15 6:15 [LTP] [PATCH]Fix building error Bian Naimeng
2010-12-21 6:20 ` Bian Naimeng
2010-12-21 6:39 ` CAI Qian
2010-12-21 7:02 ` Bian Naimeng
2010-12-21 7:11 ` CAI Qian
2010-12-21 7:31 ` Bian Naimeng
2010-12-21 8:05 ` Garrett Cooper
2010-12-23 6:45 ` Bian Naimeng
2010-12-23 7:02 ` CAI Qian
2010-12-23 7:13 ` Bian Naimeng
2010-12-23 19:25 ` Garrett Cooper
2010-12-27 5:27 ` CAI Qian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox