blob: 69e059cd14d685d636e908ccd05ae3c45ef0543c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <linux/bug.h>
#include <linux/string.h>
#include <linux/virtio_features.h>
#ifndef VIRTIO_FEATURES_BITS
#define VIRTIO_FEATURES_BITS 128
#endif
#ifndef VIRTIO_U64
#define VIRTIO_U64(b) ((b) >> 6)
#endif
|