All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Stancek <jstancek@redhat.com>
To: Caspar Zhang <caspar@casparzhang.com>
Cc: LTP List <ltp-list@lists.sourceforge.net>
Subject: Re: [LTP] [PATCH resend 0/6] NUMA and follow-up fix
Date: Thu, 9 Aug 2012 06:15:46 -0400 (EDT)	[thread overview]
Message-ID: <1794806682.2410276.1344507346569.JavaMail.root@redhat.com> (raw)
In-Reply-To: <cover.1344492473.git.caspar@casparzhang.com>

Caspar,

thanks for putting it all together. I tested it on x86_64
with and without libnuma-devel. Applies cleanly, I didn't notice
anything broken while running modified testcases.

Patches 1,2,4,5 look good to me.
Patch 3 - I replied to this one already (no functional issue with this version)
Patch 6 - Only tested

Regards,
Jan

----- Original Message -----
> From: "Caspar Zhang" <caspar@casparzhang.com>
> To: "LTP List" <ltp-list@lists.sourceforge.net>
> Sent: Thursday, 9 August, 2012 8:15:36 AM
> Subject: [LTP] [PATCH resend 0/6] NUMA and follow-up fix
> 
> 
> 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
> 
> 
> 
> ------------------------------------------------------------------------------
> 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

  parent reply	other threads:[~2012-08-09 10:15 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-09  6:15 [LTP] [PATCH resend 0/6] NUMA and follow-up fix Caspar Zhang
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 ` Jan Stancek [this message]
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=1794806682.2410276.1344507346569.JavaMail.root@redhat.com \
    --to=jstancek@redhat.com \
    --cc=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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.