Prefer using the character device over the proc file if the character
device exists.
CC: Elena Ufimtseva <elena.ufimtseva@oracle.com>
CC: Ian Jackson <ian.jackson@eu.citrix.com>
CC: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
CC: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
Reviewed-by: Elena Ufimtseva <elena.ufimtseva@oracle.com>
Release-acked-by: Julien Grall <julien.grall@linaro.org>
int flags, saved_errno;
XGTRC("E\n");
- if ((_dom0_fd=open("/proc/xen/privcmd", O_RDWR)) == -1) {
- perror("Failed to open /proc/xen/privcmd\n");
- return -1;
+ if ((_dom0_fd=open("/dev/xen/privcmd", O_RDWR)) == -1) {
+ if ((_dom0_fd=open("/proc/xen/privcmd", O_RDWR)) == -1) {
+ perror("Failed to open /dev/xen/privcmd or /proc/xen/privcmd\n");
+ return -1;
+ }
}
/* Although we return the file handle as the 'xc handle' the API
* does not specify / guarentee that this integer is in fact