diff options
author | Brian Behlendorf <[email protected]> | 2012-12-13 12:21:11 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-12-19 09:08:01 -0800 |
commit | 31f2b5abdf95d8426d8bfd66ca7f62ec70215e3c (patch) | |
tree | e3bf9676ae43e1088462583570cbc5ce3cf24d14 /include | |
parent | 84daaddedbfc9cf4bd1490d8a6f4b2967051e308 (diff) |
Remove TSD zfs_fsyncer_key
It's my understanding that the zfs_fsyncer_key TSD was added as
a performance omtimization to reduce contention on the zl_lock
from zil_commit(). This issue manifested itself as very long
(100+ms) fsync() system call times for fsync() heavy workloads.
However, under Linux I'm not seeing the same contention that
was originally described. Therefore, I'm removing this code
in order to ween ourselves off any dependence on TSD. If the
original performance issue reappears on Linux we can revisit
fixing it without resorting to TSD.
This just leaves one small ZFS TSD consumer. If it can be
cleanly removed from the code we'll be able to shed the SPL
TSD implementation entirely.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes zfsonlinux/spl#174
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/zfs_vfsops.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/sys/zfs_vfsops.h b/include/sys/zfs_vfsops.h index 4dd46710f..5b11c9312 100644 --- a/include/sys/zfs_vfsops.h +++ b/include/sys/zfs_vfsops.h @@ -150,8 +150,6 @@ typedef struct zfid_long { #define SHORT_FID_LEN (sizeof (zfid_short_t) - sizeof (uint16_t)) #define LONG_FID_LEN (sizeof (zfid_long_t) - sizeof (uint16_t)) -extern uint_t zfs_fsyncer_key; - extern int zfs_suspend_fs(zfs_sb_t *zsb); extern int zfs_resume_fs(zfs_sb_t *zsb, const char *osname); extern int zfs_userspace_one(zfs_sb_t *zsb, zfs_userquota_prop_t type, |