intel-iommu: fail MAP notifier without caching mode
[qemu/ar7.git] / ui / udmabuf.c
blob6a0a11a85defb6c6e65c0f11e5f8f44269c30ff3
1 /*
2 * udmabuf helper functions.
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7 #include "qemu/osdep.h"
8 #include "qapi/error.h"
9 #include "ui/console.h"
10 #include "qemu/error-report.h"
12 #include <sys/ioctl.h>
14 int udmabuf_fd(void)
16 static bool first = true;
17 static int udmabuf;
19 if (!first) {
20 return udmabuf;
22 first = false;
24 udmabuf = open("/dev/udmabuf", O_RDWR);
25 if (udmabuf < 0) {
26 warn_report("open /dev/udmabuf: %s", strerror(errno));
28 return udmabuf;