* [LTP] [PATCH 0/3] ioprio minor cleanup
@ 2023-06-20 12:01 Petr Vorel
2023-06-20 12:01 ` [LTP] [PATCH 1/3] ioprio: Move fallback constants and structs to LAPI header Petr Vorel
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Petr Vorel @ 2023-06-20 12:01 UTC (permalink / raw)
To: ltp; +Cc: Niklas Cassel
Further minor ioprio cleanup. NOTE, docparse markers /*\ [Description]
in the second commit allow test to be included in our automatically
generated documentation [1].
Kind regards,
Petr
[1] https://github.com/linux-test-project/ltp/releases/download/20230516/metadata.20230516.html
Petr Vorel (3):
ioprio: Move fallback constants and structs to LAPI header
ioprio: Add docparse markers
utils: Remove unused ioprio.h
include/lapi/ioprio.h | 47 +++++++++++++++++++
testcases/kernel/syscalls/ioprio/ioprio.h | 42 ++---------------
.../kernel/syscalls/ioprio/ioprio_get01.c | 9 ++--
.../kernel/syscalls/ioprio/ioprio_set01.c | 9 ++--
.../kernel/syscalls/ioprio/ioprio_set02.c | 9 ++--
.../kernel/syscalls/ioprio/ioprio_set03.c | 9 ++--
testcases/kernel/syscalls/utils/ioprio.h | 46 ------------------
7 files changed, 71 insertions(+), 100 deletions(-)
create mode 100644 include/lapi/ioprio.h
delete mode 100644 testcases/kernel/syscalls/utils/ioprio.h
--
2.40.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 9+ messages in thread
* [LTP] [PATCH 1/3] ioprio: Move fallback constants and structs to LAPI header
2023-06-20 12:01 [LTP] [PATCH 0/3] ioprio minor cleanup Petr Vorel
@ 2023-06-20 12:01 ` Petr Vorel
2023-06-20 12:31 ` Niklas Cassel via ltp
2023-06-20 12:01 ` [LTP] [PATCH 2/3] ioprio: Add docparse markers Petr Vorel
` (2 subsequent siblings)
3 siblings, 1 reply; 9+ messages in thread
From: Petr Vorel @ 2023-06-20 12:01 UTC (permalink / raw)
To: ltp; +Cc: Niklas Cassel
Originally lapi headers were only for common headers, for fallback
constants and structs usable only in test for particular subsystem,
we mix them together with other helper functions in header placed in the
test directory. But later we started to move to lapi also these
fallbacks (e.g. fanotify.h in a05dbc4fa).
+ Remove unused headers in the tests.
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
include/lapi/ioprio.h | 47 +++++++++++++++++++
testcases/kernel/syscalls/ioprio/ioprio.h | 42 ++---------------
.../kernel/syscalls/ioprio/ioprio_get01.c | 3 --
.../kernel/syscalls/ioprio/ioprio_set01.c | 3 --
.../kernel/syscalls/ioprio/ioprio_set02.c | 3 --
.../kernel/syscalls/ioprio/ioprio_set03.c | 3 --
6 files changed, 51 insertions(+), 50 deletions(-)
create mode 100644 include/lapi/ioprio.h
diff --git a/include/lapi/ioprio.h b/include/lapi/ioprio.h
new file mode 100644
index 000000000..871aa0278
--- /dev/null
+++ b/include/lapi/ioprio.h
@@ -0,0 +1,47 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/*
+ * Copyright (c) 2019 Linus Walleij <linus.walleij@linaro.org>
+ */
+
+#ifndef LAPI_IOPRIO_H__
+#define LAPI_IOPRIO_H__
+
+#include "config.h"
+
+#ifdef HAVE_LINUX_IOPRIO_H
+# include <linux/ioprio.h>
+#else
+
+enum {
+ IOPRIO_CLASS_NONE = 0,
+ IOPRIO_CLASS_RT,
+ IOPRIO_CLASS_BE,
+ IOPRIO_CLASS_IDLE,
+};
+
+enum {
+ IOPRIO_WHO_PROCESS = 1,
+ IOPRIO_WHO_PGRP,
+ IOPRIO_WHO_USER,
+};
+
+# define IOPRIO_CLASS_SHIFT (13)
+# define IOPRIO_PRIO_MASK ((1UL << IOPRIO_CLASS_SHIFT) - 1)
+
+# define IOPRIO_PRIO_CLASS(data) ((data) >> IOPRIO_CLASS_SHIFT)
+# define IOPRIO_PRIO_VALUE(class, data) (((class) << IOPRIO_CLASS_SHIFT) | data)
+
+#endif
+
+/* The RT and BE I/O priority classes have 8 priority levels 0..7 */
+#ifdef IOPRIO_NR_LEVELS
+# define IOPRIO_PRIO_NUM IOPRIO_NR_LEVELS
+#else
+# define IOPRIO_PRIO_NUM 8
+#endif
+
+#ifndef IOPRIO_PRIO_LEVEL
+# define IOPRIO_PRIO_LEVEL(data) ((data) & IOPRIO_PRIO_MASK)
+#endif
+
+#endif /* LAPI_IOPRIO_H__ */
diff --git a/testcases/kernel/syscalls/ioprio/ioprio.h b/testcases/kernel/syscalls/ioprio/ioprio.h
index 4d4828807..dbe27c15f 100644
--- a/testcases/kernel/syscalls/ioprio/ioprio.h
+++ b/testcases/kernel/syscalls/ioprio/ioprio.h
@@ -1,48 +1,14 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (c) 2019 Linus Walleij <linus.walleij@linaro.org>
+ * Copyright (c) 2023 Linux Test Project
*/
#ifndef LTP_IOPRIO_H
#define LTP_IOPRIO_H
-#include "config.h"
-
-#ifdef HAVE_LINUX_IOPRIO_H
-# include <linux/ioprio.h>
-#else
-
-enum {
- IOPRIO_CLASS_NONE = 0,
- IOPRIO_CLASS_RT,
- IOPRIO_CLASS_BE,
- IOPRIO_CLASS_IDLE,
-};
-
-enum {
- IOPRIO_WHO_PROCESS = 1,
- IOPRIO_WHO_PGRP,
- IOPRIO_WHO_USER,
-};
-
-# define IOPRIO_CLASS_SHIFT (13)
-# define IOPRIO_PRIO_MASK ((1UL << IOPRIO_CLASS_SHIFT) - 1)
-
-# define IOPRIO_PRIO_CLASS(data) ((data) >> IOPRIO_CLASS_SHIFT)
-# define IOPRIO_PRIO_VALUE(class, data) (((class) << IOPRIO_CLASS_SHIFT) | data)
-
-#endif
-
-/* The RT and BE I/O priority classes have 8 priority levels 0..7 */
-#ifdef IOPRIO_NR_LEVELS
-# define IOPRIO_PRIO_NUM IOPRIO_NR_LEVELS
-#else
-# define IOPRIO_PRIO_NUM 8
-#endif
-
-#ifndef IOPRIO_PRIO_LEVEL
-# define IOPRIO_PRIO_LEVEL(data) ((data) & IOPRIO_PRIO_MASK)
-#endif
+#include "lapi/ioprio.h"
+#include "lapi/syscalls.h"
static const char * const to_class_str[] = {
[IOPRIO_CLASS_NONE] = "NONE",
@@ -106,4 +72,4 @@ static inline void ioprio_check_setting(int class, int prio, int report)
newprio);
}
-#endif
+#endif /* LTP_IOPRIO_H */
diff --git a/testcases/kernel/syscalls/ioprio/ioprio_get01.c b/testcases/kernel/syscalls/ioprio/ioprio_get01.c
index 6e822434e..ceac5a758 100644
--- a/testcases/kernel/syscalls/ioprio/ioprio_get01.c
+++ b/testcases/kernel/syscalls/ioprio/ioprio_get01.c
@@ -6,11 +6,8 @@
* Basic ioprio_get() test. Gets the current process I/O priority and
* checks that the values are sane.
*/
-#include <sys/types.h>
-#include <sys/syscall.h>
#include "tst_test.h"
-#include "lapi/syscalls.h"
#include "ioprio.h"
static void run(void)
diff --git a/testcases/kernel/syscalls/ioprio/ioprio_set01.c b/testcases/kernel/syscalls/ioprio/ioprio_set01.c
index 19953ba36..243337bd2 100644
--- a/testcases/kernel/syscalls/ioprio/ioprio_set01.c
+++ b/testcases/kernel/syscalls/ioprio/ioprio_set01.c
@@ -7,11 +7,8 @@
* bumps it up one notch, then down two notches and checks that the
* new priority is reported back correctly.
*/
-#include <sys/types.h>
-#include <sys/syscall.h>
#include "tst_test.h"
-#include "lapi/syscalls.h"
#include "ioprio.h"
static int orig_class;
diff --git a/testcases/kernel/syscalls/ioprio/ioprio_set02.c b/testcases/kernel/syscalls/ioprio/ioprio_set02.c
index 328a130cb..0faf03767 100644
--- a/testcases/kernel/syscalls/ioprio/ioprio_set02.c
+++ b/testcases/kernel/syscalls/ioprio/ioprio_set02.c
@@ -7,11 +7,8 @@
* Tests to set all 8 priority levels for best effort priority, then
* switches to test all 8 priority levels for idle priority.
*/
-#include <sys/types.h>
-#include <sys/syscall.h>
#include "tst_test.h"
-#include "lapi/syscalls.h"
#include "ioprio.h"
static void run(void)
diff --git a/testcases/kernel/syscalls/ioprio/ioprio_set03.c b/testcases/kernel/syscalls/ioprio/ioprio_set03.c
index d6b44df85..b67887205 100644
--- a/testcases/kernel/syscalls/ioprio/ioprio_set03.c
+++ b/testcases/kernel/syscalls/ioprio/ioprio_set03.c
@@ -6,11 +6,8 @@
* Negative ioprio_set() test. Test some non-working priorities to make
* sure they don't work.
*/
-#include <sys/types.h>
-#include <sys/syscall.h>
#include "tst_test.h"
-#include "lapi/syscalls.h"
#include "ioprio.h"
static void run(void)
--
2.40.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [LTP] [PATCH 2/3] ioprio: Add docparse markers
2023-06-20 12:01 [LTP] [PATCH 0/3] ioprio minor cleanup Petr Vorel
2023-06-20 12:01 ` [LTP] [PATCH 1/3] ioprio: Move fallback constants and structs to LAPI header Petr Vorel
@ 2023-06-20 12:01 ` Petr Vorel
2023-06-20 12:31 ` Niklas Cassel via ltp
2023-06-20 12:01 ` [LTP] [PATCH 3/3] utils: Remove unused ioprio.h Petr Vorel
2023-06-20 12:59 ` [LTP] [PATCH 0/3] ioprio minor cleanup Damien Le Moal
3 siblings, 1 reply; 9+ messages in thread
From: Petr Vorel @ 2023-06-20 12:01 UTC (permalink / raw)
To: ltp; +Cc: Niklas Cassel
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
testcases/kernel/syscalls/ioprio/ioprio_get01.c | 6 +++++-
testcases/kernel/syscalls/ioprio/ioprio_set01.c | 6 +++++-
testcases/kernel/syscalls/ioprio/ioprio_set02.c | 6 +++++-
testcases/kernel/syscalls/ioprio/ioprio_set03.c | 6 +++++-
4 files changed, 20 insertions(+), 4 deletions(-)
diff --git a/testcases/kernel/syscalls/ioprio/ioprio_get01.c b/testcases/kernel/syscalls/ioprio/ioprio_get01.c
index ceac5a758..f1325be31 100644
--- a/testcases/kernel/syscalls/ioprio/ioprio_get01.c
+++ b/testcases/kernel/syscalls/ioprio/ioprio_get01.c
@@ -1,8 +1,12 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2019 Linus Walleij <linus.walleij@linaro.org>
+ * Copyright (c) 2023 Linux Test Project
+ */
+
+/*\
+ * [Description]
*
- * Description:
* Basic ioprio_get() test. Gets the current process I/O priority and
* checks that the values are sane.
*/
diff --git a/testcases/kernel/syscalls/ioprio/ioprio_set01.c b/testcases/kernel/syscalls/ioprio/ioprio_set01.c
index 243337bd2..0868cea7c 100644
--- a/testcases/kernel/syscalls/ioprio/ioprio_set01.c
+++ b/testcases/kernel/syscalls/ioprio/ioprio_set01.c
@@ -1,8 +1,12 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2019 Linus Walleij <linus.walleij@linaro.org>
+ * Copyright (c) 2019-2023 Linux Test Project
+ */
+
+/*\
+ * [Description]
*
- * Description:
* Basic ioprio_set() test. Gets the current process I/O priority and
* bumps it up one notch, then down two notches and checks that the
* new priority is reported back correctly.
diff --git a/testcases/kernel/syscalls/ioprio/ioprio_set02.c b/testcases/kernel/syscalls/ioprio/ioprio_set02.c
index 0faf03767..37db7bf42 100644
--- a/testcases/kernel/syscalls/ioprio/ioprio_set02.c
+++ b/testcases/kernel/syscalls/ioprio/ioprio_set02.c
@@ -1,8 +1,12 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2019 Linus Walleij <linus.walleij@linaro.org>
+ * Copyright (c) 2023 Linux Test Project
+ */
+
+/*\
+ * [Description]
*
- * Description:
* Extended ioprio_set() test.
* Tests to set all 8 priority levels for best effort priority, then
* switches to test all 8 priority levels for idle priority.
diff --git a/testcases/kernel/syscalls/ioprio/ioprio_set03.c b/testcases/kernel/syscalls/ioprio/ioprio_set03.c
index b67887205..6efcacc1c 100644
--- a/testcases/kernel/syscalls/ioprio/ioprio_set03.c
+++ b/testcases/kernel/syscalls/ioprio/ioprio_set03.c
@@ -1,8 +1,12 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2019 Linus Walleij <linus.walleij@linaro.org>
+ * Copyright (c) 2023 Linux Test Project
+ */
+
+/*\
+ * [Description]
*
- * Description:
* Negative ioprio_set() test. Test some non-working priorities to make
* sure they don't work.
*/
--
2.40.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [LTP] [PATCH 3/3] utils: Remove unused ioprio.h
2023-06-20 12:01 [LTP] [PATCH 0/3] ioprio minor cleanup Petr Vorel
2023-06-20 12:01 ` [LTP] [PATCH 1/3] ioprio: Move fallback constants and structs to LAPI header Petr Vorel
2023-06-20 12:01 ` [LTP] [PATCH 2/3] ioprio: Add docparse markers Petr Vorel
@ 2023-06-20 12:01 ` Petr Vorel
2023-06-20 12:31 ` Niklas Cassel via ltp
2023-06-20 12:59 ` [LTP] [PATCH 0/3] ioprio minor cleanup Damien Le Moal
3 siblings, 1 reply; 9+ messages in thread
From: Petr Vorel @ 2023-06-20 12:01 UTC (permalink / raw)
To: ltp; +Cc: Niklas Cassel
It was added in 0a1e45f09 (in 2009), but even then it was not needed.
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
testcases/kernel/syscalls/utils/ioprio.h | 46 ------------------------
1 file changed, 46 deletions(-)
delete mode 100644 testcases/kernel/syscalls/utils/ioprio.h
diff --git a/testcases/kernel/syscalls/utils/ioprio.h b/testcases/kernel/syscalls/utils/ioprio.h
deleted file mode 100644
index 07220945c..000000000
--- a/testcases/kernel/syscalls/utils/ioprio.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef __IOPRIO_H__
-#define __IOPRIO_H__
-
-//----------------------------------------------------------------------------
-// Copy of the 2.6.18 kernel header (linux/ioprio.h)
-//
-
-/*
- * Gives us 8 prio classes with 13-bits of data for each class
- */
-#define IOPRIO_BITS (16)
-#define IOPRIO_CLASS_SHIFT (13)
-#define IOPRIO_PRIO_MASK ((1UL << IOPRIO_CLASS_SHIFT) - 1)
-
-#define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT)
-#define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK)
-#define IOPRIO_PRIO_VALUE(class, data) (((class) << IOPRIO_CLASS_SHIFT) | data)
-
-#define ioprio_valid(mask) (IOPRIO_PRIO_CLASS((mask)) != IOPRIO_CLASS_NONE)
-
-/*
- * These are the io priority groups as implemented by CFQ. RT is the realtime
- * class, it always gets premium service. BE is the best-effort scheduling
- * class, the default for any process. IDLE is the idle scheduling class, it
- * is only served when no one else is using the disk.
- */
-enum {
- IOPRIO_CLASS_NONE,
- IOPRIO_CLASS_RT,
- IOPRIO_CLASS_BE,
- IOPRIO_CLASS_IDLE,
-};
-
-/*
- * 8 best effort priority levels are supported
- */
-#define IOPRIO_BE_NR (8)
-
-enum {
- IOPRIO_WHO_PROCESS = 1,
- IOPRIO_WHO_PGRP,
- IOPRIO_WHO_USER,
-};
-//-----------------------------------------------------------------------------
-
-#endif /* __IOPRIO_H__ */
--
2.40.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [LTP] [PATCH 1/3] ioprio: Move fallback constants and structs to LAPI header
2023-06-20 12:01 ` [LTP] [PATCH 1/3] ioprio: Move fallback constants and structs to LAPI header Petr Vorel
@ 2023-06-20 12:31 ` Niklas Cassel via ltp
0 siblings, 0 replies; 9+ messages in thread
From: Niklas Cassel via ltp @ 2023-06-20 12:31 UTC (permalink / raw)
To: Petr Vorel; +Cc: ltp@lists.linux.it
On Tue, Jun 20, 2023 at 02:01:57PM +0200, Petr Vorel wrote:
> Originally lapi headers were only for common headers, for fallback
> constants and structs usable only in test for particular subsystem,
> we mix them together with other helper functions in header placed in the
> test directory. But later we started to move to lapi also these
> fallbacks (e.g. fanotify.h in a05dbc4fa).
>
> + Remove unused headers in the tests.
>
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
Reviewed-by: Niklas Cassel <niklas.cassel@wdc.com>
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [LTP] [PATCH 2/3] ioprio: Add docparse markers
2023-06-20 12:01 ` [LTP] [PATCH 2/3] ioprio: Add docparse markers Petr Vorel
@ 2023-06-20 12:31 ` Niklas Cassel via ltp
0 siblings, 0 replies; 9+ messages in thread
From: Niklas Cassel via ltp @ 2023-06-20 12:31 UTC (permalink / raw)
To: Petr Vorel; +Cc: ltp@lists.linux.it
On Tue, Jun 20, 2023 at 02:01:58PM +0200, Petr Vorel wrote:
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
Reviewed-by: Niklas Cassel <niklas.cassel@wdc.com>
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [LTP] [PATCH 3/3] utils: Remove unused ioprio.h
2023-06-20 12:01 ` [LTP] [PATCH 3/3] utils: Remove unused ioprio.h Petr Vorel
@ 2023-06-20 12:31 ` Niklas Cassel via ltp
0 siblings, 0 replies; 9+ messages in thread
From: Niklas Cassel via ltp @ 2023-06-20 12:31 UTC (permalink / raw)
To: Petr Vorel; +Cc: ltp@lists.linux.it
On Tue, Jun 20, 2023 at 02:01:59PM +0200, Petr Vorel wrote:
> It was added in 0a1e45f09 (in 2009), but even then it was not needed.
>
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
Reviewed-by: Niklas Cassel <niklas.cassel@wdc.com>
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [LTP] [PATCH 0/3] ioprio minor cleanup
2023-06-20 12:01 [LTP] [PATCH 0/3] ioprio minor cleanup Petr Vorel
` (2 preceding siblings ...)
2023-06-20 12:01 ` [LTP] [PATCH 3/3] utils: Remove unused ioprio.h Petr Vorel
@ 2023-06-20 12:59 ` Damien Le Moal
2023-06-21 9:52 ` Petr Vorel
3 siblings, 1 reply; 9+ messages in thread
From: Damien Le Moal @ 2023-06-20 12:59 UTC (permalink / raw)
To: Petr Vorel, ltp; +Cc: Niklas Cassel
On 6/20/23 21:01, Petr Vorel wrote:
> Further minor ioprio cleanup. NOTE, docparse markers /*\ [Description]
> in the second commit allow test to be included in our automatically
> generated documentation [1].
>
> Kind regards,
> Petr
>
> [1] https://github.com/linux-test-project/ltp/releases/download/20230516/metadata.20230516.html
Looks good. Thanks Petr !
For the series:
Reviewed-by: Damien Le Moal <dlemoal@kernel.org>
>
> Petr Vorel (3):
> ioprio: Move fallback constants and structs to LAPI header
> ioprio: Add docparse markers
> utils: Remove unused ioprio.h
>
> include/lapi/ioprio.h | 47 +++++++++++++++++++
> testcases/kernel/syscalls/ioprio/ioprio.h | 42 ++---------------
> .../kernel/syscalls/ioprio/ioprio_get01.c | 9 ++--
> .../kernel/syscalls/ioprio/ioprio_set01.c | 9 ++--
> .../kernel/syscalls/ioprio/ioprio_set02.c | 9 ++--
> .../kernel/syscalls/ioprio/ioprio_set03.c | 9 ++--
> testcases/kernel/syscalls/utils/ioprio.h | 46 ------------------
> 7 files changed, 71 insertions(+), 100 deletions(-)
> create mode 100644 include/lapi/ioprio.h
> delete mode 100644 testcases/kernel/syscalls/utils/ioprio.h
>
--
Damien Le Moal
Western Digital Research
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [LTP] [PATCH 0/3] ioprio minor cleanup
2023-06-20 12:59 ` [LTP] [PATCH 0/3] ioprio minor cleanup Damien Le Moal
@ 2023-06-21 9:52 ` Petr Vorel
0 siblings, 0 replies; 9+ messages in thread
From: Petr Vorel @ 2023-06-21 9:52 UTC (permalink / raw)
To: Damien Le Moal; +Cc: Niklas Cassel, ltp
Hi all,
thanks for your review, patchset merged.
Kind regards,
Petr
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-06-21 9:52 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-20 12:01 [LTP] [PATCH 0/3] ioprio minor cleanup Petr Vorel
2023-06-20 12:01 ` [LTP] [PATCH 1/3] ioprio: Move fallback constants and structs to LAPI header Petr Vorel
2023-06-20 12:31 ` Niklas Cassel via ltp
2023-06-20 12:01 ` [LTP] [PATCH 2/3] ioprio: Add docparse markers Petr Vorel
2023-06-20 12:31 ` Niklas Cassel via ltp
2023-06-20 12:01 ` [LTP] [PATCH 3/3] utils: Remove unused ioprio.h Petr Vorel
2023-06-20 12:31 ` Niklas Cassel via ltp
2023-06-20 12:59 ` [LTP] [PATCH 0/3] ioprio minor cleanup Damien Le Moal
2023-06-21 9:52 ` Petr Vorel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox