FS/XFS testing framework
 help / color / mirror / Atom feed
* [PATCH] src/t_ofd_locks.c: Reset errno to zero
@ 2022-08-04  6:18 Yang Xu
  2022-08-05 15:00 ` Darrick J. Wong
  0 siblings, 1 reply; 4+ messages in thread
From: Yang Xu @ 2022-08-04  6:18 UTC (permalink / raw)
  To: fstests; +Cc: Yang Xu

It seems I met libcap errno bug again when using libcap-2.48-4.el8.x86_64.
But this time, errno is EINVAL if c program link with lcap.
Lastest upstream libcap doesn't have bug and it should be backport bug.

generic/478 will become not run because of this. To fix this that only
exists on some distributions, reset errno to zero.

Signed-off-by: Yang Xu <xuyang2018.jy@fujitsu.com>
---
 src/t_ofd_locks.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/t_ofd_locks.c b/src/t_ofd_locks.c
index e3b15ddc..e77f2659 100644
--- a/src/t_ofd_locks.c
+++ b/src/t_ofd_locks.c
@@ -187,6 +187,8 @@ int main(int argc, char **argv)
 	struct sembuf sop;
 	int opt, ret, retry;
 
+	//avoid libcap errno bug
+	errno = 0;
 	while((opt = getopt(argc, argv, "sgrwo:l:PRWtFd")) != -1) {
 		switch(opt) {
 		case 's':
-- 
2.27.0


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

end of thread, other threads:[~2022-08-15 14:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-04  6:18 [PATCH] src/t_ofd_locks.c: Reset errno to zero Yang Xu
2022-08-05 15:00 ` Darrick J. Wong
2022-08-15 10:06   ` xuyang2018.jy
2022-08-15 14:30     ` Darrick J. Wong

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