diff options
author | Brian Behlendorf <[email protected]> | 2015-06-11 10:47:19 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2015-06-11 10:50:47 -0700 |
commit | b64ccd6c52cfb34d7b92715baef5ebd9305de6d1 (patch) | |
tree | 53e9b9805dba7496214ef20acca5736b2952cdef /module/zfs/fm.c | |
parent | 06358ea16e2ff256acc6376c71539f7211851404 (diff) |
Rename cv_wait_interruptible() to cv_wait_sig()
This is the counterpart to zfsonlinux/spl@2345368 which replaces the
cv_wait_interruptible() function with cv_wait_sig(). There is no
functional change to patch merely brings the function names in to
sync to maximize portability.
Signed-off-by: Brian Behlendorf <[email protected]>
Issue #3450
Issue #3402
Diffstat (limited to 'module/zfs/fm.c')
-rw-r--r-- | module/zfs/fm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/fm.c b/module/zfs/fm.c index 56787137b..b67a7076d 100644 --- a/module/zfs/fm.c +++ b/module/zfs/fm.c @@ -676,7 +676,7 @@ zfs_zevent_wait(zfs_zevent_t *ze) } zevent_waiters++; - cv_wait_interruptible(&zevent_cv, &zevent_lock); + cv_wait_sig(&zevent_cv, &zevent_lock); if (issig(JUSTLOOKING)) error = EINTR; |