Bug 483686
Summary: | lvm2 doesn't understand mmcblk devs | ||||||
---|---|---|---|---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Jeremy Katz <katzj> | ||||
Component: | lvm2 | Assignee: | Milan Broz <mbroz> | ||||
Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
Severity: | low | Docs Contact: | |||||
Priority: | low | ||||||
Version: | 10 | CC: | agk, alexl, bmarzins, bmr, dcantrell, dwysocha, heinzm, jvonau3, lvm-team, martin, mbroz, msnitzer, prockai, pvrabec | ||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | All | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | lvm2-2.02.45-4.fc11 | Doc Type: | Bug Fix | ||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | 481431 | Environment: | |||||
Last Closed: | 2009-04-17 11:06:46 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: | |||||||
Bug Depends On: | 481431 | ||||||
Bug Blocks: | 446452 | ||||||
Attachments: |
|
Description
Jeremy Katz
2009-02-03 00:09:24 UTC
In the post-storage rewrite world, does this bug still exist? Yes. We still need the lvm tools to understand the block device names. This is a trivial patch to lvm based on the several other disk types I've had to add in the past... not that the package is open to provenpackagers. Jeremy, can you attach your lvm2 patch to this bug? Not necessary but it would likely move things along quicker for this specific mmcblk.* case. You mean something like this? (not tested, I have no SD card here...) --- filter.c.old 2009-02-27 23:47:18.000000000 +0100 +++ filter.c 2009-04-14 16:00:43.000000000 +0200 @@ -78,6 +78,7 @@ {"vdisk", 8}, /* SUN's LDOM virtual block device */ {"ps3disk", 16}, /* PlayStation 3 internal disk */ {"virtblk", 8}, /* VirtIO disk */ + {"mmcblk", 8}, {NULL, 0} }; (In reply to comment #4) > You mean something like this? (not tested, I have no SD card here...) Yep. It's probably worth looking to see what other block devs have been added in kernel land (and/or eventually finding a way that doesn't require constant updates :-) Created attachment 339523 [details]
files from /tmp
LVM is still broken with mmcblk0... I'll retry without LVM as see how that goes.
Well, without LVM I get past partitioning, and package selection, using the beta isos on the usbkey(yes!!) but the poor XO displays a kernel opps while installing packages.... :( That I need help with to capture if interested, guess a camera will do that... There is much above what scrolled by eye but I can see: note: mmcqd exited with preempt_count 1 BUG scheduling while atomic: mmcqd/1005/0x10000001 Hope it helps.. (In reply to comment #5) > Yep. It's probably worth looking to see what other block devs have been added > in kernel land (and/or eventually finding a way that doesn't require constant > updates :-) Longer-term, the responsibility for this is likely to be transferred to udev rules. Tested patch is here https://www.redhat.com/archives/lvm-devel/2009-April/msg00078.html I think Alasdair want to do new lvm2 bugfix build for Fedora, if not, I'll rebuild it with just this patch. Alternatively, you can add types = [ "mmc", 16 ] to devices section in /etc/lvm.conf Fixed in lvm2-2.02.45-4.fc11 / lvm2-2.02.45-4.fc12 Ticket for tagging to F11 final https://fedorahosted.org/rel-eng/ticket/1506 |