commit | d768f32aec8c0ebb8499ffca89cfed8f5f1a4432 | [log] [tgz] |
---|---|---|
author | Thomas Huth <thuth@redhat.com> | Thu Jul 02 09:21:22 2015 +0200 |
committer | Michael S. Tsirkin <mst@redhat.com> | Tue Jul 07 14:27:04 2015 +0300 |
tree | 3518c844a175fa03ec7cc9d6c0d1012d2dd3eadb | |
parent | 908a5544cd29ed60114ed60bded6dbe8cdd56326 [diff] |
virtio: Fix typecast of pointer in vring_init() The virtio_ring.h header is used in userspace programs (ie. QEMU), too. Here we can not assume that sizeof(pointer) is the same as sizeof(long), e.g. when compiling for Windows, so the typecast in vring_init() should be done with (uintptr_t) instead of (unsigned long). Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>