Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 659067 Details for
Bug 884874
[PATCH] snapshot API, and fix for create linear API.
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Fix create linear.
pylvm2-fix-size-create-linear.patch (text/plain), 717 bytes, created by
James Antill
on 2012-12-06 22:05:38 UTC
(
hide
)
Description:
Fix create linear.
Filename:
MIME Type:
Creator:
James Antill
Created:
2012-12-06 22:05:38 UTC
Size:
717 bytes
patch
obsolete
>commit f577a975d688a37c749068ea86dd911465d56f04 >Author: James Antill <james@and.org> >Date: Thu Dec 6 16:56:42 2012 -0500 > > Fix getting the size arg. for createLvLinear() when long != uintmax. > >diff --git a/liblvm.c b/liblvm.c >index c59be52..633f604 100644 >--- a/liblvm.c >+++ b/liblvm.c >@@ -869,13 +869,15 @@ liblvm_lvm_vg_create_lv_linear(vgobject *self, PyObject *args) > { > const char *vgname; > uint64_t size; >+ unsigned long asize; > lvobject *lvobj; > > VG_VALID(self); > >- if (!PyArg_ParseTuple(args, "sl", &vgname, &size)) { >+ if (!PyArg_ParseTuple(args, "sl", &vgname, &asize)) { > return NULL; > } >+ size = asize; > > if ((lvobj = PyObject_New(lvobject, &LibLVMlvType)) == NULL) > return NULL;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 884874
: 659067 |
659068
|
659069