Go to file
Renaud Métrich c3bb9d18dc fix(dracut-functions): implement a cache for get_maj_min
On systems with a large number of devices, usually multipath devices,
dracut can spend a lot of time stat'ing the devices to collect the
major/minor numbers, leading to huge slowness rebuilding the initramfs
when stat'ing devices is slow (seen with oracleasm file systems in
particular).
This commit implements a basic cache stored in a file under
DRACUT_TMPDIR storing the major:minor corresponding to the specified
device.

Reproducer: create N loopback devices used as a LVM extension to volume
group hosting the root file system

  # LVMVG="rhel"
  # NDEVICES=200
  # mkdir devices; for i in $(seq 1 $NDEVICES); do
    truncate -s 10m devices/$i; losetup loop$i devices/$i
  done
  # vgextend $LVMVG $(/bin/ls -1 /dev/loop[0-9]*)

With standard code (tested with RHEL8.3 dracut):

  # dracut -f --debug /tmp/initramfs.img $(uname -r) >/tmp/debug 2>&1
  # grep -c "stat -L -c" /tmp/debug
  2440

With this code:

  # dracut -f --debug /tmp/initramfs.img $(uname -r) >/tmp/debug_optim 2>&1
  # grep -c "stat -L -c" /tmp/debug_optim
  205

Signed-off-by: Renaud Métrich <rmetrich@redhat.com>
2021-05-06 09:14:10 +02:00
.github fix: shellcheck 0.7.2 2021-05-05 14:55:30 +02:00
docs docs: install `which` in Arch container 2021-05-04 18:39:31 +02:00
dracut.conf.d fix(dracut): sysctl global variables 2021-04-20 10:52:45 +02:00
install feat: support ZSTD-compressed kernel modules 2021-05-04 15:55:19 +00:00
install.d chore(tree): move kernel install files into its own directory 2021-05-04 09:24:16 +02:00
man chore(tree): move man pages into a man directory 2021-05-04 09:23:51 +02:00
modules.d fix(fips): add dh and ecdh ciphers 2021-05-05 16:24:18 +02:00
pkgbuild chore(tree): move package build files in their own directory 2021-05-04 15:39:34 +02:00
shell-completion/bash chore(tree): move shell completion into a directory 2021-05-04 09:22:22 +02:00
src chore(tree): move src into their own src directory 2021-05-04 10:02:04 +02:00
test fix: shellcheck 0.7.2 2021-05-05 14:55:30 +02:00
tools chore(tree): move tools into their own directory 2021-05-04 10:01:14 +02:00
.astylerc style: use astyle instead of indent 2021-03-15 15:37:08 +01:00
.dir-locals.el fix: set vimrc and emacs indention according to .editorconfig 2021-03-13 20:10:43 +01:00
.editorconfig feat: customize .editorconfig according to shfmt 2021-03-13 20:10:43 +01:00
.gitignore chore: update .gitignore 2021-03-10 19:31:19 +01:00
.kateconfig add kate and emacs per directory config files 2014-08-29 13:38:47 +02:00
.kateproject kate config 2016-04-15 10:27:48 +02:00
.mailmap chore: update authors in .mailmap 2021-02-18 14:10:23 +00:00
.packit.yml chore(tree): move package build files in their own directory 2021-05-04 15:39:34 +02:00
.shellcheckrc fix: shellcheck 0.7.2 2021-05-05 14:55:30 +02:00
.vimrc fix: set vimrc and emacs indention according to .editorconfig 2021-03-13 20:10:43 +01:00
AUTHORS docs: update NEWS.md and AUTHORS 2021-02-23 16:11:01 +01:00
COPYING
Makefile chore(tree): move package build files in their own directory 2021-05-04 15:39:34 +02:00
NEWS.md docs: update NEWS.md and AUTHORS 2021-02-23 16:11:01 +01:00
README.md docs: fix CI badges in README 2021-02-10 14:39:11 +01:00
configure style: shfmt reformat 2021-03-13 20:10:43 +01:00
dracut-catimages.sh style: shfmt reformat 2021-03-13 20:10:43 +01:00
dracut-functions.sh fix(dracut-functions): implement a cache for get_maj_min 2021-05-06 09:14:10 +02:00
dracut-init.sh feat: support ZSTD-compressed kernel modules 2021-05-04 15:55:19 +00:00
dracut-initramfs-restore.sh feat: also restore the initramfs from /lib/modules 2021-05-04 11:25:32 +02:00
dracut-logger.sh fix(dracut-logger.sh): double dash trigger unknown logger warnings during run 2021-04-15 12:58:49 +02:00
dracut.conf dracut.conf: remove example parameters 2015-07-09 15:36:25 +02:00
dracut.css Doc: cleanup, extend and split and reuse 2013-10-08 15:13:12 +02:00
dracut.png dracut.png: Optimize with zopflipng -m 2016-07-07 13:54:47 +03:00
dracut.sh fix(dracut-functions): implement a cache for get_maj_min 2021-05-06 09:14:10 +02:00
dracut.svg
lsinitrd.sh fix(lsinitrd.sh): shellcheck for lsinitrd.sh 2021-03-30 12:59:06 +02:00

README.md

dracut

dracut is an event driven initramfs infrastructure.

Contributor Covenant Fedora-32 Fedora-33 Fedora-latest

dracut (the tool) is used to create an initramfs image by copying tools and files from an installed system and combining it with the dracut framework, usually found in /usr/lib/dracut/modules.d.

Unlike other implementations, dracut hard-codes as little as possible into the initramfs. The initramfs has (basically) one purpose in life -- getting the rootfs mounted so that we can transition to the real rootfs. This is all driven off of device availability. Therefore, instead of scripts hard-coded to do various things, we depend on udev to create device nodes for us and then when we have the rootfs's device node, we mount and carry on. This helps to keep the time required in the initramfs as little as possible so that things like a 5 second boot aren't made impossible as a result of the very existence of an initramfs.

Most of the initramfs generation functionality in dracut is provided by a bunch of generator modules that are sourced by the main dracut script to install specific functionality into the initramfs. They live in the modules.d subdirectory, and use functionality provided by dracut-functions to do their work.

Currently dracut lives on github.com and kernel.org.

The tarballs can be found here: http://www.kernel.org/pub/linux/utils/boot/dracut/ ftp://ftp.kernel.org/pub/linux/utils/boot/dracut/

Git: https://github.com/dracutdevs/dracut.git http://git.kernel.org/?p=boot/dracut/dracut.git

Project Documentation: http://www.kernel.org/pub/linux/utils/boot/dracut/dracut.html

Project Wiki: http://dracut.wiki.kernel.org

See the github issue tracker for things which still need to be done and HACKING.md for some instructions on how to get started. There is also a mailing list that is being used for the discussion -- initramfs@vger.kernel.org. It is a typical vger list, send mail to majordomo@vger.kernel.org with body of 'subscribe initramfs email@host.com'

Licensed under the GPLv2