mirror of
https://github.com/systemd/systemd.git
synced 2024-12-13 20:23:48 +08:00
f2d9213fee
If we call LOOP_CLR_FD and LOOP_CTL_REMOVE too rapidly, the kernel cannot deal with that (5.3.13-300.fc31.x86_64 running on dual core Intel(R) Core(TM) i7-6500U CPU @ 2.50GHz). $ sudo strace -eioctl build/test-dissect-image /tmp/foobar3.img ioctl(3, TCGETS, 0x7ffcee47de20) = -1 ENOTTY (Inappropriate ioctl for device) ioctl(4, LOOP_CTL_GET_FREE) = 9 ioctl(5, LOOP_SET_FD, 3) = 0 ioctl(5, LOOP_SET_STATUS64, {lo_offset=0, lo_number=0, lo_flags=LO_FLAGS_READ_ONLY|LO_FLAGS_AUTOCLEAR|LO_FLAGS_PARTSCAN, lo_file_name="", ...}) = 0 ioctl(5, BLKGETSIZE64, [299999744]) = 0 ioctl(5, CDROM_GET_CAPABILITY, 0) = -1 EINVAL (Invalid argument) ioctl(5, BLKSSZGET, [512]) = 0 Waiting for device (parent + 0 partitions) to appear... Found root partition, writable of type btrfs at #-1 (/dev/block/7:9) ioctl(5, LOOP_CLR_FD) = 0 ioctl(3, LOOP_CTL_REMOVE, 9) = -1 EBUSY (Device or resource busy) Failed to remove loop device: Device or resource busy This seems to be clear race condition, and attaching strace is generally enough to "win" the race. But even with strace attached, we will fail occasionally. Let's wait a bit and retry. With the wait, on my machine, the second attempt always succeeds: ... Found root partition, writable of type btrfs at #-1 (/dev/block/7:9) ioctl(5, LOOP_CLR_FD) = 0 ioctl(3, LOOP_CTL_REMOVE, 9) = -1 EBUSY (Device or resource busy) ioctl(3, LOOP_CTL_REMOVE, 9) = 9 +++ exited with 0 +++ Without the wait, all 64 attempts will occasionally fail. |
||
---|---|---|
.github | ||
.lgtm/cpp-queries | ||
.mkosi | ||
catalog | ||
coccinelle | ||
docs | ||
factory/etc | ||
hwdb.d | ||
man | ||
modprobe.d | ||
network | ||
po | ||
presets | ||
rules.d | ||
semaphoreci | ||
shell-completion | ||
src | ||
sysctl.d | ||
sysusers.d | ||
test | ||
tmpfiles.d | ||
tools | ||
travis-ci | ||
units | ||
xorg | ||
.ctags | ||
.dir-locals.el | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.lgtm.yml | ||
.mailmap | ||
.travis.yml | ||
.vimrc | ||
.ycm_extra_conf.py | ||
azure-pipelines.yml | ||
configure | ||
fuzzbuzz.yaml | ||
LICENSE.GPL2 | ||
LICENSE.LGPL2.1 | ||
Makefile | ||
meson_options.txt | ||
meson.build | ||
mkosi.build | ||
mkosi.default | ||
NEWS | ||
README | ||
README.md | ||
TODO | ||
zanata.xml |
systemd - System and Service Manager
Details
General information about systemd can be found in the systemd Wiki.
Information about build requirements is provided in the README file.
Consult our NEWS file for information about what's new in the most recent systemd versions.
Please see the Hacking guide for information on how to hack on systemd and test your modifications.
Please see our Contribution Guidelines for more information about filing GitHub Issues and posting GitHub Pull Requests.
When preparing patches for systemd, please follow our Coding Style Guidelines.
If you are looking for support, please contact our mailing list or join our IRC channel.
Stable branches with backported patches are available in the stable repo.