All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 00/18] Collection of fixes
@ 2017-10-26 14:14 Punit Agrawal
  2017-10-26 14:14 ` [LTP] [PATCH 01/18] Move check_hugepage() helper to mem/lib Punit Agrawal
                   ` (17 more replies)
  0 siblings, 18 replies; 33+ messages in thread
From: Punit Agrawal @ 2017-10-26 14:14 UTC (permalink / raw)
  To: ltp

Hi,

This series collects fixes for issues encountered when running ltp on
internal test platforms. The fixes touch a variety of tests - I've
grouped patches touching related tests togther.

The patches fix issue with missing kernel feature detection, improper
synchronisation in certain scenarios, and executing on systems with
minimal userspace such as busybox.

Although the problems were encountered on internal platforms the
patches improve the robustness of the tests and are applicable in wide
ranging test scenarios.

Please consider merging them.

Thanks,
Punit

James Morse (2):
  hotplug/cpu_hotplug: Repopulate cgroup:cpusets after testing hotplug
  hotplug/cpu_hotplug: Remove bashism disown from kill_pid()

Lorenzo Pieralisi (1):
  hugeshmget02: add missing SHM_HUGETLB flag on segment creation

Mark Rutland (2):
  inotify: fix inotify.h breakage
  ioctl: fix stty usage for busybox

Punit Agrawal (1):
  Move check_hugepage() helper to mem/lib

Suzuki K. Poulose (5):
  hugeshmctl01: Fix synchronisation with child processes
  hugeshmctl01: Fix synchronization issue in parent process
  hugeshmctl02: Fix allocation size for odd number of hugepages
  getdtablesize01: Handle ENFILE errno
  perf_event_open: Handle absence of PMU gracefully

Will Deacon (7):
  thp: ensure THP/hugetlbfs is available
  vma03: accept ENOMEM return value from mremap
  creat08: ensure test directories are created in /tmp/
  kill05: fix race on getpwnam
  sigwaitinfo01: fix race between sending and dequeueing RT signals
  sigwaitinfo: catch SEGV and report success for bad_address2 testcase
  syscalls/mount03: Copy setuid_test to execute instead of 'TEST FILE'

 .../cpu_hotplug/include/cpuhotplug_hotplug.sh      | 36 ++++++++++++
 .../cpu_hotplug/include/cpuhotplug_testsuite.sh    |  1 -
 .../kernel/mem/hugetlb/hugeshmctl/hugeshmctl01.c   | 64 ++++++++--------------
 .../kernel/mem/hugetlb/hugeshmctl/hugeshmctl02.c   |  2 +-
 .../kernel/mem/hugetlb/hugeshmget/hugeshmget02.c   |  3 +-
 testcases/kernel/mem/hugetlb/lib/hugetlb.c         |  6 --
 testcases/kernel/mem/hugetlb/lib/hugetlb.h         |  1 -
 testcases/kernel/mem/include/mem.h                 |  2 +
 testcases/kernel/mem/lib/mem.c                     |  6 ++
 testcases/kernel/mem/thp/thp01.c                   |  3 +
 testcases/kernel/mem/thp/thp02.c                   |  2 +
 testcases/kernel/mem/thp/thp03.c                   |  2 +
 testcases/kernel/mem/vma/vma03.c                   |  2 +-
 testcases/kernel/syscalls/creat/creat08.c          |  4 +-
 .../syscalls/getdtablesize/getdtablesize01.c       | 17 +++---
 testcases/kernel/syscalls/inotify/inotify.h        |  8 +--
 testcases/kernel/syscalls/ioctl/test_ioctl         |  2 +-
 testcases/kernel/syscalls/kill/kill05.c            |  7 ++-
 testcases/kernel/syscalls/mount/mount03.c          |  4 +-
 .../syscalls/perf_event_open/perf_event_open01.c   |  3 +-
 .../syscalls/perf_event_open/perf_event_open02.c   |  4 +-
 .../kernel/syscalls/sigwaitinfo/sigwaitinfo01.c    | 36 +++++++++++-
 22 files changed, 141 insertions(+), 74 deletions(-)

-- 
2.14.2


^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2017-11-14 13:11 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-26 14:14 [LTP] [PATCH 00/18] Collection of fixes Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 01/18] Move check_hugepage() helper to mem/lib Punit Agrawal
2017-10-31 10:53   ` Cyril Hrubis
2017-10-31 12:45     ` Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 02/18] thp: ensure THP/hugetlbfs is available Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 03/18] hugeshmctl01: Fix synchronisation with child processes Punit Agrawal
2017-10-31 11:04   ` Cyril Hrubis
2017-10-26 14:14 ` [LTP] [PATCH 04/18] hugeshmctl01: Fix synchronization issue in parent process Punit Agrawal
2017-10-31 11:05   ` Cyril Hrubis
2017-10-26 14:14 ` [LTP] [PATCH 05/18] hugeshmctl02: Fix allocation size for odd number of hugepages Punit Agrawal
2017-10-31 11:05   ` Cyril Hrubis
2017-10-26 14:14 ` [LTP] [PATCH 06/18] hugeshmget02: add missing SHM_HUGETLB flag on segment creation Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 07/18] vma03: accept ENOMEM return value from mremap Punit Agrawal
2017-10-31 11:11   ` Cyril Hrubis
2017-11-14 13:10     ` Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 08/18] creat08: ensure test directories are created in /tmp/ Punit Agrawal
2017-10-31 11:07   ` Cyril Hrubis
2017-10-31 12:46     ` Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 09/18] kill05: fix race on getpwnam Punit Agrawal
2017-10-31 12:01   ` Cyril Hrubis
2017-11-14 13:11     ` Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 10/18] sigwaitinfo01: fix race between sending and dequeueing RT signals Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 11/18] sigwaitinfo: catch SEGV and report success for bad_address2 testcase Punit Agrawal
2017-10-31 12:12   ` Cyril Hrubis
2017-10-26 14:14 ` [LTP] [PATCH 12/18] inotify: fix inotify.h breakage Punit Agrawal
2017-10-31 11:16   ` Cyril Hrubis
2017-10-26 14:14 ` [LTP] [PATCH 13/18] syscalls/mount03: Copy setuid_test to execute instead of 'TEST FILE' Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 14/18] ioctl: fix stty usage for busybox Punit Agrawal
2017-10-31 12:36   ` Cyril Hrubis
2017-10-26 14:14 ` [LTP] [PATCH 15/18] getdtablesize01: Handle ENFILE errno Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 16/18] perf_event_open: Handle absence of PMU gracefully Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 17/18] hotplug/cpu_hotplug: Repopulate cgroup:cpusets after testing hotplug Punit Agrawal
2017-10-26 14:14 ` [LTP] [PATCH 18/18] hotplug/cpu_hotplug: Remove bashism disown from kill_pid() Punit Agrawal

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.