1 | The following changes since commit 64175afc695c0672876fbbfc31b299c86d562cb4: | 1 | The following changes since commit cc5ce8b8b6be83e5fe3b668dbd061ad97c534e3f: |
---|---|---|---|
2 | 2 | ||
3 | arm_gicv3: Fix ICC_BPR1 reset value when EL3 not implemented (2017-06-07 17:21:44 +0100) | 3 | Merge remote-tracking branch 'remotes/legoater/tags/pull-ppc-20220210' into staging (2022-02-13 20:33:28 +0000) |
4 | 4 | ||
5 | are available in the git repository at: | 5 | are available in the Git repository at: |
6 | 6 | ||
7 | git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request | 7 | https://gitlab.com/stefanha/qemu.git tags/block-pull-request |
8 | 8 | ||
9 | for you to fetch changes up to 56faeb9bb6872b3f926b3b3e0452a70beea10af2: | 9 | for you to fetch changes up to 4c41c69e05fe28c0f95f8abd2ebf407e95a4f04b: |
10 | 10 | ||
11 | block/gluster.c: Handle qdict_array_entries() failure (2017-06-09 08:41:29 -0400) | 11 | util: adjust coroutine pool size to virtio block queue (2022-02-14 17:11:25 +0000) |
12 | 12 | ||
13 | ---------------------------------------------------------------- | 13 | ---------------------------------------------------------------- |
14 | Gluster patch | 14 | Pull request |
15 | |||
16 | This contains coroutine poll size scaling, virtiofsd rseq seccomp for new glibc | ||
17 | versions, and the QEMU C virtiofsd deprecation notice. | ||
18 | |||
15 | ---------------------------------------------------------------- | 19 | ---------------------------------------------------------------- |
16 | 20 | ||
17 | Peter Maydell (1): | 21 | Christian Ehrhardt (1): |
18 | block/gluster.c: Handle qdict_array_entries() failure | 22 | tools/virtiofsd: Add rseq syscall to the seccomp allowlist |
19 | 23 | ||
20 | block/gluster.c | 3 +-- | 24 | Dr. David Alan Gilbert (1): |
21 | 1 file changed, 1 insertion(+), 2 deletions(-) | 25 | Deprecate C virtiofsd |
26 | |||
27 | Hiroki Narukawa (1): | ||
28 | util: adjust coroutine pool size to virtio block queue | ||
29 | |||
30 | docs/about/deprecated.rst | 17 +++++++++++++++++ | ||
31 | include/qemu/coroutine.h | 10 ++++++++++ | ||
32 | hw/block/virtio-blk.c | 5 +++++ | ||
33 | tools/virtiofsd/passthrough_seccomp.c | 3 +++ | ||
34 | util/qemu-coroutine.c | 20 ++++++++++++++++---- | ||
35 | 5 files changed, 51 insertions(+), 4 deletions(-) | ||
22 | 36 | ||
23 | -- | 37 | -- |
24 | 2.9.3 | 38 | 2.34.1 |
25 | 39 | ||
26 | 40 | diff view generated by jsdifflib |
Deleted patch | |||
---|---|---|---|
1 | From: Peter Maydell <peter.maydell@linaro.org> | ||
2 | 1 | ||
3 | In qemu_gluster_parse_json(), the call to qdict_array_entries() | ||
4 | could return a negative error code, which we were ignoring | ||
5 | because we assigned the result to an unsigned variable. | ||
6 | Fix this by using the 'int' type instead, which matches the | ||
7 | return type of qdict_array_entries() and also the type | ||
8 | we use for the loop enumeration variable 'i'. | ||
9 | |||
10 | (Spotted by Coverity, CID 1360960.) | ||
11 | |||
12 | Signed-off-by: Peter Maydell <peter.maydell@linaro.org> | ||
13 | Reviewed-by: Eric Blake <eblake@redhat.com> | ||
14 | Reviewed-by: Jeff Cody <jcody@redhat.com> | ||
15 | Message-id: 1496682098-1540-1-git-send-email-peter.maydell@linaro.org | ||
16 | Signed-off-by: Jeff Cody <jcody@redhat.com> | ||
17 | --- | ||
18 | block/gluster.c | 3 +-- | ||
19 | 1 file changed, 1 insertion(+), 2 deletions(-) | ||
20 | |||
21 | diff --git a/block/gluster.c b/block/gluster.c | ||
22 | index XXXXXXX..XXXXXXX 100644 | ||
23 | --- a/block/gluster.c | ||
24 | +++ b/block/gluster.c | ||
25 | @@ -XXX,XX +XXX,XX @@ static int qemu_gluster_parse_json(BlockdevOptionsGluster *gconf, | ||
26 | Error *local_err = NULL; | ||
27 | char *str = NULL; | ||
28 | const char *ptr; | ||
29 | - size_t num_servers; | ||
30 | - int i, type; | ||
31 | + int i, type, num_servers; | ||
32 | |||
33 | /* create opts info from runtime_json_opts list */ | ||
34 | opts = qemu_opts_create(&runtime_json_opts, NULL, 0, &error_abort); | ||
35 | -- | ||
36 | 2.9.3 | ||
37 | |||
38 | diff view generated by jsdifflib |