1. 01 3月, 2018 34 次提交
  2. 28 2月, 2018 1 次提交
    • P
      Merge remote-tracking branch 'remotes/kraxel/tags/usb-20180227-pull-request' into staging · 66974397
      Peter Maydell 提交于
      usb: add mtp write support.
      
      # gpg: Signature made Tue 27 Feb 2018 08:39:01 GMT
      # gpg:                using RSA key 4CB6D8EED3E87138
      # gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>"
      # gpg:                 aka "Gerd Hoffmann <gerd@kraxel.org>"
      # gpg:                 aka "Gerd Hoffmann (private) <kraxel@gmail.com>"
      # Primary key fingerprint: A032 8CFF B93A 17A7 9901  FE7D 4CB6 D8EE D3E8 7138
      
      * remotes/kraxel/tags/usb-20180227-pull-request:
        usb-mtp: Advertise SendObjectInfo for write support
        usb-mtp: Introduce write support for MTP objects
        usb-mtp: Support delete of mtp objects
        usb-mtp: print parent path in IN_IGNORED trace fn
        usb-mtp: Add one more argument when building results
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      66974397
  3. 27 2月, 2018 2 次提交
    • P
      Merge remote-tracking branch 'remotes/kraxel/tags/vga-20180227-pull-request' into staging · 3ec7b5d8
      Peter Maydell 提交于
      virtio-gpu: add support for second capability set
      
      # gpg: Signature made Tue 27 Feb 2018 07:30:31 GMT
      # gpg:                using RSA key 4CB6D8EED3E87138
      # gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>"
      # gpg:                 aka "Gerd Hoffmann <gerd@kraxel.org>"
      # gpg:                 aka "Gerd Hoffmann (private) <kraxel@gmail.com>"
      # Primary key fingerprint: A032 8CFF B93A 17A7 9901  FE7D 4CB6 D8EE D3E8 7138
      
      * remotes/kraxel/tags/vga-20180227-pull-request:
        virtio-gpu-3d: add support for second capability set (v4)
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      3ec7b5d8
    • P
      Merge remote-tracking branch 'remotes/vivier2/tags/linux-user-for-2.12-pull-request' into staging · 438cd708
      Peter Maydell 提交于
      # gpg: Signature made Sun 25 Feb 2018 17:54:21 GMT
      # gpg:                using RSA key F30C38BD3F2FBE3C
      # gpg: Good signature from "Laurent Vivier <lvivier@redhat.com>"
      # gpg:                 aka "Laurent Vivier <laurent@vivier.eu>"
      # gpg:                 aka "Laurent Vivier (Red Hat) <lvivier@redhat.com>"
      # Primary key fingerprint: CD2F 75DD C8E3 A4DC 2E4F  5173 F30C 38BD 3F2F BE3C
      
      * remotes/vivier2/tags/linux-user-for-2.12-pull-request:
        linux-user: MIPS set cpu to r6 CPU if binary is R6
        linux-user, m68k: select CPU according to ELF header values
        linux-user: introduce functions to detect CPU type
        linux-user: Move CPU type name selection to a function
      Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
      438cd708
  4. 26 2月, 2018 3 次提交
    • D
      virtio-gpu-3d: add support for second capability set (v4) · 5643cc94
      Dave Airlie 提交于
      Due to a kernel bug we can never increase the size of capability
      set 1, so introduce a new capability set in parallel, old userspace
      will continue to use the old set, new userspace will start using
      the new one when it detects a fixed kernel.
      
      v2: don't use a define from virglrenderer, just probe it.
      v3: fix compilation when virglrenderer disabled
      v4: fix style warning, just use ?: op instead.
      Signed-off-by: NDave Airlie <airlied@redhat.com>
      Message-id: 20180223023814.24459-1-airlied@gmail.com
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      5643cc94
    • B
      usb-mtp: Advertise SendObjectInfo for write support · 53735bef
      Bandan Das 提交于
      This patch implements a dummy ObjectInfo structure so that
      it's easy to typecast the incoming data. If the metadata is
      valid, write_pending is set. Also, the incoming filename
      is utf-16, so, instead of depending on external libraries, just
      implement a simple function to get the filename
      Signed-off-by: NBandan Das <bsd@redhat.com>
      Message-id: 20180223164829.29683-6-bsd@redhat.com
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      53735bef
    • B
      usb-mtp: Introduce write support for MTP objects · 88d5f381
      Bandan Das 提交于
      Allow write operations on behalf of the initiator. The
      precursor to write is the sending of the write metadata
      that consists of the ObjectInfo dataset. This patch introduces
      a flag that is set when the responder is ready to receive
      write data based on a previous SendObjectInfo operation by
      the initiator (The SendObjectInfo implementation is in a
      later patch)
      Signed-off-by: NBandan Das <bsd@redhat.com>
      Message-id: 20180223164829.29683-5-bsd@redhat.com
      Signed-off-by: NGerd Hoffmann <kraxel@redhat.com>
      88d5f381