* [LTP] [PATCH v2] move_pages09: move_pages returns 0 if nothing got migrated
@ 2012-05-09 11:51 Jan Stancek
2012-05-09 12:18 ` Caspar Zhang
2012-05-09 12:41 ` Wanlong Gao
0 siblings, 2 replies; 3+ messages in thread
From: Jan Stancek @ 2012-05-09 11:51 UTC (permalink / raw)
To: ltp-list; +Cc: Jeffrey Burke
[-- Attachment #1: Type: text/plain, Size: 558 bytes --]
Following commit changed the behavior to return 0 when no pages
require migration.
commit e78bbfa8262424417a29349a8064a535053912b9
Author: Brice Goglin <Brice.Goglin@inria.fr>
Date: Sat Oct 18 20:27:15 2008 -0700
mm: stop returning -ENOENT from sys_move_pages() if nothing got
migrated
So testing for ENOENT in move_pages09, makes sense only for
kernel < 2.6.28.
Signed-off-by: Jan Stancek <jstancek@redhat.com>
---
.../kernel/syscalls/move_pages/move_pages09.c | 27 ++++++++++++++-----
1 files changed, 20 insertions(+), 7 deletions(-)
[-- Attachment #2: 0002-move_pages09-move_pages-returns-0-if-nothing-got-mig.patch --]
[-- Type: text/x-patch, Size: 1348 bytes --]
diff --git a/testcases/kernel/syscalls/move_pages/move_pages09.c b/testcases/kernel/syscalls/move_pages/move_pages09.c
index 4cedb6a..85e3547 100644
--- a/testcases/kernel/syscalls/move_pages/move_pages09.c
+++ b/testcases/kernel/syscalls/move_pages/move_pages09.c
@@ -105,12 +105,25 @@ int main(int argc, char **argv)
ret = numa_move_pages(0, TEST_PAGES, pages, nodes,
status, MPOL_MF_MOVE);
TEST_ERRNO = errno;
- if (ret == -1 && errno == ENOENT)
- tst_resm(TPASS, "move_pages failed with "
- "ENOENT as expected");
- else
- tst_resm(TFAIL, "move pages did not fail "
- "with ENOENT");
+
+ /*
+ * commit e78bbfa8262424417a29349a8064a535053912b9
+ * Author: Brice Goglin <Brice.Goglin@inria.fr>
+ * Date: Sat Oct 18 20:27:15 2008 -0700
+ * mm: stop returning -ENOENT from sys_move_pages() if nothing got migrated
+ */
+ if ((tst_kvercmp(2, 6, 28)) >= 0) {
+ if (ret == 0)
+ tst_resm(TPASS, "move_pages succeeded");
+ else
+ tst_resm(TFAIL|TERRNO, "move_pages");
+ } else {
+ if (ret == -1 && errno == ENOENT)
+ tst_resm(TPASS, "move_pages failed with "
+ "ENOENT as expected");
+ else
+ tst_resm(TFAIL|TERRNO, "move_pages");
+ }
free_pages(pages, TEST_PAGES);
}
@@ -150,4 +163,4 @@ void cleanup(void)
*/
TEST_CLEANUP;
- }
\ No newline at end of file
+ }
[-- Attachment #3: Type: text/plain, Size: 395 bytes --]
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
[-- Attachment #4: Type: text/plain, Size: 155 bytes --]
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [LTP] [PATCH v2] move_pages09: move_pages returns 0 if nothing got migrated
2012-05-09 11:51 [LTP] [PATCH v2] move_pages09: move_pages returns 0 if nothing got migrated Jan Stancek
@ 2012-05-09 12:18 ` Caspar Zhang
2012-05-09 12:41 ` Wanlong Gao
1 sibling, 0 replies; 3+ messages in thread
From: Caspar Zhang @ 2012-05-09 12:18 UTC (permalink / raw)
To: Jan Stancek; +Cc: ltp-list, Jeffrey Burke
On 05/09/2012 07:51 PM, Jan Stancek wrote:
>
> Following commit changed the behavior to return 0 when no pages
> require migration.
>
> commit e78bbfa8262424417a29349a8064a535053912b9
> Author: Brice Goglin <Brice.Goglin@inria.fr>
> Date: Sat Oct 18 20:27:15 2008 -0700
> mm: stop returning -ENOENT from sys_move_pages() if nothing got
> migrated
>
> So testing for ENOENT in move_pages09, makes sense only for
> kernel < 2.6.28.
>
> Signed-off-by: Jan Stancek <jstancek@redhat.com>
> ---
Acked-by: Caspar Zhang <caspar@casparzhang.com>
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [LTP] [PATCH v2] move_pages09: move_pages returns 0 if nothing got migrated
2012-05-09 11:51 [LTP] [PATCH v2] move_pages09: move_pages returns 0 if nothing got migrated Jan Stancek
2012-05-09 12:18 ` Caspar Zhang
@ 2012-05-09 12:41 ` Wanlong Gao
1 sibling, 0 replies; 3+ messages in thread
From: Wanlong Gao @ 2012-05-09 12:41 UTC (permalink / raw)
To: Jan Stancek; +Cc: ltp-list, Jeffrey Burke
On 05/09/2012 07:51 PM, Jan Stancek wrote:
>
> Following commit changed the behavior to return 0 when no pages
> require migration.
>
> commit e78bbfa8262424417a29349a8064a535053912b9
> Author: Brice Goglin <Brice.Goglin@inria.fr>
> Date: Sat Oct 18 20:27:15 2008 -0700
> mm: stop returning -ENOENT from sys_move_pages() if nothing got
> migrated
>
> So testing for ENOENT in move_pages09, makes sense only for
> kernel < 2.6.28.
pushed, thanks all,
Wanlong Gao
>
> Signed-off-by: Jan Stancek <jstancek@redhat.com>
> ---
> .../kernel/syscalls/move_pages/move_pages09.c | 27 ++++++++++++++-----
> 1 files changed, 20 insertions(+), 7 deletions(-)
>
>
>
>
>
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
>
>
>
> _______________________________________________
> Ltp-list mailing list
> Ltp-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ltp-list
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-05-09 12:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-09 11:51 [LTP] [PATCH v2] move_pages09: move_pages returns 0 if nothing got migrated Jan Stancek
2012-05-09 12:18 ` Caspar Zhang
2012-05-09 12:41 ` Wanlong Gao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox