public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
From: Caspar Zhang <caspar@casparzhang.com>
To: LTP List <ltp-list@lists.sourceforge.net>
Subject: [LTP] [PATCH resend 0/6] NUMA and follow-up fix
Date: Thu,  9 Aug 2012 14:15:36 +0800	[thread overview]
Message-ID: <cover.1344492473.git.caspar@casparzhang.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 4227 bytes --]


Resending the whole patch series (including Jan's 2 patches) for easier 
reviewing.

updates:
   syscalls/numa: check syscall availability
     remove TEST() macro and use syscall() directly.
   numa_helper: move to libkerntest
     merged the library cleaning fix to this one.
   mm: use new numa_helper
     the same as previous V3 version, which already has Jan's reivew.

Caspar Zhang (4):
  syscalls/numa: check syscall availability
  numa_helper: move to libkerntest
  mm: use new numa_helper
  mm: add common Makefile include: libmem.mk

Jan Stancek (2):
  numa_helper: add flag to get_allowed_nodes()
  update testcases to use flag for get_allowed_nodes()

 testcases/kernel/Makefile                          |    4 +
 testcases/kernel/include/lib.mk                    |   37 +++
 testcases/kernel/include/numa_helper.h             |   37 +++
 testcases/kernel/lib/Makefile                      |   29 +++
 testcases/kernel/lib/numa_helper.c                 |  266 ++++++++++++++++++++
 testcases/kernel/mem/cpuset/Makefile               |   22 +--
 testcases/kernel/mem/cpuset/cpuset01.c             |   16 +-
 testcases/kernel/mem/hugetlb/Makefile.inc          |   18 +-
 testcases/kernel/mem/hugetlb/hugemmap/Makefile     |   12 +-
 testcases/kernel/mem/include/libmem.mk             |   40 +++
 testcases/kernel/mem/include/mem.h                 |    2 +-
 testcases/kernel/mem/ksm/Makefile                  |   22 +--
 testcases/kernel/mem/ksm/ksm02.c                   |    9 +-
 testcases/kernel/mem/ksm/ksm04.c                   |    9 +-
 testcases/kernel/mem/lib/Makefile                  |    1 +
 testcases/kernel/mem/lib/mem.c                     |   50 +++--
 testcases/kernel/mem/oom/Makefile                  |   22 +--
 testcases/kernel/mem/oom/oom02.c                   |    4 -
 testcases/kernel/mem/oom/oom04.c                   |    4 -
 testcases/kernel/mem/swapping/Makefile             |   22 +--
 testcases/kernel/mem/thp/Makefile                  |   22 +--
 testcases/kernel/mem/tunable/Makefile              |   22 +--
 testcases/kernel/mem/vma/Makefile                  |    4 +-
 testcases/kernel/mem/vma/vma02.c                   |   19 +-
 testcases/kernel/mem/vma/vma04.c                   |   11 +-
 testcases/kernel/syscalls/get_mempolicy/Makefile   |    2 +-
 .../syscalls/get_mempolicy/get_mempolicy01.c       |   15 +-
 testcases/kernel/syscalls/mbind/Makefile           |    2 +-
 testcases/kernel/syscalls/mbind/mbind01.c          |   14 +-
 testcases/kernel/syscalls/move_pages/Makefile      |    2 +-
 .../kernel/syscalls/move_pages/move_pages02.c      |    5 +-
 .../kernel/syscalls/move_pages/move_pages03.c      |    5 +-
 .../kernel/syscalls/move_pages/move_pages04.c      |    5 +-
 .../kernel/syscalls/move_pages/move_pages05.c      |    5 +-
 .../kernel/syscalls/move_pages/move_pages06.c      |    5 +-
 .../kernel/syscalls/move_pages/move_pages07.c      |    5 +-
 .../kernel/syscalls/move_pages/move_pages08.c      |    5 +-
 .../kernel/syscalls/move_pages/move_pages09.c      |    5 +-
 .../kernel/syscalls/move_pages/move_pages10.c      |    5 +-
 .../kernel/syscalls/move_pages/move_pages11.c      |    5 +-
 .../syscalls/move_pages/move_pages_support.c       |    8 +-
 testcases/kernel/syscalls/numa/Makefile            |   22 --
 testcases/kernel/syscalls/numa/Makefile.inc        |   27 --
 testcases/kernel/syscalls/numa/lib/Makefile        |   26 --
 testcases/kernel/syscalls/numa/lib/numa_helper.c   |  165 ------------
 testcases/kernel/syscalls/numa/lib/numa_helper.h   |   33 ---
 46 files changed, 562 insertions(+), 508 deletions(-)
 create mode 100644 testcases/kernel/include/lib.mk
 create mode 100644 testcases/kernel/include/numa_helper.h
 create mode 100644 testcases/kernel/lib/Makefile
 create mode 100644 testcases/kernel/lib/numa_helper.c
 create mode 100644 testcases/kernel/mem/include/libmem.mk
 delete mode 100644 testcases/kernel/syscalls/numa/Makefile
 delete mode 100644 testcases/kernel/syscalls/numa/Makefile.inc
 delete mode 100644 testcases/kernel/syscalls/numa/lib/Makefile
 delete mode 100644 testcases/kernel/syscalls/numa/lib/numa_helper.c
 delete mode 100644 testcases/kernel/syscalls/numa/lib/numa_helper.h

-- 
1.7.8.6



[-- Attachment #2: 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 #3: Type: text/plain, Size: 155 bytes --]

_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

             reply	other threads:[~2012-08-09  6:16 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-09  6:15 Caspar Zhang [this message]
2012-08-09  6:15 ` [LTP] [PATCH resend 1/6] numa_helper: add flag to get_allowed_nodes() Caspar Zhang
2012-08-10  7:43   ` Zhouping Liu
2012-08-09  6:15 ` [LTP] [PATCH resend 2/6] update testcases to use flag for get_allowed_nodes() Caspar Zhang
2012-08-10  7:45   ` Zhouping Liu
2012-08-09  6:15 ` [LTP] [PATCH resend 3/6] syscalls/numa: check syscall availability Caspar Zhang
2012-08-09  9:22   ` Jan Stancek
2012-08-09 10:35     ` Caspar Zhang
2012-08-10  7:46   ` Zhouping Liu
2012-08-10  7:54     ` Wanlong Gao
2012-08-10  8:13       ` Zhouping Liu
2012-08-09  6:15 ` [LTP] [PATCH resend 4/6] numa_helper: move to libkerntest Caspar Zhang
2012-08-10  3:26   ` [LTP] [PATCH resend 4/6 v2] " Caspar Zhang
2012-08-10  7:51     ` Zhouping Liu
2012-08-09  6:15 ` [LTP] [PATCH resend 5/6] mm: use new numa_helper Caspar Zhang
2012-08-10  8:02   ` Zhouping Liu
2012-08-10  8:22     ` Caspar Zhang
2012-08-10  8:24     ` Jan Stancek
2012-08-10  9:54       ` Zhouping Liu
2012-08-09  6:15 ` [LTP] [PATCH resend 6/6] mm: add common Makefile include: libmem.mk Caspar Zhang
2012-08-09 10:15 ` [LTP] [PATCH resend 0/6] NUMA and follow-up fix Jan Stancek
2012-08-09 10:31 ` [LTP] [PATCH resend v2 3/6] syscalls/numa: check syscall availability Caspar Zhang
2012-08-10  8:10   ` Zhouping Liu
2012-08-10  3:12 ` [LTP] [PATCH resend 0/6] NUMA and follow-up fix Zhouping Liu
2012-08-10  3:28   ` Caspar Zhang
2012-08-10  3:57     ` Zhouping Liu
2012-08-10  9:22 ` Wanlong Gao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1344492473.git.caspar@casparzhang.com \
    --to=caspar@casparzhang.com \
    --cc=ltp-list@lists.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox