Bug 896160
Summary: | kernel: loop - please do not pre-create devices: CONFIG_BLK_DEV_LOOP_MIN_COUNT=0 | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Kay Sievers <kay> |
Component: | kernel | Assignee: | Josh Boyer <jwboyer> |
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | rawhide | CC: | awilliam, dan-redhatbugzilla, gansalmon, harald, horsley1953, itamar, jonathan, kernel-maint, kzak, madhu.chinakonda |
Target Milestone: | --- | Keywords: | Triaged |
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2013-05-10 15:01:15 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Kay Sievers
2013-01-16 18:36:38 UTC
(In reply to comment #0) > And if there is no specific reason, please als turn loop into a loadable > module: > CONFIG_BLK_DEV_CRYPTOLOOP=m Oh, that should be: CONFIG_BLK_DEV_LOOP=m While at it, maybe we can also disable: CONFIG_BLK_DEV_CRYPTOLOOP=n Fedora 18 was the last version of util-linux supporting cryptoloop devices, it all needs to be done by dmcrypt these days. ACK ;-) This bug appears to have been reported against 'rawhide' during the Fedora 19 development cycle. Changing version to '19'. (As we did not run this process for some time, it could affect also pre-Fedora 19 development cycle bugs. We are very sorry. It will help us with cleanup during Fedora 19 End Of Life. Thank you.) More information and reason for this action is here: https://fedoraproject.org/wiki/BugZappers/HouseKeeping/Fedora19 Moving this to rawhide. Clearly this missed early F19 :\. I'll try and get to it tomorrow. OK, I've made all three changes. Hopefully dracut will bring in the loop module if it needs it for anything in the initramfs. (In reply to Josh Boyer from comment #6) > OK, I've made all three changes. Hopefully dracut will bring in the loop > module if it needs it for anything in the initramfs. yes it does, except for the dracut crypt-loop module, which is not working anyway anymore. >In any case, the old behaviour can always be requested with a kernel command
>line option.
I don't suppose you'd care to mention what the kernel command line option is?
This breaks realcrypt a.k.a truecrypt.
Hi, I solved this problem by creating my own loop device because I don't want to change the kernel parameters. The other method I think it is described in the bug https://bugzilla.redhat.com/show_bug.cgi?id=1019440 Took the script from http://www.tldp.org/HOWTO/CDServer-HOWTO/addloops.html , bottom of the page "3.4. Creating the Loop Devices in /dev" loop_device=/dev/loop8 if [ -b $loop_device ]; then echo "$loop_device already exists! Exiting!" exit else sudo mknod -m660 $loop_device b 7 8 sudo chown root:disk $loop_device sudo chmod 666 $loop_device truecrypt <container> <mount_point> fi Cheers, Dan |