diff options
author | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-04-04 17:08:12 +0000 |
---|---|---|
committer | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-04-04 17:08:12 +0000 |
commit | 728b9dd80074bedef6136b6acf5cb86d707172ea (patch) | |
tree | f171e176c64e2900d564e3a0428e77f2e8659afc /modules/splat/splat-atomic.c | |
parent | 968eccd1d1cb7a43a7f05050d7b645da79966e6d (diff) |
- Fix write-only behavior in vn-open()
- Ensure we have at least 1 write-only splat test
- Fix return codes for vn_* Solaris does not use negative return
codes in the kernel. So linux errno's must be inverted.
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@67 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
Diffstat (limited to 'modules/splat/splat-atomic.c')
-rw-r--r-- | modules/splat/splat-atomic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/splat/splat-atomic.c b/modules/splat/splat-atomic.c index c170cc05e..43876d78a 100644 --- a/modules/splat/splat-atomic.c +++ b/modules/splat/splat-atomic.c @@ -95,8 +95,8 @@ splat_atomic_work(void *priv) (long unsigned)ap->ap_atomic, (long unsigned)ap->ap_atomic_exited); - thread_exit(); wake_up(&ap->ap_waitq); + thread_exit(); } static int |