Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionMarcus Sundberg
2017-03-29 09:40:13 UTC
Description of problem:
When there is at least one process in the system running that has many
open file descriptors and many threads lsof -nP takes a a lot of time
to run and produces huge output.
Version-Release number of selected component (if applicable):
lsof-4.87-4.el7.x86_64
How reproducible: Always
Steps to Reproduce:
1. lsof -nP
Actual results:
Takes a long time to traverse all threads of all processes.
Expected results:
Only traverse processes, unless -K flag is given.
Example running standard and patches lsof in an EL7 desktop session:
Standard EL7 lsof:
$) time lsof -nP | wc -c
14117646
real 0m1.430s
user 0m0.648s
sys 0m0.789s
$) ./fd-and-threads &
[1] 30452
$) time lsof -nP | wc -c
75110357
real 0m13.096s
user 0m4.128s
sys 0m8.968s
$)
Patched lsof:
$) time lsof -nP | wc -c
1748246
real 0m0.214s
user 0m0.087s
sys 0m0.131s
$) ./fd-and-threads &
[1] 31585
$) time lsof -nP | wc -c
1822372
real 0m0.247s
user 0m0.087s
sys 0m0.162s
$) time lsof -nPK | wc -c
68403949
real 0m12.946s
user 0m4.125s
sys 0m8.828s
$)
Created attachment 1399440[details]
Proposed backport patch
Patch to ignore threads if -Ki flag is given. Change backported from upstream. lsof always displayed threads by default (documented in manpage).
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHBA-2018:3046