search for: gf55cc

Displaying 12 results from an estimated 12 matches for "gf55cc".

Did you mean: 0055cc
2009 Dec 17
0
[PATCH] vhost: add missing architectures
...- a/arch/s390/kvm/Kconfig +++ b/arch/s390/kvm/Kconfig @@ -36,6 +36,7 @@ config KVM # OK, it's a little counter-intuitive to do this, but it puts it neatly under # the virtualization menu. +source drivers/vhost/Kconfig source drivers/virtio/Kconfig endif # VIRTUALIZATION -- 1.6.6.rc1.43.gf55cc
2009 Dec 17
0
[PATCH-cc-fixed] vhost: add missing architectures
...- a/arch/s390/kvm/Kconfig +++ b/arch/s390/kvm/Kconfig @@ -36,6 +36,7 @@ config KVM # OK, it's a little counter-intuitive to do this, but it puts it neatly under # the virtualization menu. +source drivers/vhost/Kconfig source drivers/virtio/Kconfig endif # VIRTUALIZATION -- 1.6.6.rc1.43.gf55cc
2009 Dec 20
0
[PATCH 3/3] vhost: make default mapping empty by default
...ory->regions[0].userspace_addr = 1; - memory->regions[0].memory_size = ~0ULL; - memory->regions[1].guest_phys_addr = 0; - memory->regions[1].userspace_addr = 0; - memory->regions[1].memory_size = 1; + memory->nregions = 0; dev->memory = memory; return 0; } -- 1.6.6.rc1.43.gf55cc
2009 Dec 17
0
[PATCH] vhost: add missing architectures
...- a/arch/s390/kvm/Kconfig +++ b/arch/s390/kvm/Kconfig @@ -36,6 +36,7 @@ config KVM # OK, it's a little counter-intuitive to do this, but it puts it neatly under # the virtualization menu. +source drivers/vhost/Kconfig source drivers/virtio/Kconfig endif # VIRTUALIZATION -- 1.6.6.rc1.43.gf55cc
2009 Dec 17
0
[PATCH-cc-fixed] vhost: add missing architectures
...- a/arch/s390/kvm/Kconfig +++ b/arch/s390/kvm/Kconfig @@ -36,6 +36,7 @@ config KVM # OK, it's a little counter-intuitive to do this, but it puts it neatly under # the virtualization menu. +source drivers/vhost/Kconfig source drivers/virtio/Kconfig endif # VIRTUALIZATION -- 1.6.6.rc1.43.gf55cc
2009 Dec 20
0
[PATCH 3/3] vhost: make default mapping empty by default
...ory->regions[0].userspace_addr = 1; - memory->regions[0].memory_size = ~0ULL; - memory->regions[1].guest_phys_addr = 0; - memory->regions[1].userspace_addr = 0; - memory->regions[1].memory_size = 1; + memory->nregions = 0; dev->memory = memory; return 0; } -- 1.6.6.rc1.43.gf55cc
2009 Dec 20
0
[PATCH 1/3] vhost: prevent modification of an active ring
...(void __user *)(unsigned long)p; + mutex_unlock(&vq->mutex); } break; case VHOST_SET_LOG_FD: @@ -483,7 +503,6 @@ long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, unsigned long arg) break; } done: - mutex_unlock(&d->mutex); return r; } -- 1.6.6.rc1.43.gf55cc
2009 Dec 20
0
[PATCH 1/3] vhost: prevent modification of an active ring
...(void __user *)(unsigned long)p; + mutex_unlock(&vq->mutex); } break; case VHOST_SET_LOG_FD: @@ -483,7 +503,6 @@ long vhost_dev_ioctl(struct vhost_dev *d, unsigned int ioctl, unsigned long arg) break; } done: - mutex_unlock(&d->mutex); return r; } -- 1.6.6.rc1.43.gf55cc
2009 Dec 24
1
[PATCH] vhost: access check thinko fixes
...is inactive, will check when it's enabled. */ + if (vq->private_data && !vq_log_access_ok(vq, base)) + r = -EFAULT; else - vq->log_base = (void __user *)(unsigned long)p; + vq->log_base = base; mutex_unlock(&vq->mutex); } break; -- 1.6.6.rc1.43.gf55cc
2009 Dec 24
1
[PATCH] vhost: access check thinko fixes
...is inactive, will check when it's enabled. */ + if (vq->private_data && !vq_log_access_ok(vq, base)) + r = -EFAULT; else - vq->log_base = (void __user *)(unsigned long)p; + vq->log_base = base; mutex_unlock(&vq->mutex); } break; -- 1.6.6.rc1.43.gf55cc
2009 Dec 20
0
[PATCH 2/3] vhost: add access_ok checks
...uct vhost_dev *, unsigned int ioctl, unsigned long arg); +int vhost_vq_access_ok(struct vhost_virtqueue *vq); +int vhost_log_access_ok(struct vhost_dev *); unsigned vhost_get_vq_desc(struct vhost_dev *, struct vhost_virtqueue *, struct iovec iov[], unsigned int iov_count, -- 1.6.6.rc1.43.gf55cc
2009 Dec 20
0
[PATCH 2/3] vhost: add access_ok checks
...uct vhost_dev *, unsigned int ioctl, unsigned long arg); +int vhost_vq_access_ok(struct vhost_virtqueue *vq); +int vhost_log_access_ok(struct vhost_dev *); unsigned vhost_get_vq_desc(struct vhost_dev *, struct vhost_virtqueue *, struct iovec iov[], unsigned int iov_count, -- 1.6.6.rc1.43.gf55cc