]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
fusefs: fix intermittency in the dev_fuse_poll test
authorAlan Somers <asomers@FreeBSD.org>
Sat, 25 Sep 2021 16:16:20 +0000 (10:16 -0600)
committerAlan Somers <asomers@FreeBSD.org>
Tue, 12 Oct 2021 05:57:38 +0000 (23:57 -0600)
commit9381a9d8926005ef57a3e8add7fb21e42e01d08c
tree20c1ee7652ddd152ca1708195cc90813c14a752e
parent955a418bd3036dc055d97cf98faec0be137b3b11
fusefs: fix intermittency in the dev_fuse_poll test

The DevFusePoll::access/select test would occasionally segfault.  The
cause was a file descriptor that was shared between two threads.  The
first thread would kill the second and close the file descriptor.  But
it was possible that the second would read the file descriptor before it
shut down.  That did not cause problems for kqueue, poll, or blocking
operation, but it triggered segfaults in select's macros.

Differential Revision: https://reviews.freebsd.org/D32142

(cherry picked from commit f44a448709d3b77508fd59ee28201ae1666387c2)
tests/sys/fs/fusefs/mockfs.cc
tests/sys/fs/fusefs/mockfs.hh