1. 18 8月, 2016 4 次提交
  2. 17 8月, 2016 2 次提交
  3. 16 8月, 2016 15 次提交
  4. 15 8月, 2016 7 次提交
  5. 13 8月, 2016 3 次提交
  6. 12 8月, 2016 3 次提交
    • P
      target-arm: Fix warn about implicit conversion · 6bbbb0ac
      Pranith Kumar 提交于
      Clang warns about an implicit conversion as follows:
      
      /mnt/devops/code/qemu/target-arm/neon_helper.c:1075:1: warning: implicit conversion from 'int' to 'int8_t' (aka 'signed char') changes value from 128 to -128 [-Wconstant-conversion]
      NEON_VOP_ENV(qrshl_s8, neon_s8, 4)
      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      /mnt/devops/code/qemu/target-arm/neon_helper.c:116:83: note: expanded from macro 'NEON_VOP_ENV'
      uint32_t HELPER(glue(neon_,name))(CPUARMState *env, uint32_t arg1, uint32_t arg2) \
                                                                                        ^
      /mnt/devops/code/qemu/target-arm/neon_helper.c:106:5: note: expanded from macro '\
      NEON_VOP_BODY'
          NEON_DO##n; \
          ^~~~~~~~~~
      <scratch space>:21:1: note: expanded from here
      NEON_DO4
      ^~~~~~~~
      /mnt/devops/code/qemu/target-arm/neon_helper.c:93:5: note: expanded from macro 'NEON_DO4'
          NEON_FN(vdest.v1, vsrc1.v1, vsrc2.v1); \
          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      /mnt/devops/code/qemu/target-arm/neon_helper.c:1054:23: note: expanded from macro 'NEON_FN'
                  dest = (1 << (sizeof(src1) * 8 - 1)); \
                       ~  ~~^~~~~~~~~~~~~~~~~~~~~~~~~
      
      Fix it by casting to appropriate type.
      Signed-off-by: NPranith Kumar <bobby.prani@gmail.com>
      Reviewed-by: NPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      6bbbb0ac
    • L
      trace-events: fix first line comment in trace-events · e723b871
      Laurent Vivier 提交于
      Documentation is docs/tracing.txt instead of docs/trace-events.txt.
      
      find . -name trace-events -exec \
           sed -i "s?See docs/trace-events.txt for syntax documentation.?See docs/tracing.txt for syntax documentation.?" \
           {} \;
      Signed-off-by: NLaurent Vivier <lvivier@redhat.com>
      Message-id: 1470669081-17860-1-git-send-email-lvivier@redhat.com
      Signed-off-by: NStefan Hajnoczi <stefanha@redhat.com>
      e723b871
    • P
      Merge remote-tracking branch 'remotes/amit-migration/tags/migration-for-2.7-7' into staging · 28b87442
      Peter Maydell 提交于
      Migration:
       - couple of bug fixes
       - couple of typo fixes
      
      # gpg: Signature made Thu 11 Aug 2016 12:36:00 BST
      # gpg:                using RSA key 0xEB0B4DFC657EF670
      # gpg: Good signature from "Amit Shah <amit@amitshah.net>"
      # gpg:                 aka "Amit Shah <amit@kernel.org>"
      # gpg:                 aka "Amit Shah <amitshah@gmx.net>"
      # Primary key fingerprint: 48CA 3722 5FE7 F4A8 B337  2735 1E9A 3B5F 8540 83B6
      #      Subkey fingerprint: CC63 D332 AB8F 4617 4529  6534 EB0B 4DFC 657E F670
      
      * remotes/amit-migration/tags/migration-for-2.7-7:
        migration/socket: fix typo in file header
        migration: fix live migration failure with compression
        migration: mmap error check fix
        migration/ram: fix typo
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      28b87442
  7. 11 8月, 2016 6 次提交