Displaying 3 results from an estimated 3 matches for "32211aa".
Did you mean:
3221168
2014 Oct 21
2
[PATCH RFC] virtio 1.0 vring endian-ness
...false (0.9) so no
functional change for now.
Signed-off-by: Michael S. Tsirkin <mst at redhat.com>
---
Sending this early so I can get feedback on this style.
Rusty, what's your opinion? Reasonable?
diff --git a/include/linux/virtio_ring.h b/include/linux/virtio_ring.h
index 67e06fe..32211aa 100644
--- a/include/linux/virtio_ring.h
+++ b/include/linux/virtio_ring.h
@@ -62,6 +62,26 @@ static inline void virtio_wmb(bool weak_barriers)
}
#endif
+#define DEFINE_VIRTIO_XX_TO_CPU(bits) \
+static inline u##bits virtio##bits##_to_cpu(bool little_endian, __virtio##bits val) \
+{ \
+ if (lit...
2014 Oct 21
2
[PATCH RFC] virtio 1.0 vring endian-ness
...false (0.9) so no
functional change for now.
Signed-off-by: Michael S. Tsirkin <mst at redhat.com>
---
Sending this early so I can get feedback on this style.
Rusty, what's your opinion? Reasonable?
diff --git a/include/linux/virtio_ring.h b/include/linux/virtio_ring.h
index 67e06fe..32211aa 100644
--- a/include/linux/virtio_ring.h
+++ b/include/linux/virtio_ring.h
@@ -62,6 +62,26 @@ static inline void virtio_wmb(bool weak_barriers)
}
#endif
+#define DEFINE_VIRTIO_XX_TO_CPU(bits) \
+static inline u##bits virtio##bits##_to_cpu(bool little_endian, __virtio##bits val) \
+{ \
+ if (lit...
2014 Oct 22
0
[PATCH RFC] virtio 1.0 vring endian-ness
....
Hm...
http://marc.info/?l=linux-virtualization&m=141270444612625&w=2
(and other in that series. Forgot to cc: you on those patches...)
> Rusty, what's your opinion? Reasonable?
>
> diff --git a/include/linux/virtio_ring.h b/include/linux/virtio_ring.h
> index 67e06fe..32211aa 100644
> --- a/include/linux/virtio_ring.h
> +++ b/include/linux/virtio_ring.h
> @@ -62,6 +62,26 @@ static inline void virtio_wmb(bool weak_barriers)
> }
> #endif
>
> +#define DEFINE_VIRTIO_XX_TO_CPU(bits) \
> +static inline u##bits virtio##bits##_to_cpu(bool little_endia...