Bug 166114

Summary: Slow
Product: [Fedora] Fedora Reporter: Bernie Innocenti <bernie+fedora>
Component: kernelAssignee: Kernel Maintainer List <kernel-maint>
Status: CLOSED NOTABUG QA Contact: Brian Brock <bbrock>
Severity: medium Docs Contact:
Priority: medium    
Version: rawhideCC: wtogami
Target Milestone: ---Keywords: FutureFeature
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Enhancement
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-08-17 03:35:01 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Bernie Innocenti 2005-08-17 00:12:27 UTC
Description of problem:

The kernel-devel RPM package takes forever to install
because the postinstall scriptlet contains this line:

 /usr/bin/find . -type f | while read f; do hardlink -c /usr/src/kernels/*FC*/$f
$f ; done

It could be improved by using xargs.

Comment 1 Dave Jones 2005-08-17 03:35:01 UTC
This is an IO bound operation, so I'm very doubtful it'll be faster.
The only thing that will speed this up notably is to not have as many kernels
installed at the same time.