Bug 1003610
| Summary: | RFE: capabilities: Expose xen blktap support | ||
|---|---|---|---|
| Product: | [Community] Virtualization Tools | Reporter: | Cole Robinson <crobinso> | 
| Component: | libvirt | Assignee: | Libvirt Maintainers <libvirt-maint> | 
| Status: | CLOSED DEFERRED | QA Contact: | |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | unspecified | CC: | rbalakri | 
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-03-20 22:26:14 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: | |||
| blktap is apparently not the favored xen driver anymore, as detailed in bug 1171550, so while in theory libvirt should provide this info I don't think anyone practically cares about it anymore. | 
virt-install/virt-manager have had this check forever: def is_blktap_capable(conn): # Ideally we would get this from libvirt capabilities XML if conn.is_remote(): return False f = open("/proc/modules") lines = f.readlines() f.close() for line in lines: if line.startswith("blktap ") or line.startswith("xenblktap "): return True return False If True, we use driver name='tap' for <disk> XML. As the comment above suggestions, libvirt should expose some tag in capabilities so we know a host supports blktap, and tools don't need to probe lsmod or similar.