Linux Kernel Selftest development
 help / color / mirror / Atom feed
* [PATCH v4 0/2] selftests/resctrl: Bug fix and optimization
@ 2023-09-22  8:09 Maciej Wieczor-Retman
  2023-09-22  8:10 ` [PATCH v4 1/2] selftests/resctrl: Fix schemata write error check Maciej Wieczor-Retman
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Maciej Wieczor-Retman @ 2023-09-22  8:09 UTC (permalink / raw)
  To: shuah, fenghua.yu, reinette.chatre
  Cc: ilpo.jarvinen, linux-kernel, linux-kselftest

Write_schemata() uses fprintf() to write a bitmask into a schemata file
inside resctrl FS. It checks fprintf() return value but it doesn't check
fclose() return value. Error codes from fprintf() such as write errors,
are buffered and flushed back to the user only after fclose() is executed
which means any invalid bitmask can be written into the schemata file.

Rewrite write_schemata() to use syscalls instead of stdio file
operations to avoid the buffering.

The resctrlfs.c file defines functions that interact with the resctrl FS
while resctrl_val.c file defines functions that perform measurements on
the cache. Run_benchmark() fits logically into the second file before
resctrl_val() function that uses it.

Move run_benchmark() from resctrlfs.c to resctrl_val.c and remove
redundant part of the kernel-doc comment. Make run_benchmark() static
and remove it from the header file.

Patch series is based on [1] which is based on [2] which are based on
ksefltest next branch.

Changelog v4:
- Change git signature from Wieczor-Retman Maciej to Maciej
  Wieczor-Retman.
- Rebase onto [1] which is based on [2]. (Reinette)
- Add fcntl.h explicitly to provide glibc backward compatibility.
  (Reinette)

Changelog v3:
- Use snprintf() return value instead of strlen() in write_schemata().
  (Ilpo)
- Make run_benchmark() static and remove it from the header file.
  (Reinette)
- Added Ilpo's reviewed-by tag to Patch 2/2.
- Patch messages and cover letter rewording.

Changelog v2:
- Change sprintf() to snprintf() in write_schemata().
- Redo write_schemata() with syscalls instead of stdio functions.
- Fix typos and missing dots in patch messages.
- Branch printf attribute patch to a separate series.

[v1] https://lore.kernel.org/all/cover.1692880423.git.maciej.wieczor-retman@intel.com/
[v2] https://lore.kernel.org/all/cover.1693213468.git.maciej.wieczor-retman@intel.com/
[v3] https://lore.kernel.org/all/cover.1693575451.git.maciej.wieczor-retman@intel.com/

[1] https://lore.kernel.org/all/20230915154438.82931-1-ilpo.jarvinen@linux.intel.com/
[2] https://lore.kernel.org/all/20230904095339.11321-1-ilpo.jarvinen@linux.intel.com/

Maciej Wieczor-Retman (2):
  selftests/resctrl: Fix schemata write error check
  selftests/resctrl: Move run_benchmark() to a more fitting file

 tools/testing/selftests/resctrl/resctrl.h     |  1 -
 tools/testing/selftests/resctrl/resctrl_val.c | 50 +++++++++++
 tools/testing/selftests/resctrl/resctrlfs.c   | 82 ++++---------------
 3 files changed, 67 insertions(+), 66 deletions(-)


base-commit: 3b3e8a34b1d50c2c5c6b030dab7682b123162cb4
-- 
2.42.0


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

end of thread, other threads:[~2023-09-29  6:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-22  8:09 [PATCH v4 0/2] selftests/resctrl: Bug fix and optimization Maciej Wieczor-Retman
2023-09-22  8:10 ` [PATCH v4 1/2] selftests/resctrl: Fix schemata write error check Maciej Wieczor-Retman
2023-09-22 10:30   ` Ilpo Järvinen
2023-09-27 22:15   ` Reinette Chatre
2023-09-28  6:46     ` Maciej Wieczór-Retman
2023-09-28 21:25       ` Reinette Chatre
2023-09-29  6:09         ` Maciej Wieczór-Retman
2023-09-22  8:10 ` [PATCH v4 2/2] selftests/resctrl: Move run_benchmark() to a more fitting file Maciej Wieczor-Retman
2023-09-27 22:16 ` [PATCH v4 0/2] selftests/resctrl: Bug fix and optimization Reinette Chatre
2023-09-28  6:06   ` Maciej Wieczór-Retman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox