Project

General

Profile

Actions

Bug #4539

closed

_t_checkfd() should not call find_tilink() if force_sync is set

Added by Marcel Telka over 9 years ago. Updated over 8 years ago.

Status:
Closed
Priority:
Low
Assignee:
Category:
lib - userland libraries
Start date:
2014-01-27
Due date:
% Done:

100%

Estimated time:
Difficulty:
Bite-size
Tags:
Gerrit CR:
External Bug:

Description

As a minor optimization, we shouldn't call find_tilink() here in _t_checkfd() in a case the force_sync is set:

85    tiptr = NULL;
86    sig_mutex_lock(&_ti_userlock);
87    if ((tiptr = find_tilink(fd)) != NULL) {
88        if (!force_sync) {
89            sig_mutex_unlock(&_ti_userlock);
90            return (tiptr);
91        }
92    }
93    sig_mutex_unlock(&_ti_userlock);

The above code could be changed to something like this:

if (!force_sync) {
    sig_mutex_lock(&_ti_userlock);
    tiptr = find_tilink(fd);
    sig_mutex_unlock(&_ti_userlock);
    if (tiptr != NULL)
        return (tiptr);
}
Actions #1

Updated by Marcel Telka about 9 years ago

  • Assignee set to Marcel Telka
Actions #2

Updated by Marcel Telka about 9 years ago

  • Status changed from New to In Progress
  • Tags deleted (needs-triage)
Actions #3

Updated by Marcel Telka over 8 years ago

  • Status changed from In Progress to Pending RTI
Actions #4

Updated by Electric Monk over 8 years ago

  • Status changed from Pending RTI to Closed
  • % Done changed from 0 to 100

git commit c62da27859e36f9fdd8cee3c6df3ad567543dcf9

commit  c62da27859e36f9fdd8cee3c6df3ad567543dcf9
Author: Marcel Telka <marcel.telka@nexenta.com>
Date:   2015-02-11T16:29:32.000Z

    4539 _t_checkfd() should not call find_tilink() if force_sync is set
    Reviewed by: Garrett D'Amore <garrett@damore.org>
    Reviewed by: Dan McDonald <danmcd@omniti.com>
    Approved by: Richard Lowe <richlowe@richlowe.net>

Actions

Also available in: Atom PDF