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.
Bug 1437014 - lsof -nP is unusable on EL7 when a multi threaded process has many files open
Summary: lsof -nP is unusable on EL7 when a multi threaded process has many files open
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: lsof
Version: 7.3
Hardware: All
OS: Linux
medium
medium
Target Milestone: rc
: ---
Assignee: Jan Rybar
QA Contact: Jakub Heger
URL:
Whiteboard:
Depends On:
Blocks: 1473612 1549617 1549689 1551061
TreeView+ depends on / blocked
 
Reported: 2017-03-29 09:40 UTC by Marcus Sundberg
Modified: 2021-12-10 14:58 UTC (History)
6 users (show)

Fixed In Version: lsof-4.87-6.el7
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
: 1437018 (view as bug list)
Environment:
Last Closed: 2018-10-30 07:56:27 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)
Sample program to illustrate the problem. (338 bytes, text/plain)
2017-03-29 09:41 UTC, Marcus Sundberg
no flags Details
Patch to only list threads/tasks if the -K flag is given. (975 bytes, patch)
2017-03-29 09:44 UTC, Marcus Sundberg
no flags Details | Diff
Proposed backport patch (6.34 KB, patch)
2018-02-22 15:12 UTC, Jan Rybar
no flags Details | Diff


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHBA-2018:3046 0 None None None 2018-10-30 07:56:37 UTC

Description Marcus 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.

Comment 2 Marcus Sundberg 2017-03-29 09:41:57 UTC
Created attachment 1267267 [details]
Sample program to illustrate the problem.

Comment 3 Marcus Sundberg 2017-03-29 09:44:56 UTC
Created attachment 1267268 [details]
Patch to only list threads/tasks if the -K flag is given.

Comment 4 Marcus Sundberg 2017-03-29 09:46:15 UTC
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
$)

Comment 9 Jan Rybar 2018-02-22 15:12:04 UTC
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).

Comment 15 errata-xmlrpc 2018-10-30 07:56:27 UTC
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


Note You need to log in before you can comment on or make changes to this bug.