Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 343372 Details for
Bug 460244
app-emulation/qemu-1.4.0 - segfault in librbd::flush(librbd::ImageCtx*) () from /usr/lib64/librbd.so.1
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
rbd-notopened.patch
rbd-notopened.patch (text/plain), 732 bytes, created by
Denis Kaganovich
on 2013-03-26 23:38:16 UTC
(
hide
)
Description:
rbd-notopened.patch
Filename:
MIME Type:
Creator:
Denis Kaganovich
Created:
2013-03-26 23:38:16 UTC
Size:
732 bytes
patch
obsolete
>Workaround against commit f500a6d3c2b9ef0bb06d0080d91d8ed3c1d68f58 > >--- a/block/rbd.c 2013-03-27 02:16:53.000000000 +0300 >+++ b/block/rbd.c 2013-03-27 02:17:31.000000000 +0300 >@@ -544,6 +544,9 @@ static void qemu_rbd_close(BlockDriverSt > { > BDRVRBDState *s = bs->opaque; > >+ if (!s->image) >+ return; >+ > close(s->fds[0]); > close(s->fds[1]); > qemu_aio_set_fd_handler(s->fds[RBD_FD_READ], NULL, NULL, NULL, NULL); >@@ -766,7 +769,7 @@ static int qemu_rbd_co_flush(BlockDriver > #if LIBRBD_VERSION_CODE >= LIBRBD_VERSION(0, 1, 1) > /* rbd_flush added in 0.1.1 */ > BDRVRBDState *s = bs->opaque; >- return rbd_flush(s->image); >+ return s->image ? rbd_flush(s->image) : 0; > #else > return 0; > #endif
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 460244
:
343334
|
343372
|
343386
|
343392