Searched hist:"7 d82410950aa74adccf035c332e409af2bb93e92" (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/include/linux/ |
H A D | virtio_byteorder.h | diff 7d82410950aa74adccf035c332e409af2bb93e92 Fri Apr 24 07:26:24 CDT 2015 Greg Kurz <gkurz@linux.vnet.ibm.com> virtio: add explicit big-endian support to memory accessors
The current memory accessors logic is: - little endian if little_endian - native endian (i.e. no byteswap) if !little_endian
If we want to fully support cross-endian vhost, we also need to be able to convert to big endian.
Instead of changing the little_endian argument to some 3-value enum, this patch changes the logic to: - little endian if little_endian - big endian if !little_endian
The native endian case is handled by all users with a trivial helper. This patch doesn't change any functionality, nor it does add overhead.
Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
|
H A D | vringh.h | diff 7d82410950aa74adccf035c332e409af2bb93e92 Fri Apr 24 07:26:24 CDT 2015 Greg Kurz <gkurz@linux.vnet.ibm.com> virtio: add explicit big-endian support to memory accessors
The current memory accessors logic is: - little endian if little_endian - native endian (i.e. no byteswap) if !little_endian
If we want to fully support cross-endian vhost, we also need to be able to convert to big endian.
Instead of changing the little_endian argument to some 3-value enum, this patch changes the logic to: - little endian if little_endian - big endian if !little_endian
The native endian case is handled by all users with a trivial helper. This patch doesn't change any functionality, nor it does add overhead.
Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
|
H A D | virtio_config.h | diff 7d82410950aa74adccf035c332e409af2bb93e92 Fri Apr 24 07:26:24 CDT 2015 Greg Kurz <gkurz@linux.vnet.ibm.com> virtio: add explicit big-endian support to memory accessors
The current memory accessors logic is: - little endian if little_endian - native endian (i.e. no byteswap) if !little_endian
If we want to fully support cross-endian vhost, we also need to be able to convert to big endian.
Instead of changing the little_endian argument to some 3-value enum, this patch changes the logic to: - little endian if little_endian - big endian if !little_endian
The native endian case is handled by all users with a trivial helper. This patch doesn't change any functionality, nor it does add overhead.
Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
|
/openbmc/linux/drivers/vhost/ |
H A D | vhost.h | diff 7d82410950aa74adccf035c332e409af2bb93e92 Fri Apr 24 07:26:24 CDT 2015 Greg Kurz <gkurz@linux.vnet.ibm.com> virtio: add explicit big-endian support to memory accessors
The current memory accessors logic is: - little endian if little_endian - native endian (i.e. no byteswap) if !little_endian
If we want to fully support cross-endian vhost, we also need to be able to convert to big endian.
Instead of changing the little_endian argument to some 3-value enum, this patch changes the logic to: - little endian if little_endian - big endian if !little_endian
The native endian case is handled by all users with a trivial helper. This patch doesn't change any functionality, nor it does add overhead.
Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
|
/openbmc/linux/drivers/net/ |
H A D | macvtap.c | diff 7d82410950aa74adccf035c332e409af2bb93e92 Fri Apr 24 07:26:24 CDT 2015 Greg Kurz <gkurz@linux.vnet.ibm.com> virtio: add explicit big-endian support to memory accessors
The current memory accessors logic is: - little endian if little_endian - native endian (i.e. no byteswap) if !little_endian
If we want to fully support cross-endian vhost, we also need to be able to convert to big endian.
Instead of changing the little_endian argument to some 3-value enum, this patch changes the logic to: - little endian if little_endian - big endian if !little_endian
The native endian case is handled by all users with a trivial helper. This patch doesn't change any functionality, nor it does add overhead.
Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
|
H A D | tun.c | diff 7d82410950aa74adccf035c332e409af2bb93e92 Fri Apr 24 07:26:24 CDT 2015 Greg Kurz <gkurz@linux.vnet.ibm.com> virtio: add explicit big-endian support to memory accessors
The current memory accessors logic is: - little endian if little_endian - native endian (i.e. no byteswap) if !little_endian
If we want to fully support cross-endian vhost, we also need to be able to convert to big endian.
Instead of changing the little_endian argument to some 3-value enum, this patch changes the logic to: - little endian if little_endian - big endian if !little_endian
The native endian case is handled by all users with a trivial helper. This patch doesn't change any functionality, nor it does add overhead.
Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
|