Release 4.12 include/linux/virtio_byteorder.h
#ifndef _LINUX_VIRTIO_BYTEORDER_H
#define _LINUX_VIRTIO_BYTEORDER_H
#include <linux/types.h>
#include <uapi/linux/virtio_types.h>
static inline bool virtio_legacy_is_little_endian(void)
{
#ifdef __LITTLE_ENDIAN
return true;
#else
return false;
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Greg Kurz | 22 | 100.00% | 1 | 100.00% |
Total | 22 | 100.00% | 1 | 100.00% |
static inline u16 __virtio16_to_cpu(bool little_endian, __virtio16 val)
{
if (little_endian)
return le16_to_cpu((__force __le16)val);
else
return be16_to_cpu((__force __be16)val);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael S. Tsirkin | 34 | 89.47% | 1 | 50.00% |
Greg Kurz | 4 | 10.53% | 1 | 50.00% |
Total | 38 | 100.00% | 2 | 100.00% |
static inline __virtio16 __cpu_to_virtio16(bool little_endian, u16 val)
{
if (little_endian)
return (__force __virtio16)cpu_to_le16(val);
else
return (__force __virtio16)cpu_to_be16(val);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael S. Tsirkin | 35 | 92.11% | 1 | 50.00% |
Greg Kurz | 3 | 7.89% | 1 | 50.00% |
Total | 38 | 100.00% | 2 | 100.00% |
static inline u32 __virtio32_to_cpu(bool little_endian, __virtio32 val)
{
if (little_endian)
return le32_to_cpu((__force __le32)val);
else
return be32_to_cpu((__force __be32)val);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael S. Tsirkin | 34 | 89.47% | 1 | 50.00% |
Greg Kurz | 4 | 10.53% | 1 | 50.00% |
Total | 38 | 100.00% | 2 | 100.00% |
static inline __virtio32 __cpu_to_virtio32(bool little_endian, u32 val)
{
if (little_endian)
return (__force __virtio32)cpu_to_le32(val);
else
return (__force __virtio32)cpu_to_be32(val);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael S. Tsirkin | 35 | 92.11% | 1 | 50.00% |
Greg Kurz | 3 | 7.89% | 1 | 50.00% |
Total | 38 | 100.00% | 2 | 100.00% |
static inline u64 __virtio64_to_cpu(bool little_endian, __virtio64 val)
{
if (little_endian)
return le64_to_cpu((__force __le64)val);
else
return be64_to_cpu((__force __be64)val);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael S. Tsirkin | 34 | 89.47% | 1 | 50.00% |
Greg Kurz | 4 | 10.53% | 1 | 50.00% |
Total | 38 | 100.00% | 2 | 100.00% |
static inline __virtio64 __cpu_to_virtio64(bool little_endian, u64 val)
{
if (little_endian)
return (__force __virtio64)cpu_to_le64(val);
else
return (__force __virtio64)cpu_to_be64(val);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael S. Tsirkin | 35 | 92.11% | 1 | 50.00% |
Greg Kurz | 3 | 7.89% | 1 | 50.00% |
Total | 38 | 100.00% | 2 | 100.00% |
#endif /* _LINUX_VIRTIO_BYTEORDER */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Michael S. Tsirkin | 222 | 83.77% | 1 | 50.00% |
Greg Kurz | 43 | 16.23% | 1 | 50.00% |
Total | 265 | 100.00% | 2 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.