Commit Graph

12 Commits

Author SHA1 Message Date
Jiebin Sun
fb4521ca2d Allocate unique fd for each parallel to avoid unexpected syscall test result
If all the parallels dup the same fd 0 and share the same file reference
count, then the f_count will meet with heavy lock contention. The syscall
cost of dup/close will occupy only a few in the test result. Allocating
one unique fd for each parallel will reduce lots of the unexpected
lock contention cost. And it will fully perform the syscall cost of
dup/close.

If the parallel number is 1, the testing result with this patch is the
same with the original one on ICX server, which is expected. If the
parallel number is large, the testing result will accurately show the
syscall cost of dup/close without the impact of data sharing.

Signed-off-by: Jiebin Sun <jiebin.sun@intel.com>
2023-01-19 13:25:51 -05:00
Glenn Strauss
2ebb4c5916 title[22] -> title[18]
title[22] -> title[18] to match length of strings passed.
(not pretty code and ultimately title[] is src to strcpy(),
 but at least have the prototype and function definition match)
2023-01-19 03:22:41 -05:00
Rong Tao
1d44debaec title[18] -> title[22]
compile warning:

```c
src/whets.c:797:20: warning: argument 1 of type ‘char[18]’ with mismatched bound [-Warray-parameter=]
  797 |     void pout(char title[18], float ops, int type, SPDP checknum,
      |               ~~~~~^~~~~~~~~
src/whets.c:315:17: note: previously declared as ‘char[22]’
  315 |  void pout(char title[22], float ops, int type, SPDP checknum,
      |            ~~~~~^~~~~~~~~
```
2023-01-19 03:20:07 -05:00
Glenn Strauss
b9beecdc4a increase size of logname[] in src/big.c for debug
(thx Cat22)

github: closes #65
2022-02-24 02:06:00 -05:00
Yuanhong Peng
3d069b2e9c Directly call syscall(SYS_getpid) instead of getpid() in syscall test
According to http://man7.org/linux/man-pages/man2/getpid.2.html:

> From glibc version 2.3.4 up to and including version 2.24, the glibc
wrapper function for getpid() cached PIDs, with the goal of avoiding
additional system calls when a process calls getpid() repeatedly.

So it's not suitable to messure the system call performance through
getpid(). Directly call syscall(SYS_getpid) is more appropriate.

From glibc version 2.25, cached pid is removed to fix some bugs which
makes the testsuite wrongly report performance regression on system call.

Same issue is reported to unixbench upstream long time ago, but nobody
cares. https://github.com/kdlucas/byte-unixbench/pull/58

Signed-off-by: Yuanhong Peng <yummypeng@linux.alibaba.com>

github: closes #58
2022-02-24 01:28:31 -05:00
Clark Wierda
35efe5e575 Fix Result Report Race Condition in Pipe-based Context Switching Test (#42)
* Fix Result Report Race Condition in Pipe-based Context Switching Test

Ensure all report() calls yield correct information.

* Simplify code in Pipe-based Context Switching Test

Remove un-needed iter1 variable
2016-10-07 00:56:46 -04:00
Glenn Strauss
777d66eb15 context1.c - better end-of-stream, signal handling
Addresses "slave write failed: Broken pipe; aborting"

There are two processes that are alternating reading and writing
a sequence number of sizeof(unsigned long) size, which is 4 bytes
on 32-bit ILP32 ABI and 8 bytes on 64-bit LP64 ABI.  The read/write
passing of incrementing sequence number occurs in infinite loop
until an alarm signals each process.  There is a race condition
where a signal delivered to one process might close the pipes while
the second process was still attempting to read or write from the
pipes, and before the second process was interrupted with SIGALRM.

This patch fixes the race condition that occurs at the end of the
test run, after the first SIGALRM is delivered.

This patch does not address the paranoid possibility that read() or
write() of 4 or 8 bytes might theoretically be a partial read() or
write(), but that is extremely unlikely except in the case of a signal
being delivered, and the only signal expected is SIGALRM, and the
processing of SIGALRM by report() function does not return.  (This
patch adds code to ignore SIGPIPE, so SIGALRM is the only expected
signal.)

github: fixes #1
2016-09-17 21:52:06 -04:00
Glenn Strauss
ab61513f03 arith: use volatile to attempt to thwart optimizer
github: fixes #7, fixes #10, fixes #21
2016-09-17 20:09:01 -04:00
Glenn Strauss
274c178661 remove declarations which dup from system headers
('-ansi' compiler flag might have caused some declarations to be hidden)
2016-03-24 15:48:16 -04:00
Glenn Strauss
58e83b663b fix compiler warnings
const correctness
format string safety
remove assigned, but unused, variables
fix arguments to execl()
remove defined but unused warnings (for code used only by some tests)
2016-03-24 15:48:16 -04:00
Chris Morgan
64c45b40c0 Fix for OS X based on https://gist.github.com/barusan/11033924
barusan's patch mostly retains compatibility with linux, but
unconditionally used machdep instead of /proc/cpuinfo

This attempts to merge the patch without harming behaviour on linux by
detecting the darwin platform and using machdep there but restores
/proc/cpuinfo elsewhere.
2016-03-24 15:48:15 -04:00
headstay
f53eadaa3e Version 5.1.2. 2009-10-28 01:52:39 +00:00