* [Qemu-devel] [PULL 0/2] Block patches
@ 2017-02-28 4:37 Jeff Cody
2017-02-28 4:37 ` [Qemu-devel] [PULL 1/2] block/mirror: fix broken sparseness detection Jeff Cody
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jeff Cody @ 2017-02-28 4:37 UTC (permalink / raw)
To: qemu-block; +Cc: peter.maydell, jcody, qemu-devel
The following changes since commit 8f2d7c341184a95d05476ea3c45dbae2b9ddbe51:
Merge remote-tracking branch 'remotes/berrange/tags/pull-qcrypto-2017-02-27-1' into staging (2017-02-27 15:33:21 +0000)
are available in the git repository at:
https://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request
for you to fetch changes up to 51654aa52a94612edfaf76dcb51c0a0b7821c90d:
iscsi: add missing colons to the qapi docs (2017-02-27 23:33:41 -0500)
----------------------------------------------------------------
Block patches for 2.9
----------------------------------------------------------------
Jeff Cody (1):
iscsi: add missing colons to the qapi docs
John Snow (1):
block/mirror: fix broken sparseness detection
block/mirror.c | 2 +-
qapi/block-core.json | 18 +++++++++---------
2 files changed, 10 insertions(+), 10 deletions(-)
--
2.9.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] [PULL 1/2] block/mirror: fix broken sparseness detection
2017-02-28 4:37 [Qemu-devel] [PULL 0/2] Block patches Jeff Cody
@ 2017-02-28 4:37 ` Jeff Cody
2017-02-28 4:37 ` [Qemu-devel] [PULL 2/2] iscsi: add missing colons to the qapi docs Jeff Cody
2017-02-28 14:49 ` [Qemu-devel] [PULL 0/2] Block patches Peter Maydell
2 siblings, 0 replies; 4+ messages in thread
From: Jeff Cody @ 2017-02-28 4:37 UTC (permalink / raw)
To: qemu-block; +Cc: peter.maydell, jcody, qemu-devel
From: John Snow <jsnow@redhat.com>
int64_t is in all likelihood the actual scalar type we want.
Yep, really.
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1219541
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Jeff Cody <jcody@redhat.com>
Signed-off-by: Jeff Cody <jcody@redhat.com>
---
block/mirror.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/block/mirror.c b/block/mirror.c
index 3d50857..1b34b36 100644
--- a/block/mirror.c
+++ b/block/mirror.c
@@ -386,7 +386,7 @@ static uint64_t coroutine_fn mirror_iteration(MirrorBlockJob *s)
nb_chunks * sectors_per_chunk);
bitmap_set(s->in_flight_bitmap, sector_num / sectors_per_chunk, nb_chunks);
while (nb_chunks > 0 && sector_num < end) {
- int ret;
+ int64_t ret;
int io_sectors, io_sectors_acct;
BlockDriverState *file;
enum MirrorMethod {
--
2.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Qemu-devel] [PULL 2/2] iscsi: add missing colons to the qapi docs
2017-02-28 4:37 [Qemu-devel] [PULL 0/2] Block patches Jeff Cody
2017-02-28 4:37 ` [Qemu-devel] [PULL 1/2] block/mirror: fix broken sparseness detection Jeff Cody
@ 2017-02-28 4:37 ` Jeff Cody
2017-02-28 14:49 ` [Qemu-devel] [PULL 0/2] Block patches Peter Maydell
2 siblings, 0 replies; 4+ messages in thread
From: Jeff Cody @ 2017-02-28 4:37 UTC (permalink / raw)
To: qemu-block; +Cc: peter.maydell, jcody, qemu-devel
The missing colons make the iscsi part of the documentation not render
quite as nicely, so add those in.
Signed-off-by: Jeff Cody <jcody@redhat.com>
---
qapi/block-core.json | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/qapi/block-core.json b/qapi/block-core.json
index 5f82d35..cf24c04 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -2625,29 +2625,29 @@
##
# @BlockdevOptionsIscsi:
#
-# @transport The iscsi transport type
+# @transport: The iscsi transport type
#
-# @portal The address of the iscsi portal
+# @portal: The address of the iscsi portal
#
-# @target The target iqn name
+# @target: The target iqn name
#
-# @lun #optional LUN to connect to. Defaults to 0.
+# @lun: #optional LUN to connect to. Defaults to 0.
#
-# @user #optional User name to log in with. If omitted, no CHAP
+# @user: #optional User name to log in with. If omitted, no CHAP
# authentication is performed.
#
-# @password-secret #optional The ID of a QCryptoSecret object providing
+# @password-secret: #optional The ID of a QCryptoSecret object providing
# the password for the login. This option is required if
# @user is specified.
#
-# @initiator-name #optional The iqn name we want to identify to the target
+# @initiator-name: #optional The iqn name we want to identify to the target
# as. If this option is not specified, an initiator name is
# generated automatically.
#
-# @header-digest #optional The desired header digest. Defaults to
+# @header-digest: #optional The desired header digest. Defaults to
# none-crc32c.
#
-# @timeout #optional Timeout in seconds after which a request will
+# @timeout: #optional Timeout in seconds after which a request will
# timeout. 0 means no timeout and is the default.
#
# Driver specific block device options for iscsi
--
2.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PULL 0/2] Block patches
2017-02-28 4:37 [Qemu-devel] [PULL 0/2] Block patches Jeff Cody
2017-02-28 4:37 ` [Qemu-devel] [PULL 1/2] block/mirror: fix broken sparseness detection Jeff Cody
2017-02-28 4:37 ` [Qemu-devel] [PULL 2/2] iscsi: add missing colons to the qapi docs Jeff Cody
@ 2017-02-28 14:49 ` Peter Maydell
2 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2017-02-28 14:49 UTC (permalink / raw)
To: Jeff Cody; +Cc: Qemu-block, QEMU Developers
On 28 February 2017 at 04:37, Jeff Cody <jcody@redhat.com> wrote:
> The following changes since commit 8f2d7c341184a95d05476ea3c45dbae2b9ddbe51:
>
> Merge remote-tracking branch 'remotes/berrange/tags/pull-qcrypto-2017-02-27-1' into staging (2017-02-27 15:33:21 +0000)
>
> are available in the git repository at:
>
> https://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request
>
> for you to fetch changes up to 51654aa52a94612edfaf76dcb51c0a0b7821c90d:
>
> iscsi: add missing colons to the qapi docs (2017-02-27 23:33:41 -0500)
>
> ----------------------------------------------------------------
> Block patches for 2.9
> ----------------------------------------------------------------
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-02-28 14:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-28 4:37 [Qemu-devel] [PULL 0/2] Block patches Jeff Cody
2017-02-28 4:37 ` [Qemu-devel] [PULL 1/2] block/mirror: fix broken sparseness detection Jeff Cody
2017-02-28 4:37 ` [Qemu-devel] [PULL 2/2] iscsi: add missing colons to the qapi docs Jeff Cody
2017-02-28 14:49 ` [Qemu-devel] [PULL 0/2] Block patches Peter Maydell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).