From: Yang Xu <xuyang2018.jy@cn.fujitsu.com>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH v3 0/5] optimize quotactl test code
Date: Fri, 15 Nov 2019 17:02:48 +0800 [thread overview]
Message-ID: <01929f2e-8a55-1f2e-cd23-3f47cd3877bc@cn.fujitsu.com> (raw)
In-Reply-To: <421bebaf-d8c0-380f-2a25-a2212058d476@cn.fujitsu.com>
Hi
Does anyone have some comments for this patch set?
> Hi All
> ping.
>> I cleanup the quotactl code and add project quota test for quotactl.
>> Thanks to Jan Kara with support about quota.
>>
>>
>> ------------
>> v2->v3:
>> 1.for quotactl02.c, add group quota test
>> 2.add quotactl04.c and add quota05.c to test project quota.
>> 3.add quotactl06.c to test error
>> 4. fix build erro on centos6
>> ps:don't test Q_XQUOTARM in quotactl02,04 because cycle running will
>> report ENOSYS (quota feture has been off). I will introduce a
>> new test to test it and also a regression test for commit[1].
>> [1]https://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git/commit/?h=for-next&id=3dd4d40b420846dd35869ccc8f8627feef2cff32
>> [2]https://travis-ci.org/xuyang0410/ltp/builds/605963472?utm_medium=notification&utm_source=github_status
>> ------------
>>
>> Yang Xu (5):
>> syscalls/quotactl01.c: Add Q_GETNEXQUOTA test
>> syscalls/quotactl02.c: Add Q_XGETQSTATV test
>> syscalls/quotactl04: add project quota test for non-xfs filesystem
>> syscalls/quotactl05: add project quota test for xfs filesystem
>> syscalls/quotactl06: Add new testcase
>>
>> configure.ac | 1 +
>> include/lapi/quotactl.h | 34 +--
>> m4/ltp-quota.m4 | 8 +
>> runtest/syscalls | 3 +
>> testcases/kernel/syscalls/quotactl/.gitignore | 4 +
>> .../kernel/syscalls/quotactl/quotactl01.c | 53 +++--
>> .../kernel/syscalls/quotactl/quotactl02.c | 193 +++++++-----------
>> .../kernel/syscalls/quotactl/quotactl02.h | 152 ++++++++++++++
>> .../kernel/syscalls/quotactl/quotactl04.c | 155 ++++++++++++++
>> .../kernel/syscalls/quotactl/quotactl05.c | 99 +++++++++
>> .../kernel/syscalls/quotactl/quotactl06.c | 183 +++++++++++++++++
>> 11 files changed, 745 insertions(+), 140 deletions(-)
>> create mode 100644 m4/ltp-quota.m4
>> create mode 100644 testcases/kernel/syscalls/quotactl/quotactl02.h
>> create mode 100644 testcases/kernel/syscalls/quotactl/quotactl04.c
>> create mode 100644 testcases/kernel/syscalls/quotactl/quotactl05.c
>> create mode 100644 testcases/kernel/syscalls/quotactl/quotactl06.c
>>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.linux.it/pipermail/ltp/attachments/20191115/7541d7ae/attachment.htm>
next prev parent reply other threads:[~2019-11-15 9:02 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-23 9:00 [LTP] [PATCH v2 0/6] optimize quotactl test code Yang Xu
2019-10-23 9:00 ` [LTP] [PATCH v2 1/6] syscalls/quotactl: Don't use ltp-quota.m4 Yang Xu
2019-10-31 14:02 ` Petr Vorel
2019-10-23 9:00 ` [LTP] [PATCH v2 2/6] m4/ltp-xfs_quota.m4: Remove useless ltp—xfs_quota.m4 Yang Xu
2019-10-31 15:26 ` Petr Vorel
2019-11-01 12:55 ` [LTP] [PATCH v3 0/5] optimize quotactl test code Yang Xu
2019-11-01 12:55 ` [LTP] [PATCH v3 1/5] syscalls/quotactl01.c: Add Q_GETNEXQUOTA test Yang Xu
2019-11-15 15:51 ` Petr Vorel
2019-11-18 6:42 ` Xu, Yang
2019-11-20 17:09 ` Petr Vorel
2019-11-21 3:59 ` Yang Xu
2019-11-15 16:48 ` Petr Vorel
2019-11-18 6:18 ` Xu, Yang
2019-11-18 6:24 ` Petr Vorel
2019-11-01 12:55 ` [LTP] [PATCH v3 2/5] syscalls/quotactl02.c: Add Q_XGETQSTATV test Yang Xu
2019-11-15 17:41 ` Petr Vorel
2019-11-18 7:59 ` Xu, Yang
2019-11-18 8:25 ` Petr Vorel
2019-11-01 12:55 ` [LTP] [PATCH v3 3/5] syscalls/quotactl04: add project quota test for non-xfs filesystem Yang Xu
2022-03-15 17:19 ` Petr Vorel
2022-03-16 2:00 ` xuyang2018.jy
2019-11-01 12:55 ` [LTP] [PATCH v3 4/5] syscalls/quotactl05: add project quota test for xfs filesystem Yang Xu
2019-11-01 12:55 ` [LTP] [PATCH v3 5/5] syscalls/quotactl06: Add new testcase Yang Xu
2019-11-12 8:05 ` [LTP] [PATCH v3 0/5] optimize quotactl test code Yang Xu
2019-11-15 9:02 ` Yang Xu [this message]
2019-11-15 9:25 ` Petr Vorel
2019-10-23 9:00 ` [LTP] [PATCH v2 3/6] syscalls/quotactl01.c: Add Q_GETNEXQUOTA test Yang Xu
2019-10-24 8:25 ` Jan Kara
2019-10-25 8:49 ` Yang Xu
2019-10-31 14:10 ` Petr Vorel
2019-10-31 14:31 ` Petr Vorel
2019-11-01 12:44 ` Yang Xu
2019-10-23 9:00 ` [LTP] [PATCH v2 4/6] syscalls/quotactl02.c: Add Q_XGETQSTATV and Q_XQUOTARM test Yang Xu
2019-10-23 9:00 ` [LTP] [PATCH v2 5/6] syscalls/quotactl04: add project quota test for non-xfs filesystem Yang Xu
2019-10-24 8:14 ` Jan Kara
2019-10-24 9:55 ` Yang Xu
2019-10-23 9:00 ` [LTP] [PATCH v2 6/6] syscalls/quotactl05: add project quota test for xfs filesystem Yang Xu
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=01929f2e-8a55-1f2e-cd23-3f47cd3877bc@cn.fujitsu.com \
--to=xuyang2018.jy@cn.fujitsu.com \
--cc=ltp@lists.linux.it \
/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