All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tarun Sahu <tsahu@linux.ibm.com>
To: ltp@lists.linux.it
Cc: geetika@linux.ibm.com, sbhat@linux.ibm.com,
	aneesh.kumar@linux.ibm.com, vaibhav@linux.ibm.com,
	rpalethorpe@suse.com
Subject: [LTP] [PATCH v2 0/13][PART 4] Hugetlb:Migrating the libhugetlbfs tests
Date: Wed,  4 Jan 2023 17:52:11 +0530	[thread overview]
Message-ID: <20230104122224.369467-1-tsahu@linux.ibm.com> (raw)

Hi,
This patch series is in continuation to part [1], part [2] and part [3].
This series include 13 more tests taken from libhugetlbfs.

Background:
Libhugetlbfs is not being maintained actively, and some distro is dropping
support for it. There are some tests that are good for testing hugetlb
functionality in kernel. These patches include tests from libhugetlbfs.

ref:
 1. https://lore.kernel.org/all/20221104162511.28658-1-tsahu@linux.ibm.com/
 2. https://lore.kernel.org/all/20221120191533.164848-1-tsahu@linux.ibm.com/
 3. https://lore.kernel.org/all/20221220063109.279007-1-tsahu@linux.ibm.com/

Tarun Sahu (13):
  Hugetlb: Migrating libhugetlbfs mlock
  Hugetlb: Migrating libhugetlbfs mmap-cow
  Hugetlb: Migrating libhugetlbfs mmap-gettest
  Hugetlb: Migrating libhugetlbfs mprotect
  Hugetlb: Migrating libhugetlbfs mremap-fixed-huge-near-normal
  Hugetlb: Migrating libhugetlbfs mremap-fixed-normal-near-huge
  Hugetlb: Migrating libhugetlbfs noresv-reserve-resv-page
  Hugetlb: Migrating libhugetlbfs noresv-regarded-as-resv
  Hugetlb: Migrating libhugetlbfs private
  Hugetlb: Migrating libhugetlbfs readahead_reserve
  Hugetlb: Migrating libhugetlbfs shared
  Hugetlb: Migrating libhugetlbfs shm-fork
  Hugetlb: Migrating libhugetlbfs mremap-expand-slice-collision

 runtest/hugetlb                               |  13 +
 testcases/kernel/mem/.gitignore               |  13 +
 .../kernel/mem/hugetlb/hugefork/hugefork02.c  |  90 +++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap20.c  |  86 +++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap21.c  | 116 +++++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap22.c  |  89 +++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap23.c  | 226 ++++++++++++++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap24.c  | 186 ++++++++++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap25.c  | 118 +++++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap26.c  | 103 ++++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap27.c  | 121 ++++++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap28.c  |  66 +++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap29.c  | 107 +++++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap30.c  |  75 ++++++
 .../kernel/mem/hugetlb/hugemmap/hugemmap31.c  |  76 ++++++
 testcases/kernel/mem/hugetlb/lib/hugetlb.c    |  19 ++
 testcases/kernel/mem/hugetlb/lib/hugetlb.h    |  11 +-
 17 files changed, 1514 insertions(+), 1 deletion(-)
 create mode 100644 testcases/kernel/mem/hugetlb/hugefork/hugefork02.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap20.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap21.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap22.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap23.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap24.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap25.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap26.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap27.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap28.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap29.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap30.c
 create mode 100644 testcases/kernel/mem/hugetlb/hugemmap/hugemmap31.c

-- 
2.31.1


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

             reply	other threads:[~2023-01-04 12:22 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-04 12:22 Tarun Sahu [this message]
2023-01-04 12:22 ` [LTP] [PATCH v2 01/13] Hugetlb: Migrating libhugetlbfs mlock Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 02/13] Hugetlb: Migrating libhugetlbfs mmap-cow Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 03/13] Hugetlb: Migrating libhugetlbfs mmap-gettest Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 04/13] Hugetlb: Migrating libhugetlbfs mprotect Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 05/13] Hugetlb: Migrating libhugetlbfs mremap-fixed-huge-near-normal Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 06/13] Hugetlb: Migrating libhugetlbfs mremap-fixed-normal-near-huge Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 07/13] Hugetlb: Migrating libhugetlbfs noresv-reserve-resv-page Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 08/13] Hugetlb: Migrating libhugetlbfs noresv-regarded-as-resv Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 09/13] Hugetlb: Migrating libhugetlbfs private Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 10/13] Hugetlb: Migrating libhugetlbfs readahead_reserve Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 11/13] Hugetlb: Migrating libhugetlbfs shared Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 12/13] Hugetlb: Migrating libhugetlbfs shm-fork Tarun Sahu
2023-01-04 12:22 ` [LTP] [PATCH v2 13/13] Hugetlb: Migrating libhugetlbfs mremap-expand-slice-collision Tarun Sahu
2023-01-06  5:20 ` [LTP] [PATCH v2 0/13][PART 4] Hugetlb:Migrating the libhugetlbfs tests Li Wang

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=20230104122224.369467-1-tsahu@linux.ibm.com \
    --to=tsahu@linux.ibm.com \
    --cc=aneesh.kumar@linux.ibm.com \
    --cc=geetika@linux.ibm.com \
    --cc=ltp@lists.linux.it \
    --cc=rpalethorpe@suse.com \
    --cc=sbhat@linux.ibm.com \
    --cc=vaibhav@linux.ibm.com \
    /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.